Hall.fire 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401
  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": 210.9,
  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.2,
  632. 98,
  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": 1,
  791. "_sizeMode": 0,
  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. "Label": {
  1768. "__id__": 31
  1769. },
  1770. "_id": "e1JKLRbwxJbLaILsuVRTPC"
  1771. },
  1772. {
  1773. "__type__": "cc.PrefabInfo",
  1774. "root": {
  1775. "__id__": 26
  1776. },
  1777. "asset": {
  1778. "__uuid__": "3b5292cd-7ad7-4de8-adf9-12a19aff8517"
  1779. },
  1780. "fileId": "",
  1781. "sync": false
  1782. },
  1783. {
  1784. "__type__": "cc.Node",
  1785. "_name": "LeftBtn",
  1786. "_objFlags": 0,
  1787. "_parent": {
  1788. "__id__": 8
  1789. },
  1790. "_children": [
  1791. {
  1792. "__id__": 43
  1793. },
  1794. {
  1795. "__id__": 47
  1796. }
  1797. ],
  1798. "_active": true,
  1799. "_components": [
  1800. {
  1801. "__id__": 51
  1802. },
  1803. {
  1804. "__id__": 52
  1805. }
  1806. ],
  1807. "_prefab": null,
  1808. "_opacity": 255,
  1809. "_color": {
  1810. "__type__": "cc.Color",
  1811. "r": 255,
  1812. "g": 255,
  1813. "b": 255,
  1814. "a": 255
  1815. },
  1816. "_contentSize": {
  1817. "__type__": "cc.Size",
  1818. "width": 100,
  1819. "height": 100
  1820. },
  1821. "_anchorPoint": {
  1822. "__type__": "cc.Vec2",
  1823. "x": 0.5,
  1824. "y": 0.5
  1825. },
  1826. "_trs": {
  1827. "__type__": "TypedArray",
  1828. "ctor": "Float64Array",
  1829. "array": [
  1830. -302.54,
  1831. 404.322,
  1832. 0,
  1833. 0,
  1834. 0,
  1835. 0,
  1836. 1,
  1837. 1,
  1838. 1,
  1839. 1
  1840. ]
  1841. },
  1842. "_eulerAngles": {
  1843. "__type__": "cc.Vec3",
  1844. "x": 0,
  1845. "y": 0,
  1846. "z": 0
  1847. },
  1848. "_skewX": 0,
  1849. "_skewY": 0,
  1850. "_is3DNode": false,
  1851. "_groupIndex": 0,
  1852. "groupIndex": 0,
  1853. "_id": "97rrIZjJ5H4aSpsdR4lkyx"
  1854. },
  1855. {
  1856. "__type__": "cc.Node",
  1857. "_name": "setup",
  1858. "_objFlags": 0,
  1859. "_parent": {
  1860. "__id__": 42
  1861. },
  1862. "_children": [],
  1863. "_active": true,
  1864. "_components": [
  1865. {
  1866. "__id__": 44
  1867. },
  1868. {
  1869. "__id__": 45
  1870. }
  1871. ],
  1872. "_prefab": null,
  1873. "_opacity": 255,
  1874. "_color": {
  1875. "__type__": "cc.Color",
  1876. "r": 255,
  1877. "g": 255,
  1878. "b": 255,
  1879. "a": 255
  1880. },
  1881. "_contentSize": {
  1882. "__type__": "cc.Size",
  1883. "width": 84,
  1884. "height": 100
  1885. },
  1886. "_anchorPoint": {
  1887. "__type__": "cc.Vec2",
  1888. "x": 0.5,
  1889. "y": 0.5
  1890. },
  1891. "_trs": {
  1892. "__type__": "TypedArray",
  1893. "ctor": "Float64Array",
  1894. "array": [
  1895. 0,
  1896. 0,
  1897. 0,
  1898. 0,
  1899. 0,
  1900. 0,
  1901. 1,
  1902. 1,
  1903. 1,
  1904. 0
  1905. ]
  1906. },
  1907. "_eulerAngles": {
  1908. "__type__": "cc.Vec3",
  1909. "x": 0,
  1910. "y": 0,
  1911. "z": 0
  1912. },
  1913. "_skewX": 0,
  1914. "_skewY": 0,
  1915. "_is3DNode": false,
  1916. "_groupIndex": 0,
  1917. "groupIndex": 0,
  1918. "_id": "d9/5rUXRhD/b9A1z94bH+z"
  1919. },
  1920. {
  1921. "__type__": "cc.Sprite",
  1922. "_name": "",
  1923. "_objFlags": 0,
  1924. "node": {
  1925. "__id__": 43
  1926. },
  1927. "_enabled": true,
  1928. "_materials": [
  1929. {
  1930. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1931. }
  1932. ],
  1933. "_srcBlendFactor": 770,
  1934. "_dstBlendFactor": 771,
  1935. "_spriteFrame": {
  1936. "__uuid__": "ba92d9ad-0ced-435e-a558-3117ad4e4736"
  1937. },
  1938. "_type": 0,
  1939. "_sizeMode": 1,
  1940. "_fillType": 0,
  1941. "_fillCenter": {
  1942. "__type__": "cc.Vec2",
  1943. "x": 0,
  1944. "y": 0
  1945. },
  1946. "_fillStart": 0,
  1947. "_fillRange": 0,
  1948. "_isTrimmedMode": true,
  1949. "_atlas": null,
  1950. "_id": "54823aF5xDIZSi3vTzwl5Q"
  1951. },
  1952. {
  1953. "__type__": "cc.Button",
  1954. "_name": "",
  1955. "_objFlags": 0,
  1956. "node": {
  1957. "__id__": 43
  1958. },
  1959. "_enabled": true,
  1960. "_normalMaterial": null,
  1961. "_grayMaterial": null,
  1962. "duration": 0.1,
  1963. "zoomScale": 1.05,
  1964. "clickEvents": [
  1965. {
  1966. "__id__": 46
  1967. }
  1968. ],
  1969. "_N$interactable": true,
  1970. "_N$enableAutoGrayEffect": false,
  1971. "_N$transition": 3,
  1972. "transition": 3,
  1973. "_N$normalColor": {
  1974. "__type__": "cc.Color",
  1975. "r": 255,
  1976. "g": 255,
  1977. "b": 255,
  1978. "a": 255
  1979. },
  1980. "_N$pressedColor": {
  1981. "__type__": "cc.Color",
  1982. "r": 211,
  1983. "g": 211,
  1984. "b": 211,
  1985. "a": 255
  1986. },
  1987. "pressedColor": {
  1988. "__type__": "cc.Color",
  1989. "r": 211,
  1990. "g": 211,
  1991. "b": 211,
  1992. "a": 255
  1993. },
  1994. "_N$hoverColor": {
  1995. "__type__": "cc.Color",
  1996. "r": 255,
  1997. "g": 255,
  1998. "b": 255,
  1999. "a": 255
  2000. },
  2001. "hoverColor": {
  2002. "__type__": "cc.Color",
  2003. "r": 255,
  2004. "g": 255,
  2005. "b": 255,
  2006. "a": 255
  2007. },
  2008. "_N$disabledColor": {
  2009. "__type__": "cc.Color",
  2010. "r": 124,
  2011. "g": 124,
  2012. "b": 124,
  2013. "a": 255
  2014. },
  2015. "_N$normalSprite": null,
  2016. "_N$pressedSprite": null,
  2017. "pressedSprite": null,
  2018. "_N$hoverSprite": null,
  2019. "hoverSprite": null,
  2020. "_N$disabledSprite": null,
  2021. "_N$target": null,
  2022. "_id": "4fRXXboXpOwLiB/pgfD3nR"
  2023. },
  2024. {
  2025. "__type__": "cc.ClickEvent",
  2026. "target": {
  2027. "__id__": 2
  2028. },
  2029. "component": "",
  2030. "_componentId": "e1b90/rohdEk4SdmmEZANaD",
  2031. "handler": "ClickSet",
  2032. "customEventData": ""
  2033. },
  2034. {
  2035. "__type__": "cc.Node",
  2036. "_name": "welfare",
  2037. "_objFlags": 0,
  2038. "_parent": {
  2039. "__id__": 42
  2040. },
  2041. "_children": [],
  2042. "_active": false,
  2043. "_components": [
  2044. {
  2045. "__id__": 48
  2046. },
  2047. {
  2048. "__id__": 49
  2049. }
  2050. ],
  2051. "_prefab": null,
  2052. "_opacity": 255,
  2053. "_color": {
  2054. "__type__": "cc.Color",
  2055. "r": 255,
  2056. "g": 255,
  2057. "b": 255,
  2058. "a": 255
  2059. },
  2060. "_contentSize": {
  2061. "__type__": "cc.Size",
  2062. "width": 105,
  2063. "height": 98
  2064. },
  2065. "_anchorPoint": {
  2066. "__type__": "cc.Vec2",
  2067. "x": 0.5,
  2068. "y": 0.5
  2069. },
  2070. "_trs": {
  2071. "__type__": "TypedArray",
  2072. "ctor": "Float64Array",
  2073. "array": [
  2074. 0,
  2075. -55,
  2076. 0,
  2077. 0,
  2078. 0,
  2079. 0,
  2080. 1,
  2081. 1,
  2082. 1,
  2083. 0
  2084. ]
  2085. },
  2086. "_eulerAngles": {
  2087. "__type__": "cc.Vec3",
  2088. "x": 0,
  2089. "y": 0,
  2090. "z": 0
  2091. },
  2092. "_skewX": 0,
  2093. "_skewY": 0,
  2094. "_is3DNode": false,
  2095. "_groupIndex": 0,
  2096. "groupIndex": 0,
  2097. "_id": "252laZDkZKwavJg5TSc5q/"
  2098. },
  2099. {
  2100. "__type__": "cc.Sprite",
  2101. "_name": "",
  2102. "_objFlags": 0,
  2103. "node": {
  2104. "__id__": 47
  2105. },
  2106. "_enabled": true,
  2107. "_materials": [
  2108. {
  2109. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2110. }
  2111. ],
  2112. "_srcBlendFactor": 770,
  2113. "_dstBlendFactor": 771,
  2114. "_spriteFrame": {
  2115. "__uuid__": "e13521c4-d475-4bb9-8fbb-8af2c801c371"
  2116. },
  2117. "_type": 0,
  2118. "_sizeMode": 1,
  2119. "_fillType": 0,
  2120. "_fillCenter": {
  2121. "__type__": "cc.Vec2",
  2122. "x": 0,
  2123. "y": 0
  2124. },
  2125. "_fillStart": 0,
  2126. "_fillRange": 0,
  2127. "_isTrimmedMode": true,
  2128. "_atlas": null,
  2129. "_id": "f5ByvhxDlMhpsPBwyLkY86"
  2130. },
  2131. {
  2132. "__type__": "cc.Button",
  2133. "_name": "",
  2134. "_objFlags": 0,
  2135. "node": {
  2136. "__id__": 47
  2137. },
  2138. "_enabled": true,
  2139. "_normalMaterial": null,
  2140. "_grayMaterial": null,
  2141. "duration": 0.1,
  2142. "zoomScale": 1.05,
  2143. "clickEvents": [
  2144. {
  2145. "__id__": 50
  2146. }
  2147. ],
  2148. "_N$interactable": true,
  2149. "_N$enableAutoGrayEffect": false,
  2150. "_N$transition": 3,
  2151. "transition": 3,
  2152. "_N$normalColor": {
  2153. "__type__": "cc.Color",
  2154. "r": 255,
  2155. "g": 255,
  2156. "b": 255,
  2157. "a": 255
  2158. },
  2159. "_N$pressedColor": {
  2160. "__type__": "cc.Color",
  2161. "r": 211,
  2162. "g": 211,
  2163. "b": 211,
  2164. "a": 255
  2165. },
  2166. "pressedColor": {
  2167. "__type__": "cc.Color",
  2168. "r": 211,
  2169. "g": 211,
  2170. "b": 211,
  2171. "a": 255
  2172. },
  2173. "_N$hoverColor": {
  2174. "__type__": "cc.Color",
  2175. "r": 255,
  2176. "g": 255,
  2177. "b": 255,
  2178. "a": 255
  2179. },
  2180. "hoverColor": {
  2181. "__type__": "cc.Color",
  2182. "r": 255,
  2183. "g": 255,
  2184. "b": 255,
  2185. "a": 255
  2186. },
  2187. "_N$disabledColor": {
  2188. "__type__": "cc.Color",
  2189. "r": 124,
  2190. "g": 124,
  2191. "b": 124,
  2192. "a": 255
  2193. },
  2194. "_N$normalSprite": null,
  2195. "_N$pressedSprite": null,
  2196. "pressedSprite": null,
  2197. "_N$hoverSprite": null,
  2198. "hoverSprite": null,
  2199. "_N$disabledSprite": null,
  2200. "_N$target": null,
  2201. "_id": "03dbzICrtGb7zHCG90L5Q8"
  2202. },
  2203. {
  2204. "__type__": "cc.ClickEvent",
  2205. "target": {
  2206. "__id__": 2
  2207. },
  2208. "component": "",
  2209. "_componentId": "e1b90/rohdEk4SdmmEZANaD",
  2210. "handler": "ClickFuLi",
  2211. "customEventData": ""
  2212. },
  2213. {
  2214. "__type__": "cc.Layout",
  2215. "_name": "",
  2216. "_objFlags": 0,
  2217. "node": {
  2218. "__id__": 42
  2219. },
  2220. "_enabled": true,
  2221. "_layoutSize": {
  2222. "__type__": "cc.Size",
  2223. "width": 100,
  2224. "height": 100
  2225. },
  2226. "_resize": 1,
  2227. "_N$layoutType": 2,
  2228. "_N$cellSize": {
  2229. "__type__": "cc.Size",
  2230. "width": 40,
  2231. "height": 40
  2232. },
  2233. "_N$startAxis": 0,
  2234. "_N$paddingLeft": 0,
  2235. "_N$paddingRight": 0,
  2236. "_N$paddingTop": 0,
  2237. "_N$paddingBottom": 0,
  2238. "_N$spacingX": 0,
  2239. "_N$spacingY": 10,
  2240. "_N$verticalDirection": 1,
  2241. "_N$horizontalDirection": 0,
  2242. "_N$affectedByScale": false,
  2243. "_id": "b4W2GR6l1DColbBi4ubTEf"
  2244. },
  2245. {
  2246. "__type__": "cc.Widget",
  2247. "_name": "",
  2248. "_objFlags": 0,
  2249. "node": {
  2250. "__id__": 42
  2251. },
  2252. "_enabled": true,
  2253. "alignMode": 1,
  2254. "_target": null,
  2255. "_alignFlags": 9,
  2256. "_left": 22.45999999999998,
  2257. "_right": 0,
  2258. "_top": 212.678,
  2259. "_bottom": 0,
  2260. "_verticalCenter": 0,
  2261. "_horizontalCenter": 0,
  2262. "_isAbsLeft": true,
  2263. "_isAbsRight": true,
  2264. "_isAbsTop": true,
  2265. "_isAbsBottom": true,
  2266. "_isAbsHorizontalCenter": true,
  2267. "_isAbsVerticalCenter": true,
  2268. "_originalWidth": 0,
  2269. "_originalHeight": 0,
  2270. "_id": "16p4Wl0PVCP4N+Mx+8W44V"
  2271. },
  2272. {
  2273. "__type__": "cc.Node",
  2274. "_name": "RightBtn",
  2275. "_objFlags": 0,
  2276. "_parent": {
  2277. "__id__": 8
  2278. },
  2279. "_children": [
  2280. {
  2281. "__id__": 54
  2282. },
  2283. {
  2284. "__id__": 58
  2285. },
  2286. {
  2287. "__id__": 62
  2288. }
  2289. ],
  2290. "_active": true,
  2291. "_components": [
  2292. {
  2293. "__id__": 66
  2294. },
  2295. {
  2296. "__id__": 67
  2297. }
  2298. ],
  2299. "_prefab": null,
  2300. "_opacity": 255,
  2301. "_color": {
  2302. "__type__": "cc.Color",
  2303. "r": 255,
  2304. "g": 255,
  2305. "b": 255,
  2306. "a": 255
  2307. },
  2308. "_contentSize": {
  2309. "__type__": "cc.Size",
  2310. "width": 100,
  2311. "height": 96
  2312. },
  2313. "_anchorPoint": {
  2314. "__type__": "cc.Vec2",
  2315. "x": 0.5,
  2316. "y": 0.5
  2317. },
  2318. "_trs": {
  2319. "__type__": "TypedArray",
  2320. "ctor": "Float64Array",
  2321. "array": [
  2322. 294.374,
  2323. 438.202,
  2324. 0,
  2325. 0,
  2326. 0,
  2327. 0,
  2328. 1,
  2329. 1,
  2330. 1,
  2331. 1
  2332. ]
  2333. },
  2334. "_eulerAngles": {
  2335. "__type__": "cc.Vec3",
  2336. "x": 0,
  2337. "y": 0,
  2338. "z": 0
  2339. },
  2340. "_skewX": 0,
  2341. "_skewY": 0,
  2342. "_is3DNode": false,
  2343. "_groupIndex": 0,
  2344. "groupIndex": 0,
  2345. "_id": "83lGjhdXhIg7/FwFV2koEh"
  2346. },
  2347. {
  2348. "__type__": "cc.Node",
  2349. "_name": "reward",
  2350. "_objFlags": 0,
  2351. "_parent": {
  2352. "__id__": 53
  2353. },
  2354. "_children": [],
  2355. "_active": false,
  2356. "_components": [
  2357. {
  2358. "__id__": 55
  2359. },
  2360. {
  2361. "__id__": 56
  2362. }
  2363. ],
  2364. "_prefab": null,
  2365. "_opacity": 255,
  2366. "_color": {
  2367. "__type__": "cc.Color",
  2368. "r": 255,
  2369. "g": 255,
  2370. "b": 255,
  2371. "a": 255
  2372. },
  2373. "_contentSize": {
  2374. "__type__": "cc.Size",
  2375. "width": 105,
  2376. "height": 102
  2377. },
  2378. "_anchorPoint": {
  2379. "__type__": "cc.Vec2",
  2380. "x": 0.5,
  2381. "y": 0.5
  2382. },
  2383. "_trs": {
  2384. "__type__": "TypedArray",
  2385. "ctor": "Float64Array",
  2386. "array": [
  2387. 0,
  2388. 103,
  2389. 0,
  2390. 0,
  2391. 0,
  2392. 0,
  2393. 1,
  2394. 1,
  2395. 1,
  2396. 0
  2397. ]
  2398. },
  2399. "_eulerAngles": {
  2400. "__type__": "cc.Vec3",
  2401. "x": 0,
  2402. "y": 0,
  2403. "z": 0
  2404. },
  2405. "_skewX": 0,
  2406. "_skewY": 0,
  2407. "_is3DNode": false,
  2408. "_groupIndex": 0,
  2409. "groupIndex": 0,
  2410. "_id": "77TwpHc4xMPqTeu7RbkSaQ"
  2411. },
  2412. {
  2413. "__type__": "cc.Sprite",
  2414. "_name": "",
  2415. "_objFlags": 0,
  2416. "node": {
  2417. "__id__": 54
  2418. },
  2419. "_enabled": true,
  2420. "_materials": [
  2421. {
  2422. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2423. }
  2424. ],
  2425. "_srcBlendFactor": 770,
  2426. "_dstBlendFactor": 771,
  2427. "_spriteFrame": {
  2428. "__uuid__": "a5fdaa6c-2046-41b0-8cda-f4529dd1a6e4"
  2429. },
  2430. "_type": 0,
  2431. "_sizeMode": 1,
  2432. "_fillType": 0,
  2433. "_fillCenter": {
  2434. "__type__": "cc.Vec2",
  2435. "x": 0,
  2436. "y": 0
  2437. },
  2438. "_fillStart": 0,
  2439. "_fillRange": 0,
  2440. "_isTrimmedMode": true,
  2441. "_atlas": null,
  2442. "_id": "c8Lg8ve6NOS41KGDUwQwUU"
  2443. },
  2444. {
  2445. "__type__": "cc.Button",
  2446. "_name": "",
  2447. "_objFlags": 0,
  2448. "node": {
  2449. "__id__": 54
  2450. },
  2451. "_enabled": true,
  2452. "_normalMaterial": null,
  2453. "_grayMaterial": null,
  2454. "duration": 0.1,
  2455. "zoomScale": 1.05,
  2456. "clickEvents": [
  2457. {
  2458. "__id__": 57
  2459. }
  2460. ],
  2461. "_N$interactable": true,
  2462. "_N$enableAutoGrayEffect": false,
  2463. "_N$transition": 3,
  2464. "transition": 3,
  2465. "_N$normalColor": {
  2466. "__type__": "cc.Color",
  2467. "r": 255,
  2468. "g": 255,
  2469. "b": 255,
  2470. "a": 255
  2471. },
  2472. "_N$pressedColor": {
  2473. "__type__": "cc.Color",
  2474. "r": 211,
  2475. "g": 211,
  2476. "b": 211,
  2477. "a": 255
  2478. },
  2479. "pressedColor": {
  2480. "__type__": "cc.Color",
  2481. "r": 211,
  2482. "g": 211,
  2483. "b": 211,
  2484. "a": 255
  2485. },
  2486. "_N$hoverColor": {
  2487. "__type__": "cc.Color",
  2488. "r": 255,
  2489. "g": 255,
  2490. "b": 255,
  2491. "a": 255
  2492. },
  2493. "hoverColor": {
  2494. "__type__": "cc.Color",
  2495. "r": 255,
  2496. "g": 255,
  2497. "b": 255,
  2498. "a": 255
  2499. },
  2500. "_N$disabledColor": {
  2501. "__type__": "cc.Color",
  2502. "r": 124,
  2503. "g": 124,
  2504. "b": 124,
  2505. "a": 255
  2506. },
  2507. "_N$normalSprite": null,
  2508. "_N$pressedSprite": null,
  2509. "pressedSprite": null,
  2510. "_N$hoverSprite": null,
  2511. "hoverSprite": null,
  2512. "_N$disabledSprite": null,
  2513. "_N$target": null,
  2514. "_id": "b0xDgMbXFF/KGz4uIfpQ/g"
  2515. },
  2516. {
  2517. "__type__": "cc.ClickEvent",
  2518. "target": {
  2519. "__id__": 2
  2520. },
  2521. "component": "",
  2522. "_componentId": "e1b90/rohdEk4SdmmEZANaD",
  2523. "handler": "ClickMeiRiJiangLi",
  2524. "customEventData": ""
  2525. },
  2526. {
  2527. "__type__": "cc.Node",
  2528. "_name": "ranking",
  2529. "_objFlags": 0,
  2530. "_parent": {
  2531. "__id__": 53
  2532. },
  2533. "_children": [],
  2534. "_active": false,
  2535. "_components": [
  2536. {
  2537. "__id__": 59
  2538. },
  2539. {
  2540. "__id__": 60
  2541. }
  2542. ],
  2543. "_prefab": null,
  2544. "_opacity": 255,
  2545. "_color": {
  2546. "__type__": "cc.Color",
  2547. "r": 255,
  2548. "g": 255,
  2549. "b": 255,
  2550. "a": 255
  2551. },
  2552. "_contentSize": {
  2553. "__type__": "cc.Size",
  2554. "width": 89,
  2555. "height": 90
  2556. },
  2557. "_anchorPoint": {
  2558. "__type__": "cc.Vec2",
  2559. "x": 0.5,
  2560. "y": 0.5
  2561. },
  2562. "_trs": {
  2563. "__type__": "TypedArray",
  2564. "ctor": "Float64Array",
  2565. "array": [
  2566. 0,
  2567. 53,
  2568. 0,
  2569. 0,
  2570. 0,
  2571. 0,
  2572. 1,
  2573. 1,
  2574. 1,
  2575. 0
  2576. ]
  2577. },
  2578. "_eulerAngles": {
  2579. "__type__": "cc.Vec3",
  2580. "x": 0,
  2581. "y": 0,
  2582. "z": 0
  2583. },
  2584. "_skewX": 0,
  2585. "_skewY": 0,
  2586. "_is3DNode": false,
  2587. "_groupIndex": 0,
  2588. "groupIndex": 0,
  2589. "_id": "8685gpMqJA2aOCPZYnOBZa"
  2590. },
  2591. {
  2592. "__type__": "cc.Sprite",
  2593. "_name": "",
  2594. "_objFlags": 0,
  2595. "node": {
  2596. "__id__": 58
  2597. },
  2598. "_enabled": true,
  2599. "_materials": [
  2600. {
  2601. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2602. }
  2603. ],
  2604. "_srcBlendFactor": 770,
  2605. "_dstBlendFactor": 771,
  2606. "_spriteFrame": {
  2607. "__uuid__": "3f34a015-c2da-4015-b80f-0ddf5a780900"
  2608. },
  2609. "_type": 0,
  2610. "_sizeMode": 1,
  2611. "_fillType": 0,
  2612. "_fillCenter": {
  2613. "__type__": "cc.Vec2",
  2614. "x": 0,
  2615. "y": 0
  2616. },
  2617. "_fillStart": 0,
  2618. "_fillRange": 0,
  2619. "_isTrimmedMode": true,
  2620. "_atlas": null,
  2621. "_id": "94PHeBHMdME4khZ9e7dQGC"
  2622. },
  2623. {
  2624. "__type__": "cc.Button",
  2625. "_name": "",
  2626. "_objFlags": 0,
  2627. "node": {
  2628. "__id__": 58
  2629. },
  2630. "_enabled": true,
  2631. "_normalMaterial": null,
  2632. "_grayMaterial": null,
  2633. "duration": 0.1,
  2634. "zoomScale": 1.05,
  2635. "clickEvents": [
  2636. {
  2637. "__id__": 61
  2638. }
  2639. ],
  2640. "_N$interactable": true,
  2641. "_N$enableAutoGrayEffect": false,
  2642. "_N$transition": 3,
  2643. "transition": 3,
  2644. "_N$normalColor": {
  2645. "__type__": "cc.Color",
  2646. "r": 255,
  2647. "g": 255,
  2648. "b": 255,
  2649. "a": 255
  2650. },
  2651. "_N$pressedColor": {
  2652. "__type__": "cc.Color",
  2653. "r": 211,
  2654. "g": 211,
  2655. "b": 211,
  2656. "a": 255
  2657. },
  2658. "pressedColor": {
  2659. "__type__": "cc.Color",
  2660. "r": 211,
  2661. "g": 211,
  2662. "b": 211,
  2663. "a": 255
  2664. },
  2665. "_N$hoverColor": {
  2666. "__type__": "cc.Color",
  2667. "r": 255,
  2668. "g": 255,
  2669. "b": 255,
  2670. "a": 255
  2671. },
  2672. "hoverColor": {
  2673. "__type__": "cc.Color",
  2674. "r": 255,
  2675. "g": 255,
  2676. "b": 255,
  2677. "a": 255
  2678. },
  2679. "_N$disabledColor": {
  2680. "__type__": "cc.Color",
  2681. "r": 124,
  2682. "g": 124,
  2683. "b": 124,
  2684. "a": 255
  2685. },
  2686. "_N$normalSprite": null,
  2687. "_N$pressedSprite": null,
  2688. "pressedSprite": null,
  2689. "_N$hoverSprite": null,
  2690. "hoverSprite": null,
  2691. "_N$disabledSprite": null,
  2692. "_N$target": null,
  2693. "_id": "e5pRX+rERPGavHYayeGURE"
  2694. },
  2695. {
  2696. "__type__": "cc.ClickEvent",
  2697. "target": {
  2698. "__id__": 2
  2699. },
  2700. "component": "",
  2701. "_componentId": "e1b90/rohdEk4SdmmEZANaD",
  2702. "handler": "ClickRank",
  2703. "customEventData": ""
  2704. },
  2705. {
  2706. "__type__": "cc.Node",
  2707. "_name": "shop",
  2708. "_objFlags": 0,
  2709. "_parent": {
  2710. "__id__": 53
  2711. },
  2712. "_children": [],
  2713. "_active": true,
  2714. "_components": [
  2715. {
  2716. "__id__": 63
  2717. },
  2718. {
  2719. "__id__": 64
  2720. }
  2721. ],
  2722. "_prefab": null,
  2723. "_opacity": 255,
  2724. "_color": {
  2725. "__type__": "cc.Color",
  2726. "r": 255,
  2727. "g": 255,
  2728. "b": 255,
  2729. "a": 255
  2730. },
  2731. "_contentSize": {
  2732. "__type__": "cc.Size",
  2733. "width": 86,
  2734. "height": 96
  2735. },
  2736. "_anchorPoint": {
  2737. "__type__": "cc.Vec2",
  2738. "x": 0.5,
  2739. "y": 0.5
  2740. },
  2741. "_trs": {
  2742. "__type__": "TypedArray",
  2743. "ctor": "Float64Array",
  2744. "array": [
  2745. 0,
  2746. 0,
  2747. 0,
  2748. 0,
  2749. 0,
  2750. 0,
  2751. 1,
  2752. 1,
  2753. 1,
  2754. 0
  2755. ]
  2756. },
  2757. "_eulerAngles": {
  2758. "__type__": "cc.Vec3",
  2759. "x": 0,
  2760. "y": 0,
  2761. "z": 0
  2762. },
  2763. "_skewX": 0,
  2764. "_skewY": 0,
  2765. "_is3DNode": false,
  2766. "_groupIndex": 0,
  2767. "groupIndex": 0,
  2768. "_id": "ddIk2f/SJKXrh+e8gogpfs"
  2769. },
  2770. {
  2771. "__type__": "cc.Sprite",
  2772. "_name": "",
  2773. "_objFlags": 0,
  2774. "node": {
  2775. "__id__": 62
  2776. },
  2777. "_enabled": true,
  2778. "_materials": [
  2779. {
  2780. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2781. }
  2782. ],
  2783. "_srcBlendFactor": 770,
  2784. "_dstBlendFactor": 771,
  2785. "_spriteFrame": {
  2786. "__uuid__": "196e1071-8624-4fc5-b7f8-c3135e672749"
  2787. },
  2788. "_type": 0,
  2789. "_sizeMode": 1,
  2790. "_fillType": 0,
  2791. "_fillCenter": {
  2792. "__type__": "cc.Vec2",
  2793. "x": 0,
  2794. "y": 0
  2795. },
  2796. "_fillStart": 0,
  2797. "_fillRange": 0,
  2798. "_isTrimmedMode": true,
  2799. "_atlas": null,
  2800. "_id": "0a44u+3ntGn4Mx6hKrjkA6"
  2801. },
  2802. {
  2803. "__type__": "cc.Button",
  2804. "_name": "",
  2805. "_objFlags": 0,
  2806. "node": {
  2807. "__id__": 62
  2808. },
  2809. "_enabled": true,
  2810. "_normalMaterial": null,
  2811. "_grayMaterial": null,
  2812. "duration": 0.1,
  2813. "zoomScale": 1.05,
  2814. "clickEvents": [
  2815. {
  2816. "__id__": 65
  2817. }
  2818. ],
  2819. "_N$interactable": true,
  2820. "_N$enableAutoGrayEffect": false,
  2821. "_N$transition": 3,
  2822. "transition": 3,
  2823. "_N$normalColor": {
  2824. "__type__": "cc.Color",
  2825. "r": 255,
  2826. "g": 255,
  2827. "b": 255,
  2828. "a": 255
  2829. },
  2830. "_N$pressedColor": {
  2831. "__type__": "cc.Color",
  2832. "r": 211,
  2833. "g": 211,
  2834. "b": 211,
  2835. "a": 255
  2836. },
  2837. "pressedColor": {
  2838. "__type__": "cc.Color",
  2839. "r": 211,
  2840. "g": 211,
  2841. "b": 211,
  2842. "a": 255
  2843. },
  2844. "_N$hoverColor": {
  2845. "__type__": "cc.Color",
  2846. "r": 255,
  2847. "g": 255,
  2848. "b": 255,
  2849. "a": 255
  2850. },
  2851. "hoverColor": {
  2852. "__type__": "cc.Color",
  2853. "r": 255,
  2854. "g": 255,
  2855. "b": 255,
  2856. "a": 255
  2857. },
  2858. "_N$disabledColor": {
  2859. "__type__": "cc.Color",
  2860. "r": 124,
  2861. "g": 124,
  2862. "b": 124,
  2863. "a": 255
  2864. },
  2865. "_N$normalSprite": null,
  2866. "_N$pressedSprite": null,
  2867. "pressedSprite": null,
  2868. "_N$hoverSprite": null,
  2869. "hoverSprite": null,
  2870. "_N$disabledSprite": null,
  2871. "_N$target": null,
  2872. "_id": "d0M02SY1NMALvhXkcVGCDN"
  2873. },
  2874. {
  2875. "__type__": "cc.ClickEvent",
  2876. "target": {
  2877. "__id__": 2
  2878. },
  2879. "component": "",
  2880. "_componentId": "e1b90/rohdEk4SdmmEZANaD",
  2881. "handler": "ClickShop",
  2882. "customEventData": ""
  2883. },
  2884. {
  2885. "__type__": "cc.Widget",
  2886. "_name": "",
  2887. "_objFlags": 0,
  2888. "node": {
  2889. "__id__": 53
  2890. },
  2891. "_enabled": true,
  2892. "alignMode": 1,
  2893. "_target": null,
  2894. "_alignFlags": 33,
  2895. "_left": 0,
  2896. "_right": 30.625999999999976,
  2897. "_top": 180.798,
  2898. "_bottom": 0,
  2899. "_verticalCenter": 0,
  2900. "_horizontalCenter": 0,
  2901. "_isAbsLeft": true,
  2902. "_isAbsRight": true,
  2903. "_isAbsTop": true,
  2904. "_isAbsBottom": true,
  2905. "_isAbsHorizontalCenter": true,
  2906. "_isAbsVerticalCenter": true,
  2907. "_originalWidth": 0,
  2908. "_originalHeight": 0,
  2909. "_id": "31FYS+v8RPAIVhIyDDpstv"
  2910. },
  2911. {
  2912. "__type__": "cc.Layout",
  2913. "_name": "",
  2914. "_objFlags": 0,
  2915. "node": {
  2916. "__id__": 53
  2917. },
  2918. "_enabled": true,
  2919. "_layoutSize": {
  2920. "__type__": "cc.Size",
  2921. "width": 100,
  2922. "height": 96
  2923. },
  2924. "_resize": 1,
  2925. "_N$layoutType": 2,
  2926. "_N$cellSize": {
  2927. "__type__": "cc.Size",
  2928. "width": 40,
  2929. "height": 40
  2930. },
  2931. "_N$startAxis": 0,
  2932. "_N$paddingLeft": 0,
  2933. "_N$paddingRight": 0,
  2934. "_N$paddingTop": 0,
  2935. "_N$paddingBottom": 0,
  2936. "_N$spacingX": 0,
  2937. "_N$spacingY": 10,
  2938. "_N$verticalDirection": 1,
  2939. "_N$horizontalDirection": 0,
  2940. "_N$affectedByScale": false,
  2941. "_id": "07XYxbKl9BqLw1lbmVdk0M"
  2942. },
  2943. {
  2944. "__type__": "cc.Node",
  2945. "_name": "Progress",
  2946. "_objFlags": 0,
  2947. "_parent": {
  2948. "__id__": 8
  2949. },
  2950. "_children": [
  2951. {
  2952. "__id__": 69
  2953. },
  2954. {
  2955. "__id__": 73
  2956. },
  2957. {
  2958. "__id__": 77
  2959. }
  2960. ],
  2961. "_active": false,
  2962. "_components": [
  2963. {
  2964. "__id__": 81
  2965. }
  2966. ],
  2967. "_prefab": null,
  2968. "_opacity": 255,
  2969. "_color": {
  2970. "__type__": "cc.Color",
  2971. "r": 255,
  2972. "g": 255,
  2973. "b": 255,
  2974. "a": 255
  2975. },
  2976. "_contentSize": {
  2977. "__type__": "cc.Size",
  2978. "width": 212,
  2979. "height": 27
  2980. },
  2981. "_anchorPoint": {
  2982. "__type__": "cc.Vec2",
  2983. "x": 0.5,
  2984. "y": 0.5
  2985. },
  2986. "_trs": {
  2987. "__type__": "TypedArray",
  2988. "ctor": "Float64Array",
  2989. "array": [
  2990. 0,
  2991. -353.83,
  2992. 0,
  2993. 0,
  2994. 0,
  2995. 0,
  2996. 1,
  2997. 1,
  2998. 1,
  2999. 1
  3000. ]
  3001. },
  3002. "_eulerAngles": {
  3003. "__type__": "cc.Vec3",
  3004. "x": 0,
  3005. "y": 0,
  3006. "z": 0
  3007. },
  3008. "_skewX": 0,
  3009. "_skewY": 0,
  3010. "_is3DNode": false,
  3011. "_groupIndex": 0,
  3012. "groupIndex": 0,
  3013. "_id": "4bYWYlw4RKx57QkuAGDN3K"
  3014. },
  3015. {
  3016. "__type__": "cc.Node",
  3017. "_name": "silver",
  3018. "_objFlags": 0,
  3019. "_parent": {
  3020. "__id__": 68
  3021. },
  3022. "_children": [
  3023. {
  3024. "__id__": 70
  3025. }
  3026. ],
  3027. "_active": true,
  3028. "_components": [
  3029. {
  3030. "__id__": 72
  3031. }
  3032. ],
  3033. "_prefab": null,
  3034. "_opacity": 255,
  3035. "_color": {
  3036. "__type__": "cc.Color",
  3037. "r": 255,
  3038. "g": 255,
  3039. "b": 255,
  3040. "a": 255
  3041. },
  3042. "_contentSize": {
  3043. "__type__": "cc.Size",
  3044. "width": 89,
  3045. "height": 84
  3046. },
  3047. "_anchorPoint": {
  3048. "__type__": "cc.Vec2",
  3049. "x": 0.5,
  3050. "y": 0.5
  3051. },
  3052. "_trs": {
  3053. "__type__": "TypedArray",
  3054. "ctor": "Float64Array",
  3055. "array": [
  3056. 0,
  3057. 0,
  3058. 0,
  3059. 0,
  3060. 0,
  3061. 0,
  3062. 1,
  3063. 1,
  3064. 1,
  3065. 1
  3066. ]
  3067. },
  3068. "_eulerAngles": {
  3069. "__type__": "cc.Vec3",
  3070. "x": 0,
  3071. "y": 0,
  3072. "z": 0
  3073. },
  3074. "_skewX": 0,
  3075. "_skewY": 0,
  3076. "_is3DNode": false,
  3077. "_groupIndex": 0,
  3078. "groupIndex": 0,
  3079. "_id": "33y6RhpNBE7IWFIFAlmBkl"
  3080. },
  3081. {
  3082. "__type__": "cc.Node",
  3083. "_name": "New Label",
  3084. "_objFlags": 0,
  3085. "_parent": {
  3086. "__id__": 69
  3087. },
  3088. "_children": [],
  3089. "_active": true,
  3090. "_components": [
  3091. {
  3092. "__id__": 71
  3093. }
  3094. ],
  3095. "_prefab": null,
  3096. "_opacity": 255,
  3097. "_color": {
  3098. "__type__": "cc.Color",
  3099. "r": 123,
  3100. "g": 141,
  3101. "b": 60,
  3102. "a": 255
  3103. },
  3104. "_contentSize": {
  3105. "__type__": "cc.Size",
  3106. "width": 52.04,
  3107. "height": 32.76
  3108. },
  3109. "_anchorPoint": {
  3110. "__type__": "cc.Vec2",
  3111. "x": 0.5,
  3112. "y": 0.5
  3113. },
  3114. "_trs": {
  3115. "__type__": "TypedArray",
  3116. "ctor": "Float64Array",
  3117. "array": [
  3118. 0,
  3119. -55.075,
  3120. 0,
  3121. 0,
  3122. 0,
  3123. 0,
  3124. 1,
  3125. 1,
  3126. 1,
  3127. 1
  3128. ]
  3129. },
  3130. "_eulerAngles": {
  3131. "__type__": "cc.Vec3",
  3132. "x": 0,
  3133. "y": 0,
  3134. "z": 0
  3135. },
  3136. "_skewX": 0,
  3137. "_skewY": 0,
  3138. "_is3DNode": false,
  3139. "_groupIndex": 0,
  3140. "groupIndex": 0,
  3141. "_id": "0cFSLAdKlNprJx2KHIrs/U"
  3142. },
  3143. {
  3144. "__type__": "cc.Label",
  3145. "_name": "",
  3146. "_objFlags": 0,
  3147. "node": {
  3148. "__id__": 70
  3149. },
  3150. "_enabled": true,
  3151. "_materials": [
  3152. {
  3153. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3154. }
  3155. ],
  3156. "_srcBlendFactor": 770,
  3157. "_dstBlendFactor": 771,
  3158. "_string": "50m",
  3159. "_N$string": "50m",
  3160. "_fontSize": 26,
  3161. "_lineHeight": 26,
  3162. "_enableWrapText": true,
  3163. "_N$file": null,
  3164. "_isSystemFontUsed": true,
  3165. "_spacingX": 0,
  3166. "_batchAsBitmap": false,
  3167. "_styleFlags": 1,
  3168. "_underlineHeight": 0,
  3169. "_N$horizontalAlign": 1,
  3170. "_N$verticalAlign": 1,
  3171. "_N$fontFamily": "Arial",
  3172. "_N$overflow": 0,
  3173. "_N$cacheMode": 0,
  3174. "_id": "aazE8XJUBMJZ8hBScHWiFM"
  3175. },
  3176. {
  3177. "__type__": "cc.Sprite",
  3178. "_name": "",
  3179. "_objFlags": 0,
  3180. "node": {
  3181. "__id__": 69
  3182. },
  3183. "_enabled": true,
  3184. "_materials": [
  3185. {
  3186. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3187. }
  3188. ],
  3189. "_srcBlendFactor": 770,
  3190. "_dstBlendFactor": 771,
  3191. "_spriteFrame": {
  3192. "__uuid__": "e0d3c671-9326-406e-98de-e8b9e159c9cf"
  3193. },
  3194. "_type": 0,
  3195. "_sizeMode": 1,
  3196. "_fillType": 0,
  3197. "_fillCenter": {
  3198. "__type__": "cc.Vec2",
  3199. "x": 0,
  3200. "y": 0
  3201. },
  3202. "_fillStart": 0,
  3203. "_fillRange": 0,
  3204. "_isTrimmedMode": true,
  3205. "_atlas": null,
  3206. "_id": "b21+Tv/RZPY7vhQ7lu7r/N"
  3207. },
  3208. {
  3209. "__type__": "cc.Node",
  3210. "_name": "gold",
  3211. "_objFlags": 0,
  3212. "_parent": {
  3213. "__id__": 68
  3214. },
  3215. "_children": [
  3216. {
  3217. "__id__": 74
  3218. }
  3219. ],
  3220. "_active": true,
  3221. "_components": [
  3222. {
  3223. "__id__": 76
  3224. }
  3225. ],
  3226. "_prefab": null,
  3227. "_opacity": 255,
  3228. "_color": {
  3229. "__type__": "cc.Color",
  3230. "r": 255,
  3231. "g": 255,
  3232. "b": 255,
  3233. "a": 255
  3234. },
  3235. "_contentSize": {
  3236. "__type__": "cc.Size",
  3237. "width": 89,
  3238. "height": 84
  3239. },
  3240. "_anchorPoint": {
  3241. "__type__": "cc.Vec2",
  3242. "x": 0.5,
  3243. "y": 0.5
  3244. },
  3245. "_trs": {
  3246. "__type__": "TypedArray",
  3247. "ctor": "Float64Array",
  3248. "array": [
  3249. 163.434,
  3250. 10.172,
  3251. 0,
  3252. 0,
  3253. 0,
  3254. 0,
  3255. 1,
  3256. 1,
  3257. 1,
  3258. 1
  3259. ]
  3260. },
  3261. "_eulerAngles": {
  3262. "__type__": "cc.Vec3",
  3263. "x": 0,
  3264. "y": 0,
  3265. "z": 0
  3266. },
  3267. "_skewX": 0,
  3268. "_skewY": 0,
  3269. "_is3DNode": false,
  3270. "_groupIndex": 0,
  3271. "groupIndex": 0,
  3272. "_id": "beim19jwxGH59hBrNpQ9Kw"
  3273. },
  3274. {
  3275. "__type__": "cc.Node",
  3276. "_name": "New Label",
  3277. "_objFlags": 0,
  3278. "_parent": {
  3279. "__id__": 73
  3280. },
  3281. "_children": [],
  3282. "_active": true,
  3283. "_components": [
  3284. {
  3285. "__id__": 75
  3286. }
  3287. ],
  3288. "_prefab": null,
  3289. "_opacity": 255,
  3290. "_color": {
  3291. "__type__": "cc.Color",
  3292. "r": 123,
  3293. "g": 141,
  3294. "b": 60,
  3295. "a": 255
  3296. },
  3297. "_contentSize": {
  3298. "__type__": "cc.Size",
  3299. "width": 52.04,
  3300. "height": 32.76
  3301. },
  3302. "_anchorPoint": {
  3303. "__type__": "cc.Vec2",
  3304. "x": 0.5,
  3305. "y": 0.5
  3306. },
  3307. "_trs": {
  3308. "__type__": "TypedArray",
  3309. "ctor": "Float64Array",
  3310. "array": [
  3311. 0,
  3312. -65.247,
  3313. 0,
  3314. 0,
  3315. 0,
  3316. 0,
  3317. 1,
  3318. 1,
  3319. 1,
  3320. 1
  3321. ]
  3322. },
  3323. "_eulerAngles": {
  3324. "__type__": "cc.Vec3",
  3325. "x": 0,
  3326. "y": 0,
  3327. "z": 0
  3328. },
  3329. "_skewX": 0,
  3330. "_skewY": 0,
  3331. "_is3DNode": false,
  3332. "_groupIndex": 0,
  3333. "groupIndex": 0,
  3334. "_id": "82tzsH55pB0rZBc39+BVS5"
  3335. },
  3336. {
  3337. "__type__": "cc.Label",
  3338. "_name": "",
  3339. "_objFlags": 0,
  3340. "node": {
  3341. "__id__": 74
  3342. },
  3343. "_enabled": true,
  3344. "_materials": [
  3345. {
  3346. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3347. }
  3348. ],
  3349. "_srcBlendFactor": 770,
  3350. "_dstBlendFactor": 771,
  3351. "_string": "50m",
  3352. "_N$string": "50m",
  3353. "_fontSize": 26,
  3354. "_lineHeight": 26,
  3355. "_enableWrapText": true,
  3356. "_N$file": null,
  3357. "_isSystemFontUsed": true,
  3358. "_spacingX": 0,
  3359. "_batchAsBitmap": false,
  3360. "_styleFlags": 1,
  3361. "_underlineHeight": 0,
  3362. "_N$horizontalAlign": 1,
  3363. "_N$verticalAlign": 1,
  3364. "_N$fontFamily": "Arial",
  3365. "_N$overflow": 0,
  3366. "_N$cacheMode": 0,
  3367. "_id": "f9+XJpemZOe7nhO1oupUdJ"
  3368. },
  3369. {
  3370. "__type__": "cc.Sprite",
  3371. "_name": "",
  3372. "_objFlags": 0,
  3373. "node": {
  3374. "__id__": 73
  3375. },
  3376. "_enabled": true,
  3377. "_materials": [
  3378. {
  3379. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3380. }
  3381. ],
  3382. "_srcBlendFactor": 770,
  3383. "_dstBlendFactor": 771,
  3384. "_spriteFrame": {
  3385. "__uuid__": "c4a75644-0c6b-498d-ac6a-4303004c6762"
  3386. },
  3387. "_type": 0,
  3388. "_sizeMode": 1,
  3389. "_fillType": 0,
  3390. "_fillCenter": {
  3391. "__type__": "cc.Vec2",
  3392. "x": 0,
  3393. "y": 0
  3394. },
  3395. "_fillStart": 0,
  3396. "_fillRange": 0,
  3397. "_isTrimmedMode": true,
  3398. "_atlas": null,
  3399. "_id": "80+68rzFdBoIT81xwMkp+K"
  3400. },
  3401. {
  3402. "__type__": "cc.Node",
  3403. "_name": "wood",
  3404. "_objFlags": 0,
  3405. "_parent": {
  3406. "__id__": 68
  3407. },
  3408. "_children": [
  3409. {
  3410. "__id__": 78
  3411. }
  3412. ],
  3413. "_active": true,
  3414. "_components": [
  3415. {
  3416. "__id__": 80
  3417. }
  3418. ],
  3419. "_prefab": null,
  3420. "_opacity": 255,
  3421. "_color": {
  3422. "__type__": "cc.Color",
  3423. "r": 255,
  3424. "g": 255,
  3425. "b": 255,
  3426. "a": 255
  3427. },
  3428. "_contentSize": {
  3429. "__type__": "cc.Size",
  3430. "width": 89,
  3431. "height": 84
  3432. },
  3433. "_anchorPoint": {
  3434. "__type__": "cc.Vec2",
  3435. "x": 0.5,
  3436. "y": 0.5
  3437. },
  3438. "_trs": {
  3439. "__type__": "TypedArray",
  3440. "ctor": "Float64Array",
  3441. "array": [
  3442. -153,
  3443. 0,
  3444. 0,
  3445. 0,
  3446. 0,
  3447. 0,
  3448. 1,
  3449. 1,
  3450. 1,
  3451. 1
  3452. ]
  3453. },
  3454. "_eulerAngles": {
  3455. "__type__": "cc.Vec3",
  3456. "x": 0,
  3457. "y": 0,
  3458. "z": 0
  3459. },
  3460. "_skewX": 0,
  3461. "_skewY": 0,
  3462. "_is3DNode": false,
  3463. "_groupIndex": 0,
  3464. "groupIndex": 0,
  3465. "_id": "0eX6zB+2lAv7uICk9dSJil"
  3466. },
  3467. {
  3468. "__type__": "cc.Node",
  3469. "_name": "New Label",
  3470. "_objFlags": 0,
  3471. "_parent": {
  3472. "__id__": 77
  3473. },
  3474. "_children": [],
  3475. "_active": true,
  3476. "_components": [
  3477. {
  3478. "__id__": 79
  3479. }
  3480. ],
  3481. "_prefab": null,
  3482. "_opacity": 255,
  3483. "_color": {
  3484. "__type__": "cc.Color",
  3485. "r": 123,
  3486. "g": 141,
  3487. "b": 60,
  3488. "a": 255
  3489. },
  3490. "_contentSize": {
  3491. "__type__": "cc.Size",
  3492. "width": 52.04,
  3493. "height": 32.76
  3494. },
  3495. "_anchorPoint": {
  3496. "__type__": "cc.Vec2",
  3497. "x": 0.5,
  3498. "y": 0.5
  3499. },
  3500. "_trs": {
  3501. "__type__": "TypedArray",
  3502. "ctor": "Float64Array",
  3503. "array": [
  3504. 0,
  3505. -55.075,
  3506. 0,
  3507. 0,
  3508. 0,
  3509. 0,
  3510. 1,
  3511. 1,
  3512. 1,
  3513. 1
  3514. ]
  3515. },
  3516. "_eulerAngles": {
  3517. "__type__": "cc.Vec3",
  3518. "x": 0,
  3519. "y": 0,
  3520. "z": 0
  3521. },
  3522. "_skewX": 0,
  3523. "_skewY": 0,
  3524. "_is3DNode": false,
  3525. "_groupIndex": 0,
  3526. "groupIndex": 0,
  3527. "_id": "5ewGM9/F1P2aGqcgdLIy6u"
  3528. },
  3529. {
  3530. "__type__": "cc.Label",
  3531. "_name": "",
  3532. "_objFlags": 0,
  3533. "node": {
  3534. "__id__": 78
  3535. },
  3536. "_enabled": true,
  3537. "_materials": [
  3538. {
  3539. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3540. }
  3541. ],
  3542. "_srcBlendFactor": 770,
  3543. "_dstBlendFactor": 771,
  3544. "_string": "50m",
  3545. "_N$string": "50m",
  3546. "_fontSize": 26,
  3547. "_lineHeight": 26,
  3548. "_enableWrapText": true,
  3549. "_N$file": null,
  3550. "_isSystemFontUsed": true,
  3551. "_spacingX": 0,
  3552. "_batchAsBitmap": false,
  3553. "_styleFlags": 1,
  3554. "_underlineHeight": 0,
  3555. "_N$horizontalAlign": 1,
  3556. "_N$verticalAlign": 1,
  3557. "_N$fontFamily": "Arial",
  3558. "_N$overflow": 0,
  3559. "_N$cacheMode": 0,
  3560. "_id": "1fi16hYRNKy7IiqnGlle8E"
  3561. },
  3562. {
  3563. "__type__": "cc.Sprite",
  3564. "_name": "",
  3565. "_objFlags": 0,
  3566. "node": {
  3567. "__id__": 77
  3568. },
  3569. "_enabled": true,
  3570. "_materials": [
  3571. {
  3572. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3573. }
  3574. ],
  3575. "_srcBlendFactor": 770,
  3576. "_dstBlendFactor": 771,
  3577. "_spriteFrame": {
  3578. "__uuid__": "9e3b0319-e9e3-4d0f-8c47-8c19b82d9c00"
  3579. },
  3580. "_type": 0,
  3581. "_sizeMode": 1,
  3582. "_fillType": 0,
  3583. "_fillCenter": {
  3584. "__type__": "cc.Vec2",
  3585. "x": 0,
  3586. "y": 0
  3587. },
  3588. "_fillStart": 0,
  3589. "_fillRange": 0,
  3590. "_isTrimmedMode": true,
  3591. "_atlas": null,
  3592. "_id": "d7RhSnnp1Fl7/kILATcyI+"
  3593. },
  3594. {
  3595. "__type__": "cc.Widget",
  3596. "_name": "",
  3597. "_objFlags": 0,
  3598. "node": {
  3599. "__id__": 68
  3600. },
  3601. "_enabled": true,
  3602. "alignMode": 1,
  3603. "_target": null,
  3604. "_alignFlags": 4,
  3605. "_left": 0,
  3606. "_right": 0,
  3607. "_top": 0,
  3608. "_bottom": 299.67,
  3609. "_verticalCenter": 0,
  3610. "_horizontalCenter": 0,
  3611. "_isAbsLeft": true,
  3612. "_isAbsRight": true,
  3613. "_isAbsTop": true,
  3614. "_isAbsBottom": true,
  3615. "_isAbsHorizontalCenter": true,
  3616. "_isAbsVerticalCenter": true,
  3617. "_originalWidth": 0,
  3618. "_originalHeight": 0,
  3619. "_id": "a0aGKazYJEO51gYPU34rCZ"
  3620. },
  3621. {
  3622. "__type__": "cc.Node",
  3623. "_name": "Start",
  3624. "_objFlags": 0,
  3625. "_parent": {
  3626. "__id__": 8
  3627. },
  3628. "_children": [],
  3629. "_active": true,
  3630. "_components": [
  3631. {
  3632. "__id__": 83
  3633. },
  3634. {
  3635. "__id__": 84
  3636. },
  3637. {
  3638. "__id__": 86
  3639. }
  3640. ],
  3641. "_prefab": null,
  3642. "_opacity": 255,
  3643. "_color": {
  3644. "__type__": "cc.Color",
  3645. "r": 255,
  3646. "g": 255,
  3647. "b": 255,
  3648. "a": 255
  3649. },
  3650. "_contentSize": {
  3651. "__type__": "cc.Size",
  3652. "width": 307,
  3653. "height": 126
  3654. },
  3655. "_anchorPoint": {
  3656. "__type__": "cc.Vec2",
  3657. "x": 0.5,
  3658. "y": 0.5
  3659. },
  3660. "_trs": {
  3661. "__type__": "TypedArray",
  3662. "ctor": "Float64Array",
  3663. "array": [
  3664. 0,
  3665. -506.808,
  3666. 0,
  3667. 0,
  3668. 0,
  3669. 0,
  3670. 1,
  3671. 1,
  3672. 1,
  3673. 0
  3674. ]
  3675. },
  3676. "_eulerAngles": {
  3677. "__type__": "cc.Vec3",
  3678. "x": 0,
  3679. "y": 0,
  3680. "z": 0
  3681. },
  3682. "_skewX": 0,
  3683. "_skewY": 0,
  3684. "_is3DNode": false,
  3685. "_groupIndex": 0,
  3686. "groupIndex": 0,
  3687. "_id": "aaNgZSsW5N2reWMJN2yykI"
  3688. },
  3689. {
  3690. "__type__": "cc.Sprite",
  3691. "_name": "",
  3692. "_objFlags": 0,
  3693. "node": {
  3694. "__id__": 82
  3695. },
  3696. "_enabled": true,
  3697. "_materials": [
  3698. {
  3699. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3700. }
  3701. ],
  3702. "_srcBlendFactor": 770,
  3703. "_dstBlendFactor": 771,
  3704. "_spriteFrame": {
  3705. "__uuid__": "fca6674b-c4ff-4d3d-bae6-fb35603100f9"
  3706. },
  3707. "_type": 0,
  3708. "_sizeMode": 1,
  3709. "_fillType": 0,
  3710. "_fillCenter": {
  3711. "__type__": "cc.Vec2",
  3712. "x": 0,
  3713. "y": 0
  3714. },
  3715. "_fillStart": 0,
  3716. "_fillRange": 0,
  3717. "_isTrimmedMode": true,
  3718. "_atlas": null,
  3719. "_id": "daikVhPmJDr4VvBxTCnVEe"
  3720. },
  3721. {
  3722. "__type__": "cc.Button",
  3723. "_name": "",
  3724. "_objFlags": 0,
  3725. "node": {
  3726. "__id__": 82
  3727. },
  3728. "_enabled": true,
  3729. "_normalMaterial": null,
  3730. "_grayMaterial": null,
  3731. "duration": 0.1,
  3732. "zoomScale": 1.05,
  3733. "clickEvents": [
  3734. {
  3735. "__id__": 85
  3736. }
  3737. ],
  3738. "_N$interactable": true,
  3739. "_N$enableAutoGrayEffect": false,
  3740. "_N$transition": 3,
  3741. "transition": 3,
  3742. "_N$normalColor": {
  3743. "__type__": "cc.Color",
  3744. "r": 255,
  3745. "g": 255,
  3746. "b": 255,
  3747. "a": 255
  3748. },
  3749. "_N$pressedColor": {
  3750. "__type__": "cc.Color",
  3751. "r": 211,
  3752. "g": 211,
  3753. "b": 211,
  3754. "a": 255
  3755. },
  3756. "pressedColor": {
  3757. "__type__": "cc.Color",
  3758. "r": 211,
  3759. "g": 211,
  3760. "b": 211,
  3761. "a": 255
  3762. },
  3763. "_N$hoverColor": {
  3764. "__type__": "cc.Color",
  3765. "r": 255,
  3766. "g": 255,
  3767. "b": 255,
  3768. "a": 255
  3769. },
  3770. "hoverColor": {
  3771. "__type__": "cc.Color",
  3772. "r": 255,
  3773. "g": 255,
  3774. "b": 255,
  3775. "a": 255
  3776. },
  3777. "_N$disabledColor": {
  3778. "__type__": "cc.Color",
  3779. "r": 124,
  3780. "g": 124,
  3781. "b": 124,
  3782. "a": 255
  3783. },
  3784. "_N$normalSprite": null,
  3785. "_N$pressedSprite": null,
  3786. "pressedSprite": null,
  3787. "_N$hoverSprite": null,
  3788. "hoverSprite": null,
  3789. "_N$disabledSprite": null,
  3790. "_N$target": null,
  3791. "_id": "8fZ8AbvitOKIgDwO/wY32l"
  3792. },
  3793. {
  3794. "__type__": "cc.ClickEvent",
  3795. "target": {
  3796. "__id__": 2
  3797. },
  3798. "component": "",
  3799. "_componentId": "e1b90/rohdEk4SdmmEZANaD",
  3800. "handler": "ClickStart",
  3801. "customEventData": ""
  3802. },
  3803. {
  3804. "__type__": "cc.Widget",
  3805. "_name": "",
  3806. "_objFlags": 0,
  3807. "node": {
  3808. "__id__": 82
  3809. },
  3810. "_enabled": true,
  3811. "alignMode": 1,
  3812. "_target": null,
  3813. "_alignFlags": 4,
  3814. "_left": 0,
  3815. "_right": 0,
  3816. "_top": 0,
  3817. "_bottom": 97.19199999999995,
  3818. "_verticalCenter": 0,
  3819. "_horizontalCenter": 0,
  3820. "_isAbsLeft": true,
  3821. "_isAbsRight": true,
  3822. "_isAbsTop": true,
  3823. "_isAbsBottom": true,
  3824. "_isAbsHorizontalCenter": true,
  3825. "_isAbsVerticalCenter": true,
  3826. "_originalWidth": 0,
  3827. "_originalHeight": 0,
  3828. "_id": "72Jz1Tr7dBaLEN18/vvyVo"
  3829. },
  3830. {
  3831. "__type__": "cc.Node",
  3832. "_name": "Editer",
  3833. "_objFlags": 0,
  3834. "_parent": {
  3835. "__id__": 8
  3836. },
  3837. "_children": [
  3838. {
  3839. "__id__": 88
  3840. }
  3841. ],
  3842. "_active": true,
  3843. "_components": [
  3844. {
  3845. "__id__": 93
  3846. }
  3847. ],
  3848. "_prefab": null,
  3849. "_opacity": 255,
  3850. "_color": {
  3851. "__type__": "cc.Color",
  3852. "r": 255,
  3853. "g": 255,
  3854. "b": 255,
  3855. "a": 255
  3856. },
  3857. "_contentSize": {
  3858. "__type__": "cc.Size",
  3859. "width": 100,
  3860. "height": 40
  3861. },
  3862. "_anchorPoint": {
  3863. "__type__": "cc.Vec2",
  3864. "x": 0.5,
  3865. "y": 0.5
  3866. },
  3867. "_trs": {
  3868. "__type__": "TypedArray",
  3869. "ctor": "Float64Array",
  3870. "array": [
  3871. -229.826,
  3872. 514.536,
  3873. 0,
  3874. 0,
  3875. 0,
  3876. 0,
  3877. 1,
  3878. 1,
  3879. 1,
  3880. 1
  3881. ]
  3882. },
  3883. "_eulerAngles": {
  3884. "__type__": "cc.Vec3",
  3885. "x": 0,
  3886. "y": 0,
  3887. "z": 0
  3888. },
  3889. "_skewX": 0,
  3890. "_skewY": 0,
  3891. "_is3DNode": false,
  3892. "_groupIndex": 0,
  3893. "groupIndex": 0,
  3894. "_id": "32QtcCBvZKqKWMOp0IFp/T"
  3895. },
  3896. {
  3897. "__type__": "cc.Node",
  3898. "_name": "Background",
  3899. "_objFlags": 512,
  3900. "_parent": {
  3901. "__id__": 87
  3902. },
  3903. "_children": [
  3904. {
  3905. "__id__": 89
  3906. }
  3907. ],
  3908. "_active": true,
  3909. "_components": [
  3910. {
  3911. "__id__": 91
  3912. },
  3913. {
  3914. "__id__": 92
  3915. }
  3916. ],
  3917. "_prefab": null,
  3918. "_opacity": 255,
  3919. "_color": {
  3920. "__type__": "cc.Color",
  3921. "r": 255,
  3922. "g": 255,
  3923. "b": 255,
  3924. "a": 255
  3925. },
  3926. "_contentSize": {
  3927. "__type__": "cc.Size",
  3928. "width": 100,
  3929. "height": 40
  3930. },
  3931. "_anchorPoint": {
  3932. "__type__": "cc.Vec2",
  3933. "x": 0.5,
  3934. "y": 0.5
  3935. },
  3936. "_trs": {
  3937. "__type__": "TypedArray",
  3938. "ctor": "Float64Array",
  3939. "array": [
  3940. 0,
  3941. 0,
  3942. 0,
  3943. 0,
  3944. 0,
  3945. 0,
  3946. 1,
  3947. 1,
  3948. 1,
  3949. 1
  3950. ]
  3951. },
  3952. "_eulerAngles": {
  3953. "__type__": "cc.Vec3",
  3954. "x": 0,
  3955. "y": 0,
  3956. "z": 0
  3957. },
  3958. "_skewX": 0,
  3959. "_skewY": 0,
  3960. "_is3DNode": false,
  3961. "_groupIndex": 0,
  3962. "groupIndex": 0,
  3963. "_id": "00TibHBZlCiZbSG8i/thEp"
  3964. },
  3965. {
  3966. "__type__": "cc.Node",
  3967. "_name": "Label",
  3968. "_objFlags": 512,
  3969. "_parent": {
  3970. "__id__": 88
  3971. },
  3972. "_children": [],
  3973. "_active": true,
  3974. "_components": [
  3975. {
  3976. "__id__": 90
  3977. }
  3978. ],
  3979. "_prefab": null,
  3980. "_opacity": 255,
  3981. "_color": {
  3982. "__type__": "cc.Color",
  3983. "r": 0,
  3984. "g": 0,
  3985. "b": 0,
  3986. "a": 255
  3987. },
  3988. "_contentSize": {
  3989. "__type__": "cc.Size",
  3990. "width": 100,
  3991. "height": 40
  3992. },
  3993. "_anchorPoint": {
  3994. "__type__": "cc.Vec2",
  3995. "x": 0.5,
  3996. "y": 0.5
  3997. },
  3998. "_trs": {
  3999. "__type__": "TypedArray",
  4000. "ctor": "Float64Array",
  4001. "array": [
  4002. 0,
  4003. 0,
  4004. 0,
  4005. 0,
  4006. 0,
  4007. 0,
  4008. 1,
  4009. 1,
  4010. 1,
  4011. 1
  4012. ]
  4013. },
  4014. "_eulerAngles": {
  4015. "__type__": "cc.Vec3",
  4016. "x": 0,
  4017. "y": 0,
  4018. "z": 0
  4019. },
  4020. "_skewX": 0,
  4021. "_skewY": 0,
  4022. "_is3DNode": false,
  4023. "_groupIndex": 0,
  4024. "groupIndex": 0,
  4025. "_id": "89m2qM2XNOgKF2kRZ7GEFO"
  4026. },
  4027. {
  4028. "__type__": "cc.Label",
  4029. "_name": "",
  4030. "_objFlags": 0,
  4031. "node": {
  4032. "__id__": 89
  4033. },
  4034. "_enabled": true,
  4035. "_materials": [
  4036. {
  4037. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4038. }
  4039. ],
  4040. "_srcBlendFactor": 770,
  4041. "_dstBlendFactor": 771,
  4042. "_string": "编辑器",
  4043. "_N$string": "编辑器",
  4044. "_fontSize": 20,
  4045. "_lineHeight": 40,
  4046. "_enableWrapText": false,
  4047. "_N$file": null,
  4048. "_isSystemFontUsed": true,
  4049. "_spacingX": 0,
  4050. "_batchAsBitmap": false,
  4051. "_styleFlags": 0,
  4052. "_underlineHeight": 0,
  4053. "_N$horizontalAlign": 1,
  4054. "_N$verticalAlign": 1,
  4055. "_N$fontFamily": "Arial",
  4056. "_N$overflow": 1,
  4057. "_N$cacheMode": 1,
  4058. "_id": "50mhNEUuZCfqp1k1JU94Md"
  4059. },
  4060. {
  4061. "__type__": "cc.Sprite",
  4062. "_name": "",
  4063. "_objFlags": 0,
  4064. "node": {
  4065. "__id__": 88
  4066. },
  4067. "_enabled": true,
  4068. "_materials": [
  4069. {
  4070. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4071. }
  4072. ],
  4073. "_srcBlendFactor": 770,
  4074. "_dstBlendFactor": 771,
  4075. "_spriteFrame": {
  4076. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4077. },
  4078. "_type": 1,
  4079. "_sizeMode": 0,
  4080. "_fillType": 0,
  4081. "_fillCenter": {
  4082. "__type__": "cc.Vec2",
  4083. "x": 0,
  4084. "y": 0
  4085. },
  4086. "_fillStart": 0,
  4087. "_fillRange": 0,
  4088. "_isTrimmedMode": true,
  4089. "_atlas": null,
  4090. "_id": "4cjluA9+9K6Z6sHKnxGkXu"
  4091. },
  4092. {
  4093. "__type__": "cc.Widget",
  4094. "_name": "",
  4095. "_objFlags": 0,
  4096. "node": {
  4097. "__id__": 88
  4098. },
  4099. "_enabled": true,
  4100. "alignMode": 0,
  4101. "_target": null,
  4102. "_alignFlags": 45,
  4103. "_left": 0,
  4104. "_right": 0,
  4105. "_top": 0,
  4106. "_bottom": 0,
  4107. "_verticalCenter": 0,
  4108. "_horizontalCenter": 0,
  4109. "_isAbsLeft": true,
  4110. "_isAbsRight": true,
  4111. "_isAbsTop": true,
  4112. "_isAbsBottom": true,
  4113. "_isAbsHorizontalCenter": true,
  4114. "_isAbsVerticalCenter": true,
  4115. "_originalWidth": 100,
  4116. "_originalHeight": 40,
  4117. "_id": "a0ZfGN3VhGm6rAHBimWcDU"
  4118. },
  4119. {
  4120. "__type__": "cc.Button",
  4121. "_name": "",
  4122. "_objFlags": 0,
  4123. "node": {
  4124. "__id__": 87
  4125. },
  4126. "_enabled": true,
  4127. "_normalMaterial": null,
  4128. "_grayMaterial": null,
  4129. "duration": 0.1,
  4130. "zoomScale": 1.2,
  4131. "clickEvents": [
  4132. {
  4133. "__id__": 94
  4134. }
  4135. ],
  4136. "_N$interactable": true,
  4137. "_N$enableAutoGrayEffect": false,
  4138. "_N$transition": 2,
  4139. "transition": 2,
  4140. "_N$normalColor": {
  4141. "__type__": "cc.Color",
  4142. "r": 230,
  4143. "g": 230,
  4144. "b": 230,
  4145. "a": 255
  4146. },
  4147. "_N$pressedColor": {
  4148. "__type__": "cc.Color",
  4149. "r": 200,
  4150. "g": 200,
  4151. "b": 200,
  4152. "a": 255
  4153. },
  4154. "pressedColor": {
  4155. "__type__": "cc.Color",
  4156. "r": 200,
  4157. "g": 200,
  4158. "b": 200,
  4159. "a": 255
  4160. },
  4161. "_N$hoverColor": {
  4162. "__type__": "cc.Color",
  4163. "r": 255,
  4164. "g": 255,
  4165. "b": 255,
  4166. "a": 255
  4167. },
  4168. "hoverColor": {
  4169. "__type__": "cc.Color",
  4170. "r": 255,
  4171. "g": 255,
  4172. "b": 255,
  4173. "a": 255
  4174. },
  4175. "_N$disabledColor": {
  4176. "__type__": "cc.Color",
  4177. "r": 120,
  4178. "g": 120,
  4179. "b": 120,
  4180. "a": 200
  4181. },
  4182. "_N$normalSprite": {
  4183. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4184. },
  4185. "_N$pressedSprite": {
  4186. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4187. },
  4188. "pressedSprite": {
  4189. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4190. },
  4191. "_N$hoverSprite": {
  4192. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4193. },
  4194. "hoverSprite": {
  4195. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4196. },
  4197. "_N$disabledSprite": {
  4198. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  4199. },
  4200. "_N$target": {
  4201. "__id__": 88
  4202. },
  4203. "_id": "9a4Iqb8jNJz4H1e55sLyjo"
  4204. },
  4205. {
  4206. "__type__": "cc.ClickEvent",
  4207. "target": {
  4208. "__id__": 2
  4209. },
  4210. "component": "",
  4211. "_componentId": "e1b90/rohdEk4SdmmEZANaD",
  4212. "handler": "ClickBjq",
  4213. "customEventData": ""
  4214. },
  4215. {
  4216. "__type__": "cc.Widget",
  4217. "_name": "",
  4218. "_objFlags": 0,
  4219. "node": {
  4220. "__id__": 8
  4221. },
  4222. "_enabled": true,
  4223. "alignMode": 1,
  4224. "_target": null,
  4225. "_alignFlags": 45,
  4226. "_left": 0,
  4227. "_right": 0,
  4228. "_top": 0,
  4229. "_bottom": 0,
  4230. "_verticalCenter": 0,
  4231. "_horizontalCenter": 0,
  4232. "_isAbsLeft": true,
  4233. "_isAbsRight": true,
  4234. "_isAbsTop": true,
  4235. "_isAbsBottom": true,
  4236. "_isAbsHorizontalCenter": true,
  4237. "_isAbsVerticalCenter": true,
  4238. "_originalWidth": 0,
  4239. "_originalHeight": 0,
  4240. "_id": "c0EMLq6MlDQIS2E4cogmHX"
  4241. },
  4242. {
  4243. "__type__": "cc.SafeArea",
  4244. "_name": "",
  4245. "_objFlags": 0,
  4246. "node": {
  4247. "__id__": 8
  4248. },
  4249. "_enabled": true,
  4250. "_id": "b7iJ3feG5MMKwqGvwDFc4f"
  4251. },
  4252. {
  4253. "__type__": "cc.Node",
  4254. "_name": "UINode",
  4255. "_objFlags": 0,
  4256. "_parent": {
  4257. "__id__": 2
  4258. },
  4259. "_children": [],
  4260. "_active": true,
  4261. "_components": [
  4262. {
  4263. "__id__": 98
  4264. }
  4265. ],
  4266. "_prefab": null,
  4267. "_opacity": 255,
  4268. "_color": {
  4269. "__type__": "cc.Color",
  4270. "r": 255,
  4271. "g": 255,
  4272. "b": 255,
  4273. "a": 255
  4274. },
  4275. "_contentSize": {
  4276. "__type__": "cc.Size",
  4277. "width": 750,
  4278. "height": 1334
  4279. },
  4280. "_anchorPoint": {
  4281. "__type__": "cc.Vec2",
  4282. "x": 0.5,
  4283. "y": 0.5
  4284. },
  4285. "_trs": {
  4286. "__type__": "TypedArray",
  4287. "ctor": "Float64Array",
  4288. "array": [
  4289. 0,
  4290. 0,
  4291. 0,
  4292. 0,
  4293. 0,
  4294. 0,
  4295. 1,
  4296. 1,
  4297. 1,
  4298. 1
  4299. ]
  4300. },
  4301. "_eulerAngles": {
  4302. "__type__": "cc.Vec3",
  4303. "x": 0,
  4304. "y": 0,
  4305. "z": 0
  4306. },
  4307. "_skewX": 0,
  4308. "_skewY": 0,
  4309. "_is3DNode": false,
  4310. "_groupIndex": 0,
  4311. "groupIndex": 0,
  4312. "_id": "8ftdg6371JJYF6I+0rIjaM"
  4313. },
  4314. {
  4315. "__type__": "cc.Widget",
  4316. "_name": "",
  4317. "_objFlags": 0,
  4318. "node": {
  4319. "__id__": 97
  4320. },
  4321. "_enabled": true,
  4322. "alignMode": 1,
  4323. "_target": null,
  4324. "_alignFlags": 45,
  4325. "_left": 0,
  4326. "_right": 0,
  4327. "_top": 0,
  4328. "_bottom": 0,
  4329. "_verticalCenter": 0,
  4330. "_horizontalCenter": 0,
  4331. "_isAbsLeft": true,
  4332. "_isAbsRight": true,
  4333. "_isAbsTop": true,
  4334. "_isAbsBottom": true,
  4335. "_isAbsHorizontalCenter": true,
  4336. "_isAbsVerticalCenter": true,
  4337. "_originalWidth": 0,
  4338. "_originalHeight": 0,
  4339. "_id": "84LWH5Gu9FT5wsfqmvC3rd"
  4340. },
  4341. {
  4342. "__type__": "cc.Canvas",
  4343. "_name": "",
  4344. "_objFlags": 0,
  4345. "node": {
  4346. "__id__": 2
  4347. },
  4348. "_enabled": true,
  4349. "_designResolution": {
  4350. "__type__": "cc.Size",
  4351. "width": 750,
  4352. "height": 1334
  4353. },
  4354. "_fitWidth": false,
  4355. "_fitHeight": true,
  4356. "_id": "b6DMJp1fhN2qGvxQhxEY9p"
  4357. },
  4358. {
  4359. "__type__": "cc.Widget",
  4360. "_name": "",
  4361. "_objFlags": 0,
  4362. "node": {
  4363. "__id__": 2
  4364. },
  4365. "_enabled": true,
  4366. "alignMode": 1,
  4367. "_target": null,
  4368. "_alignFlags": 45,
  4369. "_left": 0,
  4370. "_right": 0,
  4371. "_top": 0,
  4372. "_bottom": 0,
  4373. "_verticalCenter": 0,
  4374. "_horizontalCenter": 0,
  4375. "_isAbsLeft": true,
  4376. "_isAbsRight": true,
  4377. "_isAbsTop": true,
  4378. "_isAbsBottom": true,
  4379. "_isAbsHorizontalCenter": true,
  4380. "_isAbsVerticalCenter": true,
  4381. "_originalWidth": 0,
  4382. "_originalHeight": 0,
  4383. "_id": "7fc1JVK89ILYOI2tPpM65n"
  4384. },
  4385. {
  4386. "__type__": "e1b90/rohdEk4SdmmEZANaD",
  4387. "_name": "",
  4388. "_objFlags": 0,
  4389. "node": {
  4390. "__id__": 2
  4391. },
  4392. "_enabled": true,
  4393. "MaxRecordLabel": {
  4394. "__id__": 23
  4395. },
  4396. "UIParentNode": {
  4397. "__id__": 97
  4398. },
  4399. "_id": "296pfEyVdDwYXAMMBzY6jc"
  4400. }
  4401. ]