Exchange2Layer.prefab 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "Exchange2Layer",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [
  29. {
  30. "__id__": 93
  31. },
  32. {
  33. "__id__": 94
  34. }
  35. ],
  36. "_prefab": {
  37. "__id__": 95
  38. },
  39. "_opacity": 255,
  40. "_color": {
  41. "__type__": "cc.Color",
  42. "r": 255,
  43. "g": 255,
  44. "b": 255,
  45. "a": 255
  46. },
  47. "_contentSize": {
  48. "__type__": "cc.Size",
  49. "width": 720,
  50. "height": 1280
  51. },
  52. "_anchorPoint": {
  53. "__type__": "cc.Vec2",
  54. "x": 0.5,
  55. "y": 0.5
  56. },
  57. "_trs": {
  58. "__type__": "TypedArray",
  59. "ctor": "Float64Array",
  60. "array": [
  61. 360,
  62. 640,
  63. 0,
  64. 0,
  65. 0,
  66. 0,
  67. 1,
  68. 1,
  69. 1,
  70. 1
  71. ]
  72. },
  73. "_eulerAngles": {
  74. "__type__": "cc.Vec3",
  75. "x": 0,
  76. "y": 0,
  77. "z": 0
  78. },
  79. "_skewX": 0,
  80. "_skewY": 0,
  81. "_is3DNode": false,
  82. "_groupIndex": 0,
  83. "groupIndex": 0,
  84. "_id": ""
  85. },
  86. {
  87. "__type__": "cc.Node",
  88. "_name": "bg",
  89. "_objFlags": 0,
  90. "_parent": {
  91. "__id__": 1
  92. },
  93. "_children": [],
  94. "_active": true,
  95. "_components": [
  96. {
  97. "__id__": 3
  98. },
  99. {
  100. "__id__": 4
  101. }
  102. ],
  103. "_prefab": {
  104. "__id__": 5
  105. },
  106. "_opacity": 100,
  107. "_color": {
  108. "__type__": "cc.Color",
  109. "r": 0,
  110. "g": 0,
  111. "b": 0,
  112. "a": 255
  113. },
  114. "_contentSize": {
  115. "__type__": "cc.Size",
  116. "width": 960,
  117. "height": 1560
  118. },
  119. "_anchorPoint": {
  120. "__type__": "cc.Vec2",
  121. "x": 0.5,
  122. "y": 0.5
  123. },
  124. "_trs": {
  125. "__type__": "TypedArray",
  126. "ctor": "Float64Array",
  127. "array": [
  128. 0,
  129. 0,
  130. 0,
  131. 0,
  132. 0,
  133. 0,
  134. 1,
  135. 1,
  136. 1,
  137. 1
  138. ]
  139. },
  140. "_eulerAngles": {
  141. "__type__": "cc.Vec3",
  142. "x": 0,
  143. "y": 0,
  144. "z": 0
  145. },
  146. "_skewX": 0,
  147. "_skewY": 0,
  148. "_is3DNode": false,
  149. "_groupIndex": 0,
  150. "groupIndex": 0,
  151. "_id": ""
  152. },
  153. {
  154. "__type__": "cc.Sprite",
  155. "_name": "",
  156. "_objFlags": 0,
  157. "node": {
  158. "__id__": 2
  159. },
  160. "_enabled": true,
  161. "_materials": [
  162. {
  163. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  164. }
  165. ],
  166. "_srcBlendFactor": 770,
  167. "_dstBlendFactor": 771,
  168. "_spriteFrame": {
  169. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  170. },
  171. "_type": 0,
  172. "_sizeMode": 0,
  173. "_fillType": 0,
  174. "_fillCenter": {
  175. "__type__": "cc.Vec2",
  176. "x": 0,
  177. "y": 0
  178. },
  179. "_fillStart": 0,
  180. "_fillRange": 0,
  181. "_isTrimmedMode": true,
  182. "_atlas": null,
  183. "_id": ""
  184. },
  185. {
  186. "__type__": "cc.BlockInputEvents",
  187. "_name": "",
  188. "_objFlags": 0,
  189. "node": {
  190. "__id__": 2
  191. },
  192. "_enabled": true,
  193. "_id": ""
  194. },
  195. {
  196. "__type__": "cc.PrefabInfo",
  197. "root": {
  198. "__id__": 1
  199. },
  200. "asset": {
  201. "__id__": 0
  202. },
  203. "fileId": "9aC+afswdDuY7vp1FF2AAP",
  204. "sync": false
  205. },
  206. {
  207. "__type__": "cc.Node",
  208. "_name": "contentNode",
  209. "_objFlags": 0,
  210. "_parent": {
  211. "__id__": 1
  212. },
  213. "_children": [
  214. {
  215. "__id__": 7
  216. },
  217. {
  218. "__id__": 10
  219. },
  220. {
  221. "__id__": 15
  222. },
  223. {
  224. "__id__": 29
  225. },
  226. {
  227. "__id__": 42
  228. }
  229. ],
  230. "_active": true,
  231. "_components": [
  232. {
  233. "__id__": 91
  234. }
  235. ],
  236. "_prefab": {
  237. "__id__": 92
  238. },
  239. "_opacity": 255,
  240. "_color": {
  241. "__type__": "cc.Color",
  242. "r": 255,
  243. "g": 255,
  244. "b": 255,
  245. "a": 255
  246. },
  247. "_contentSize": {
  248. "__type__": "cc.Size",
  249. "width": 0,
  250. "height": 0
  251. },
  252. "_anchorPoint": {
  253. "__type__": "cc.Vec2",
  254. "x": 0.5,
  255. "y": 0.5
  256. },
  257. "_trs": {
  258. "__type__": "TypedArray",
  259. "ctor": "Float64Array",
  260. "array": [
  261. 0,
  262. 0,
  263. 0,
  264. 0,
  265. 0,
  266. 0,
  267. 1,
  268. 1,
  269. 1,
  270. 1
  271. ]
  272. },
  273. "_eulerAngles": {
  274. "__type__": "cc.Vec3",
  275. "x": 0,
  276. "y": 0,
  277. "z": 0
  278. },
  279. "_skewX": 0,
  280. "_skewY": 0,
  281. "_is3DNode": false,
  282. "_groupIndex": 0,
  283. "groupIndex": 0,
  284. "_id": ""
  285. },
  286. {
  287. "__type__": "cc.Node",
  288. "_name": "di",
  289. "_objFlags": 0,
  290. "_parent": {
  291. "__id__": 6
  292. },
  293. "_children": [],
  294. "_active": true,
  295. "_components": [
  296. {
  297. "__id__": 8
  298. }
  299. ],
  300. "_prefab": {
  301. "__id__": 9
  302. },
  303. "_opacity": 255,
  304. "_color": {
  305. "__type__": "cc.Color",
  306. "r": 255,
  307. "g": 255,
  308. "b": 255,
  309. "a": 255
  310. },
  311. "_contentSize": {
  312. "__type__": "cc.Size",
  313. "width": 720,
  314. "height": 1372
  315. },
  316. "_anchorPoint": {
  317. "__type__": "cc.Vec2",
  318. "x": 0.5,
  319. "y": 0.5
  320. },
  321. "_trs": {
  322. "__type__": "TypedArray",
  323. "ctor": "Float64Array",
  324. "array": [
  325. 0,
  326. 0,
  327. 0,
  328. 0,
  329. 0,
  330. 0,
  331. 1,
  332. 1,
  333. 1,
  334. 1
  335. ]
  336. },
  337. "_eulerAngles": {
  338. "__type__": "cc.Vec3",
  339. "x": 0,
  340. "y": 0,
  341. "z": 0
  342. },
  343. "_skewX": 0,
  344. "_skewY": 0,
  345. "_is3DNode": false,
  346. "_groupIndex": 0,
  347. "groupIndex": 0,
  348. "_id": ""
  349. },
  350. {
  351. "__type__": "cc.Sprite",
  352. "_name": "",
  353. "_objFlags": 0,
  354. "node": {
  355. "__id__": 7
  356. },
  357. "_enabled": true,
  358. "_materials": [
  359. {
  360. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  361. }
  362. ],
  363. "_srcBlendFactor": 770,
  364. "_dstBlendFactor": 771,
  365. "_spriteFrame": {
  366. "__uuid__": "c47263da-c57d-49ec-b969-7184991df5b3"
  367. },
  368. "_type": 0,
  369. "_sizeMode": 1,
  370. "_fillType": 0,
  371. "_fillCenter": {
  372. "__type__": "cc.Vec2",
  373. "x": 0,
  374. "y": 0
  375. },
  376. "_fillStart": 0,
  377. "_fillRange": 0,
  378. "_isTrimmedMode": true,
  379. "_atlas": null,
  380. "_id": ""
  381. },
  382. {
  383. "__type__": "cc.PrefabInfo",
  384. "root": {
  385. "__id__": 1
  386. },
  387. "asset": {
  388. "__id__": 0
  389. },
  390. "fileId": "5c+f25DGRMBoXsCWZPR4nS",
  391. "sync": false
  392. },
  393. {
  394. "__type__": "cc.Node",
  395. "_name": "close",
  396. "_objFlags": 0,
  397. "_parent": {
  398. "__id__": 6
  399. },
  400. "_children": [],
  401. "_active": true,
  402. "_components": [
  403. {
  404. "__id__": 11
  405. },
  406. {
  407. "__id__": 12
  408. }
  409. ],
  410. "_prefab": {
  411. "__id__": 14
  412. },
  413. "_opacity": 255,
  414. "_color": {
  415. "__type__": "cc.Color",
  416. "r": 255,
  417. "g": 255,
  418. "b": 255,
  419. "a": 255
  420. },
  421. "_contentSize": {
  422. "__type__": "cc.Size",
  423. "width": 65,
  424. "height": 70
  425. },
  426. "_anchorPoint": {
  427. "__type__": "cc.Vec2",
  428. "x": 0.5,
  429. "y": 0.5
  430. },
  431. "_trs": {
  432. "__type__": "TypedArray",
  433. "ctor": "Float64Array",
  434. "array": [
  435. 325,
  436. 595,
  437. 0,
  438. 0,
  439. 0,
  440. 0,
  441. 1,
  442. 1,
  443. 1,
  444. 1
  445. ]
  446. },
  447. "_eulerAngles": {
  448. "__type__": "cc.Vec3",
  449. "x": 0,
  450. "y": 0,
  451. "z": 0
  452. },
  453. "_skewX": 0,
  454. "_skewY": 0,
  455. "_is3DNode": false,
  456. "_groupIndex": 0,
  457. "groupIndex": 0,
  458. "_id": ""
  459. },
  460. {
  461. "__type__": "cc.Sprite",
  462. "_name": "",
  463. "_objFlags": 0,
  464. "node": {
  465. "__id__": 10
  466. },
  467. "_enabled": true,
  468. "_materials": [
  469. {
  470. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  471. }
  472. ],
  473. "_srcBlendFactor": 770,
  474. "_dstBlendFactor": 771,
  475. "_spriteFrame": {
  476. "__uuid__": "67cbc635-55f5-4c4c-91fa-0da227af0f84"
  477. },
  478. "_type": 0,
  479. "_sizeMode": 1,
  480. "_fillType": 0,
  481. "_fillCenter": {
  482. "__type__": "cc.Vec2",
  483. "x": 0,
  484. "y": 0
  485. },
  486. "_fillStart": 0,
  487. "_fillRange": 0,
  488. "_isTrimmedMode": true,
  489. "_atlas": null,
  490. "_id": ""
  491. },
  492. {
  493. "__type__": "cc.Button",
  494. "_name": "",
  495. "_objFlags": 0,
  496. "node": {
  497. "__id__": 10
  498. },
  499. "_enabled": true,
  500. "_normalMaterial": null,
  501. "_grayMaterial": null,
  502. "duration": 0.1,
  503. "zoomScale": 1.2,
  504. "clickEvents": [
  505. {
  506. "__id__": 13
  507. }
  508. ],
  509. "_N$interactable": true,
  510. "_N$enableAutoGrayEffect": false,
  511. "_N$transition": 0,
  512. "transition": 0,
  513. "_N$normalColor": {
  514. "__type__": "cc.Color",
  515. "r": 255,
  516. "g": 255,
  517. "b": 255,
  518. "a": 255
  519. },
  520. "_N$pressedColor": {
  521. "__type__": "cc.Color",
  522. "r": 211,
  523. "g": 211,
  524. "b": 211,
  525. "a": 255
  526. },
  527. "pressedColor": {
  528. "__type__": "cc.Color",
  529. "r": 211,
  530. "g": 211,
  531. "b": 211,
  532. "a": 255
  533. },
  534. "_N$hoverColor": {
  535. "__type__": "cc.Color",
  536. "r": 255,
  537. "g": 255,
  538. "b": 255,
  539. "a": 255
  540. },
  541. "hoverColor": {
  542. "__type__": "cc.Color",
  543. "r": 255,
  544. "g": 255,
  545. "b": 255,
  546. "a": 255
  547. },
  548. "_N$disabledColor": {
  549. "__type__": "cc.Color",
  550. "r": 124,
  551. "g": 124,
  552. "b": 124,
  553. "a": 255
  554. },
  555. "_N$normalSprite": null,
  556. "_N$pressedSprite": null,
  557. "pressedSprite": null,
  558. "_N$hoverSprite": null,
  559. "hoverSprite": null,
  560. "_N$disabledSprite": null,
  561. "_N$target": null,
  562. "_id": ""
  563. },
  564. {
  565. "__type__": "cc.ClickEvent",
  566. "target": {
  567. "__id__": 1
  568. },
  569. "component": "",
  570. "_componentId": "9f867BlEVlM0ps90rJymqeS",
  571. "handler": "onClose",
  572. "customEventData": ""
  573. },
  574. {
  575. "__type__": "cc.PrefabInfo",
  576. "root": {
  577. "__id__": 1
  578. },
  579. "asset": {
  580. "__id__": 0
  581. },
  582. "fileId": "63g4W5ecJP76oYYL+7Q1SL",
  583. "sync": false
  584. },
  585. {
  586. "__type__": "cc.Node",
  587. "_name": "coin",
  588. "_objFlags": 0,
  589. "_parent": {
  590. "__id__": 6
  591. },
  592. "_children": [
  593. {
  594. "__id__": 16
  595. },
  596. {
  597. "__id__": 22
  598. }
  599. ],
  600. "_active": true,
  601. "_components": [],
  602. "_prefab": {
  603. "__id__": 28
  604. },
  605. "_opacity": 255,
  606. "_color": {
  607. "__type__": "cc.Color",
  608. "r": 255,
  609. "g": 255,
  610. "b": 255,
  611. "a": 255
  612. },
  613. "_contentSize": {
  614. "__type__": "cc.Size",
  615. "width": 209,
  616. "height": 77
  617. },
  618. "_anchorPoint": {
  619. "__type__": "cc.Vec2",
  620. "x": 0.5,
  621. "y": 0.5
  622. },
  623. "_trs": {
  624. "__type__": "TypedArray",
  625. "ctor": "Float64Array",
  626. "array": [
  627. -200,
  628. 430,
  629. 0,
  630. 0,
  631. 0,
  632. 0,
  633. 1,
  634. 1,
  635. 1,
  636. 1
  637. ]
  638. },
  639. "_eulerAngles": {
  640. "__type__": "cc.Vec3",
  641. "x": 0,
  642. "y": 0,
  643. "z": 0
  644. },
  645. "_skewX": 0,
  646. "_skewY": 0,
  647. "_is3DNode": false,
  648. "_groupIndex": 0,
  649. "groupIndex": 0,
  650. "_id": ""
  651. },
  652. {
  653. "__type__": "cc.Node",
  654. "_name": "off",
  655. "_objFlags": 0,
  656. "_parent": {
  657. "__id__": 15
  658. },
  659. "_children": [
  660. {
  661. "__id__": 17
  662. }
  663. ],
  664. "_active": true,
  665. "_components": [
  666. {
  667. "__id__": 20
  668. }
  669. ],
  670. "_prefab": {
  671. "__id__": 21
  672. },
  673. "_opacity": 255,
  674. "_color": {
  675. "__type__": "cc.Color",
  676. "r": 255,
  677. "g": 255,
  678. "b": 255,
  679. "a": 255
  680. },
  681. "_contentSize": {
  682. "__type__": "cc.Size",
  683. "width": 209,
  684. "height": 77
  685. },
  686. "_anchorPoint": {
  687. "__type__": "cc.Vec2",
  688. "x": 0.5,
  689. "y": 0.5
  690. },
  691. "_trs": {
  692. "__type__": "TypedArray",
  693. "ctor": "Float64Array",
  694. "array": [
  695. 0,
  696. 0,
  697. 0,
  698. 0,
  699. 0,
  700. 0,
  701. 1,
  702. 1,
  703. 1,
  704. 1
  705. ]
  706. },
  707. "_eulerAngles": {
  708. "__type__": "cc.Vec3",
  709. "x": 0,
  710. "y": 0,
  711. "z": 0
  712. },
  713. "_skewX": 0,
  714. "_skewY": 0,
  715. "_is3DNode": false,
  716. "_groupIndex": 0,
  717. "groupIndex": 0,
  718. "_id": ""
  719. },
  720. {
  721. "__type__": "cc.Node",
  722. "_name": "lab",
  723. "_objFlags": 0,
  724. "_parent": {
  725. "__id__": 16
  726. },
  727. "_children": [],
  728. "_active": true,
  729. "_components": [
  730. {
  731. "__id__": 18
  732. }
  733. ],
  734. "_prefab": {
  735. "__id__": 19
  736. },
  737. "_opacity": 255,
  738. "_color": {
  739. "__type__": "cc.Color",
  740. "r": 255,
  741. "g": 247,
  742. "b": 207,
  743. "a": 255
  744. },
  745. "_contentSize": {
  746. "__type__": "cc.Size",
  747. "width": 60,
  748. "height": 37.8
  749. },
  750. "_anchorPoint": {
  751. "__type__": "cc.Vec2",
  752. "x": 0.5,
  753. "y": 0.5
  754. },
  755. "_trs": {
  756. "__type__": "TypedArray",
  757. "ctor": "Float64Array",
  758. "array": [
  759. 0,
  760. 7,
  761. 0,
  762. 0,
  763. 0,
  764. 0,
  765. 1,
  766. 1,
  767. 1,
  768. 1
  769. ]
  770. },
  771. "_eulerAngles": {
  772. "__type__": "cc.Vec3",
  773. "x": 0,
  774. "y": 0,
  775. "z": 0
  776. },
  777. "_skewX": 0,
  778. "_skewY": 0,
  779. "_is3DNode": false,
  780. "_groupIndex": 0,
  781. "groupIndex": 0,
  782. "_id": ""
  783. },
  784. {
  785. "__type__": "cc.Label",
  786. "_name": "",
  787. "_objFlags": 0,
  788. "node": {
  789. "__id__": 17
  790. },
  791. "_enabled": true,
  792. "_materials": [
  793. {
  794. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  795. }
  796. ],
  797. "_srcBlendFactor": 770,
  798. "_dstBlendFactor": 771,
  799. "_string": "金币",
  800. "_N$string": "金币",
  801. "_fontSize": 30,
  802. "_lineHeight": 30,
  803. "_enableWrapText": true,
  804. "_N$file": {
  805. "__uuid__": "2f41974a-56ee-45f1-9012-c67f820aa7ec"
  806. },
  807. "_isSystemFontUsed": false,
  808. "_spacingX": 0,
  809. "_batchAsBitmap": false,
  810. "_styleFlags": 0,
  811. "_underlineHeight": 0,
  812. "_N$horizontalAlign": 1,
  813. "_N$verticalAlign": 1,
  814. "_N$fontFamily": "Arial",
  815. "_N$overflow": 0,
  816. "_N$cacheMode": 0,
  817. "_id": ""
  818. },
  819. {
  820. "__type__": "cc.PrefabInfo",
  821. "root": {
  822. "__id__": 1
  823. },
  824. "asset": {
  825. "__id__": 0
  826. },
  827. "fileId": "136pZi4T5BNbnHqrfsKVUd",
  828. "sync": false
  829. },
  830. {
  831. "__type__": "cc.Sprite",
  832. "_name": "",
  833. "_objFlags": 0,
  834. "node": {
  835. "__id__": 16
  836. },
  837. "_enabled": true,
  838. "_materials": [
  839. {
  840. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  841. }
  842. ],
  843. "_srcBlendFactor": 770,
  844. "_dstBlendFactor": 771,
  845. "_spriteFrame": {
  846. "__uuid__": "fbfffb88-7c72-405c-b120-ee6211f5112b"
  847. },
  848. "_type": 0,
  849. "_sizeMode": 1,
  850. "_fillType": 0,
  851. "_fillCenter": {
  852. "__type__": "cc.Vec2",
  853. "x": 0,
  854. "y": 0
  855. },
  856. "_fillStart": 0,
  857. "_fillRange": 0,
  858. "_isTrimmedMode": true,
  859. "_atlas": null,
  860. "_id": ""
  861. },
  862. {
  863. "__type__": "cc.PrefabInfo",
  864. "root": {
  865. "__id__": 1
  866. },
  867. "asset": {
  868. "__id__": 0
  869. },
  870. "fileId": "b31qtbKgZKHo71l4H2HNSp",
  871. "sync": false
  872. },
  873. {
  874. "__type__": "cc.Node",
  875. "_name": "on",
  876. "_objFlags": 0,
  877. "_parent": {
  878. "__id__": 15
  879. },
  880. "_children": [
  881. {
  882. "__id__": 23
  883. }
  884. ],
  885. "_active": true,
  886. "_components": [
  887. {
  888. "__id__": 26
  889. }
  890. ],
  891. "_prefab": {
  892. "__id__": 27
  893. },
  894. "_opacity": 255,
  895. "_color": {
  896. "__type__": "cc.Color",
  897. "r": 255,
  898. "g": 255,
  899. "b": 255,
  900. "a": 255
  901. },
  902. "_contentSize": {
  903. "__type__": "cc.Size",
  904. "width": 209,
  905. "height": 77
  906. },
  907. "_anchorPoint": {
  908. "__type__": "cc.Vec2",
  909. "x": 0.5,
  910. "y": 0.5
  911. },
  912. "_trs": {
  913. "__type__": "TypedArray",
  914. "ctor": "Float64Array",
  915. "array": [
  916. 0,
  917. 0,
  918. 0,
  919. 0,
  920. 0,
  921. 0,
  922. 1,
  923. 1,
  924. 1,
  925. 1
  926. ]
  927. },
  928. "_eulerAngles": {
  929. "__type__": "cc.Vec3",
  930. "x": 0,
  931. "y": 0,
  932. "z": 0
  933. },
  934. "_skewX": 0,
  935. "_skewY": 0,
  936. "_is3DNode": false,
  937. "_groupIndex": 0,
  938. "groupIndex": 0,
  939. "_id": ""
  940. },
  941. {
  942. "__type__": "cc.Node",
  943. "_name": "lab",
  944. "_objFlags": 0,
  945. "_parent": {
  946. "__id__": 22
  947. },
  948. "_children": [],
  949. "_active": true,
  950. "_components": [
  951. {
  952. "__id__": 24
  953. }
  954. ],
  955. "_prefab": {
  956. "__id__": 25
  957. },
  958. "_opacity": 255,
  959. "_color": {
  960. "__type__": "cc.Color",
  961. "r": 80,
  962. "g": 56,
  963. "b": 49,
  964. "a": 255
  965. },
  966. "_contentSize": {
  967. "__type__": "cc.Size",
  968. "width": 60,
  969. "height": 37.8
  970. },
  971. "_anchorPoint": {
  972. "__type__": "cc.Vec2",
  973. "x": 0.5,
  974. "y": 0.5
  975. },
  976. "_trs": {
  977. "__type__": "TypedArray",
  978. "ctor": "Float64Array",
  979. "array": [
  980. 0,
  981. 7,
  982. 0,
  983. 0,
  984. 0,
  985. 0,
  986. 1,
  987. 1,
  988. 1,
  989. 1
  990. ]
  991. },
  992. "_eulerAngles": {
  993. "__type__": "cc.Vec3",
  994. "x": 0,
  995. "y": 0,
  996. "z": 0
  997. },
  998. "_skewX": 0,
  999. "_skewY": 0,
  1000. "_is3DNode": false,
  1001. "_groupIndex": 0,
  1002. "groupIndex": 0,
  1003. "_id": ""
  1004. },
  1005. {
  1006. "__type__": "cc.Label",
  1007. "_name": "",
  1008. "_objFlags": 0,
  1009. "node": {
  1010. "__id__": 23
  1011. },
  1012. "_enabled": true,
  1013. "_materials": [
  1014. {
  1015. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1016. }
  1017. ],
  1018. "_srcBlendFactor": 770,
  1019. "_dstBlendFactor": 771,
  1020. "_string": "金币",
  1021. "_N$string": "金币",
  1022. "_fontSize": 30,
  1023. "_lineHeight": 30,
  1024. "_enableWrapText": true,
  1025. "_N$file": {
  1026. "__uuid__": "2f41974a-56ee-45f1-9012-c67f820aa7ec"
  1027. },
  1028. "_isSystemFontUsed": false,
  1029. "_spacingX": 0,
  1030. "_batchAsBitmap": false,
  1031. "_styleFlags": 0,
  1032. "_underlineHeight": 0,
  1033. "_N$horizontalAlign": 1,
  1034. "_N$verticalAlign": 1,
  1035. "_N$fontFamily": "Arial",
  1036. "_N$overflow": 0,
  1037. "_N$cacheMode": 0,
  1038. "_id": ""
  1039. },
  1040. {
  1041. "__type__": "cc.PrefabInfo",
  1042. "root": {
  1043. "__id__": 1
  1044. },
  1045. "asset": {
  1046. "__id__": 0
  1047. },
  1048. "fileId": "5d+SRDzq1IdrzI3/c48wiM",
  1049. "sync": false
  1050. },
  1051. {
  1052. "__type__": "cc.Sprite",
  1053. "_name": "",
  1054. "_objFlags": 0,
  1055. "node": {
  1056. "__id__": 22
  1057. },
  1058. "_enabled": true,
  1059. "_materials": [
  1060. {
  1061. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1062. }
  1063. ],
  1064. "_srcBlendFactor": 770,
  1065. "_dstBlendFactor": 771,
  1066. "_spriteFrame": {
  1067. "__uuid__": "29addb34-b7bc-4de7-bf74-969064a12edb"
  1068. },
  1069. "_type": 0,
  1070. "_sizeMode": 1,
  1071. "_fillType": 0,
  1072. "_fillCenter": {
  1073. "__type__": "cc.Vec2",
  1074. "x": 0,
  1075. "y": 0
  1076. },
  1077. "_fillStart": 0,
  1078. "_fillRange": 0,
  1079. "_isTrimmedMode": true,
  1080. "_atlas": null,
  1081. "_id": ""
  1082. },
  1083. {
  1084. "__type__": "cc.PrefabInfo",
  1085. "root": {
  1086. "__id__": 1
  1087. },
  1088. "asset": {
  1089. "__id__": 0
  1090. },
  1091. "fileId": "80RayUujdHzJhiLC04IJ+v",
  1092. "sync": false
  1093. },
  1094. {
  1095. "__type__": "cc.PrefabInfo",
  1096. "root": {
  1097. "__id__": 1
  1098. },
  1099. "asset": {
  1100. "__id__": 0
  1101. },
  1102. "fileId": "2cSTbmOLxKt4NySqlL7IYD",
  1103. "sync": false
  1104. },
  1105. {
  1106. "__type__": "cc.Node",
  1107. "_name": "help",
  1108. "_objFlags": 0,
  1109. "_parent": {
  1110. "__id__": 6
  1111. },
  1112. "_children": [
  1113. {
  1114. "__id__": 30
  1115. }
  1116. ],
  1117. "_active": true,
  1118. "_components": [],
  1119. "_prefab": {
  1120. "__id__": 41
  1121. },
  1122. "_opacity": 255,
  1123. "_color": {
  1124. "__type__": "cc.Color",
  1125. "r": 255,
  1126. "g": 255,
  1127. "b": 255,
  1128. "a": 255
  1129. },
  1130. "_contentSize": {
  1131. "__type__": "cc.Size",
  1132. "width": 135,
  1133. "height": 40
  1134. },
  1135. "_anchorPoint": {
  1136. "__type__": "cc.Vec2",
  1137. "x": 0.5,
  1138. "y": 0.5
  1139. },
  1140. "_trs": {
  1141. "__type__": "TypedArray",
  1142. "ctor": "Float64Array",
  1143. "array": [
  1144. 224.784,
  1145. 433,
  1146. 0,
  1147. 0,
  1148. 0,
  1149. 0,
  1150. 1,
  1151. 1,
  1152. 1,
  1153. 1
  1154. ]
  1155. },
  1156. "_eulerAngles": {
  1157. "__type__": "cc.Vec3",
  1158. "x": 0,
  1159. "y": 0,
  1160. "z": 0
  1161. },
  1162. "_skewX": 0,
  1163. "_skewY": 0,
  1164. "_is3DNode": false,
  1165. "_groupIndex": 0,
  1166. "groupIndex": 0,
  1167. "_id": ""
  1168. },
  1169. {
  1170. "__type__": "cc.Node",
  1171. "_name": "wen",
  1172. "_objFlags": 0,
  1173. "_parent": {
  1174. "__id__": 29
  1175. },
  1176. "_children": [
  1177. {
  1178. "__id__": 31
  1179. },
  1180. {
  1181. "__id__": 35
  1182. }
  1183. ],
  1184. "_active": true,
  1185. "_components": [
  1186. {
  1187. "__id__": 39
  1188. }
  1189. ],
  1190. "_prefab": {
  1191. "__id__": 40
  1192. },
  1193. "_opacity": 255,
  1194. "_color": {
  1195. "__type__": "cc.Color",
  1196. "r": 255,
  1197. "g": 255,
  1198. "b": 255,
  1199. "a": 255
  1200. },
  1201. "_contentSize": {
  1202. "__type__": "cc.Size",
  1203. "width": 33,
  1204. "height": 33
  1205. },
  1206. "_anchorPoint": {
  1207. "__type__": "cc.Vec2",
  1208. "x": 0.5,
  1209. "y": 0.5
  1210. },
  1211. "_trs": {
  1212. "__type__": "TypedArray",
  1213. "ctor": "Float64Array",
  1214. "array": [
  1215. -50.784,
  1216. 0,
  1217. 0,
  1218. 0,
  1219. 0,
  1220. 0,
  1221. 1,
  1222. 1,
  1223. 1,
  1224. 1
  1225. ]
  1226. },
  1227. "_eulerAngles": {
  1228. "__type__": "cc.Vec3",
  1229. "x": 0,
  1230. "y": 0,
  1231. "z": 0
  1232. },
  1233. "_skewX": 0,
  1234. "_skewY": 0,
  1235. "_is3DNode": false,
  1236. "_groupIndex": 0,
  1237. "groupIndex": 0,
  1238. "_id": ""
  1239. },
  1240. {
  1241. "__type__": "cc.Node",
  1242. "_name": "New Label",
  1243. "_objFlags": 0,
  1244. "_parent": {
  1245. "__id__": 30
  1246. },
  1247. "_children": [],
  1248. "_active": true,
  1249. "_components": [
  1250. {
  1251. "__id__": 32
  1252. },
  1253. {
  1254. "__id__": 33
  1255. }
  1256. ],
  1257. "_prefab": {
  1258. "__id__": 34
  1259. },
  1260. "_opacity": 255,
  1261. "_color": {
  1262. "__type__": "cc.Color",
  1263. "r": 255,
  1264. "g": 255,
  1265. "b": 255,
  1266. "a": 255
  1267. },
  1268. "_contentSize": {
  1269. "__type__": "cc.Size",
  1270. "width": 100,
  1271. "height": 34.239999999999995
  1272. },
  1273. "_anchorPoint": {
  1274. "__type__": "cc.Vec2",
  1275. "x": 0.5,
  1276. "y": 0.5
  1277. },
  1278. "_trs": {
  1279. "__type__": "TypedArray",
  1280. "ctor": "Float64Array",
  1281. "array": [
  1282. 68.516,
  1283. 2.749,
  1284. 0,
  1285. 0,
  1286. 0,
  1287. 0,
  1288. 1,
  1289. 1,
  1290. 1,
  1291. 1
  1292. ]
  1293. },
  1294. "_eulerAngles": {
  1295. "__type__": "cc.Vec3",
  1296. "x": 0,
  1297. "y": 0,
  1298. "z": 0
  1299. },
  1300. "_skewX": 0,
  1301. "_skewY": 0,
  1302. "_is3DNode": false,
  1303. "_groupIndex": 0,
  1304. "groupIndex": 0,
  1305. "_id": ""
  1306. },
  1307. {
  1308. "__type__": "cc.Label",
  1309. "_name": "",
  1310. "_objFlags": 0,
  1311. "node": {
  1312. "__id__": 31
  1313. },
  1314. "_enabled": true,
  1315. "_materials": [
  1316. {
  1317. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1318. }
  1319. ],
  1320. "_srcBlendFactor": 770,
  1321. "_dstBlendFactor": 771,
  1322. "_string": "兑换帮助",
  1323. "_N$string": "兑换帮助",
  1324. "_fontSize": 24,
  1325. "_lineHeight": 24,
  1326. "_enableWrapText": true,
  1327. "_N$file": {
  1328. "__uuid__": "2f41974a-56ee-45f1-9012-c67f820aa7ec"
  1329. },
  1330. "_isSystemFontUsed": false,
  1331. "_spacingX": 0,
  1332. "_batchAsBitmap": false,
  1333. "_styleFlags": 0,
  1334. "_underlineHeight": 0,
  1335. "_N$horizontalAlign": 1,
  1336. "_N$verticalAlign": 1,
  1337. "_N$fontFamily": "Arial",
  1338. "_N$overflow": 0,
  1339. "_N$cacheMode": 0,
  1340. "_id": ""
  1341. },
  1342. {
  1343. "__type__": "cc.LabelOutline",
  1344. "_name": "",
  1345. "_objFlags": 0,
  1346. "node": {
  1347. "__id__": 31
  1348. },
  1349. "_enabled": true,
  1350. "_color": {
  1351. "__type__": "cc.Color",
  1352. "r": 55,
  1353. "g": 34,
  1354. "b": 41,
  1355. "a": 255
  1356. },
  1357. "_width": 2,
  1358. "_id": ""
  1359. },
  1360. {
  1361. "__type__": "cc.PrefabInfo",
  1362. "root": {
  1363. "__id__": 1
  1364. },
  1365. "asset": {
  1366. "__id__": 0
  1367. },
  1368. "fileId": "faDt4OIMFNe4xD+K5QoGOp",
  1369. "sync": false
  1370. },
  1371. {
  1372. "__type__": "cc.Node",
  1373. "_name": "New Label",
  1374. "_objFlags": 0,
  1375. "_parent": {
  1376. "__id__": 30
  1377. },
  1378. "_children": [],
  1379. "_active": true,
  1380. "_components": [
  1381. {
  1382. "__id__": 36
  1383. },
  1384. {
  1385. "__id__": 37
  1386. }
  1387. ],
  1388. "_prefab": {
  1389. "__id__": 38
  1390. },
  1391. "_opacity": 255,
  1392. "_color": {
  1393. "__type__": "cc.Color",
  1394. "r": 255,
  1395. "g": 255,
  1396. "b": 255,
  1397. "a": 255
  1398. },
  1399. "_contentSize": {
  1400. "__type__": "cc.Size",
  1401. "width": 100,
  1402. "height": 34.239999999999995
  1403. },
  1404. "_anchorPoint": {
  1405. "__type__": "cc.Vec2",
  1406. "x": 0.5,
  1407. "y": 0.5
  1408. },
  1409. "_trs": {
  1410. "__type__": "TypedArray",
  1411. "ctor": "Float64Array",
  1412. "array": [
  1413. 68.516,
  1414. -12.568,
  1415. 0,
  1416. 0,
  1417. 0,
  1418. 0,
  1419. 1,
  1420. 1,
  1421. 1,
  1422. 1
  1423. ]
  1424. },
  1425. "_eulerAngles": {
  1426. "__type__": "cc.Vec3",
  1427. "x": 0,
  1428. "y": 0,
  1429. "z": 0
  1430. },
  1431. "_skewX": 0,
  1432. "_skewY": 0,
  1433. "_is3DNode": false,
  1434. "_groupIndex": 0,
  1435. "groupIndex": 0,
  1436. "_id": ""
  1437. },
  1438. {
  1439. "__type__": "cc.Label",
  1440. "_name": "",
  1441. "_objFlags": 0,
  1442. "node": {
  1443. "__id__": 35
  1444. },
  1445. "_enabled": true,
  1446. "_materials": [
  1447. {
  1448. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1449. }
  1450. ],
  1451. "_srcBlendFactor": 770,
  1452. "_dstBlendFactor": 771,
  1453. "_string": "————",
  1454. "_N$string": "————",
  1455. "_fontSize": 24,
  1456. "_lineHeight": 24,
  1457. "_enableWrapText": true,
  1458. "_N$file": {
  1459. "__uuid__": "2f41974a-56ee-45f1-9012-c67f820aa7ec"
  1460. },
  1461. "_isSystemFontUsed": false,
  1462. "_spacingX": 0,
  1463. "_batchAsBitmap": false,
  1464. "_styleFlags": 0,
  1465. "_underlineHeight": 0,
  1466. "_N$horizontalAlign": 1,
  1467. "_N$verticalAlign": 1,
  1468. "_N$fontFamily": "Arial",
  1469. "_N$overflow": 0,
  1470. "_N$cacheMode": 0,
  1471. "_id": ""
  1472. },
  1473. {
  1474. "__type__": "cc.LabelOutline",
  1475. "_name": "",
  1476. "_objFlags": 0,
  1477. "node": {
  1478. "__id__": 35
  1479. },
  1480. "_enabled": true,
  1481. "_color": {
  1482. "__type__": "cc.Color",
  1483. "r": 55,
  1484. "g": 34,
  1485. "b": 41,
  1486. "a": 255
  1487. },
  1488. "_width": 2,
  1489. "_id": ""
  1490. },
  1491. {
  1492. "__type__": "cc.PrefabInfo",
  1493. "root": {
  1494. "__id__": 1
  1495. },
  1496. "asset": {
  1497. "__id__": 0
  1498. },
  1499. "fileId": "4d1m2dHL9LzaDyrSfU5mGe",
  1500. "sync": false
  1501. },
  1502. {
  1503. "__type__": "cc.Sprite",
  1504. "_name": "",
  1505. "_objFlags": 0,
  1506. "node": {
  1507. "__id__": 30
  1508. },
  1509. "_enabled": true,
  1510. "_materials": [
  1511. {
  1512. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1513. }
  1514. ],
  1515. "_srcBlendFactor": 770,
  1516. "_dstBlendFactor": 771,
  1517. "_spriteFrame": {
  1518. "__uuid__": "ad2ad173-4f21-4baa-a3fd-002695083d20"
  1519. },
  1520. "_type": 0,
  1521. "_sizeMode": 1,
  1522. "_fillType": 0,
  1523. "_fillCenter": {
  1524. "__type__": "cc.Vec2",
  1525. "x": 0,
  1526. "y": 0
  1527. },
  1528. "_fillStart": 0,
  1529. "_fillRange": 0,
  1530. "_isTrimmedMode": true,
  1531. "_atlas": null,
  1532. "_id": ""
  1533. },
  1534. {
  1535. "__type__": "cc.PrefabInfo",
  1536. "root": {
  1537. "__id__": 1
  1538. },
  1539. "asset": {
  1540. "__id__": 0
  1541. },
  1542. "fileId": "84EGWzH7pB3bHBpI2w1Ccn",
  1543. "sync": false
  1544. },
  1545. {
  1546. "__type__": "cc.PrefabInfo",
  1547. "root": {
  1548. "__id__": 1
  1549. },
  1550. "asset": {
  1551. "__id__": 0
  1552. },
  1553. "fileId": "f4icd+lXNGkKu3+FW6tJnM",
  1554. "sync": false
  1555. },
  1556. {
  1557. "__type__": "cc.Node",
  1558. "_name": "scrollView",
  1559. "_objFlags": 0,
  1560. "_parent": {
  1561. "__id__": 6
  1562. },
  1563. "_children": [
  1564. {
  1565. "__id__": 43
  1566. }
  1567. ],
  1568. "_active": true,
  1569. "_components": [
  1570. {
  1571. "__id__": 88
  1572. },
  1573. {
  1574. "__id__": 89
  1575. }
  1576. ],
  1577. "_prefab": {
  1578. "__id__": 90
  1579. },
  1580. "_opacity": 255,
  1581. "_color": {
  1582. "__type__": "cc.Color",
  1583. "r": 255,
  1584. "g": 255,
  1585. "b": 255,
  1586. "a": 255
  1587. },
  1588. "_contentSize": {
  1589. "__type__": "cc.Size",
  1590. "width": 660,
  1591. "height": 930
  1592. },
  1593. "_anchorPoint": {
  1594. "__type__": "cc.Vec2",
  1595. "x": 0.5,
  1596. "y": 1
  1597. },
  1598. "_trs": {
  1599. "__type__": "TypedArray",
  1600. "ctor": "Float64Array",
  1601. "array": [
  1602. 0,
  1603. 370,
  1604. 0,
  1605. 0,
  1606. 0,
  1607. 0,
  1608. 1,
  1609. 1,
  1610. 1,
  1611. 1
  1612. ]
  1613. },
  1614. "_eulerAngles": {
  1615. "__type__": "cc.Vec3",
  1616. "x": 0,
  1617. "y": 0,
  1618. "z": 0
  1619. },
  1620. "_skewX": 0,
  1621. "_skewY": 0,
  1622. "_is3DNode": false,
  1623. "_groupIndex": 0,
  1624. "groupIndex": 0,
  1625. "_id": ""
  1626. },
  1627. {
  1628. "__type__": "cc.Node",
  1629. "_name": "view",
  1630. "_objFlags": 0,
  1631. "_parent": {
  1632. "__id__": 42
  1633. },
  1634. "_children": [
  1635. {
  1636. "__id__": 44
  1637. },
  1638. {
  1639. "__id__": 83
  1640. }
  1641. ],
  1642. "_active": true,
  1643. "_components": [
  1644. {
  1645. "__id__": 86
  1646. }
  1647. ],
  1648. "_prefab": {
  1649. "__id__": 87
  1650. },
  1651. "_opacity": 255,
  1652. "_color": {
  1653. "__type__": "cc.Color",
  1654. "r": 255,
  1655. "g": 255,
  1656. "b": 255,
  1657. "a": 255
  1658. },
  1659. "_contentSize": {
  1660. "__type__": "cc.Size",
  1661. "width": 660,
  1662. "height": 930
  1663. },
  1664. "_anchorPoint": {
  1665. "__type__": "cc.Vec2",
  1666. "x": 0.5,
  1667. "y": 1
  1668. },
  1669. "_trs": {
  1670. "__type__": "TypedArray",
  1671. "ctor": "Float64Array",
  1672. "array": [
  1673. 0,
  1674. 0,
  1675. 0,
  1676. 0,
  1677. 0,
  1678. 0,
  1679. 1,
  1680. 1,
  1681. 1,
  1682. 1
  1683. ]
  1684. },
  1685. "_eulerAngles": {
  1686. "__type__": "cc.Vec3",
  1687. "x": 0,
  1688. "y": 0,
  1689. "z": 0
  1690. },
  1691. "_skewX": 0,
  1692. "_skewY": 0,
  1693. "_is3DNode": false,
  1694. "_groupIndex": 0,
  1695. "groupIndex": 0,
  1696. "_id": ""
  1697. },
  1698. {
  1699. "__type__": "cc.Node",
  1700. "_name": "itemPrefab",
  1701. "_objFlags": 0,
  1702. "_parent": {
  1703. "__id__": 43
  1704. },
  1705. "_children": [
  1706. {
  1707. "__id__": 45
  1708. },
  1709. {
  1710. "__id__": 48
  1711. },
  1712. {
  1713. "__id__": 51
  1714. },
  1715. {
  1716. "__id__": 54
  1717. },
  1718. {
  1719. "__id__": 58
  1720. },
  1721. {
  1722. "__id__": 72
  1723. }
  1724. ],
  1725. "_active": false,
  1726. "_components": [
  1727. {
  1728. "__id__": 81
  1729. }
  1730. ],
  1731. "_prefab": {
  1732. "__id__": 82
  1733. },
  1734. "_opacity": 255,
  1735. "_color": {
  1736. "__type__": "cc.Color",
  1737. "r": 255,
  1738. "g": 255,
  1739. "b": 255,
  1740. "a": 255
  1741. },
  1742. "_contentSize": {
  1743. "__type__": "cc.Size",
  1744. "width": 208,
  1745. "height": 315
  1746. },
  1747. "_anchorPoint": {
  1748. "__type__": "cc.Vec2",
  1749. "x": 0.5,
  1750. "y": 0.5
  1751. },
  1752. "_trs": {
  1753. "__type__": "TypedArray",
  1754. "ctor": "Float64Array",
  1755. "array": [
  1756. -195.76,
  1757. -174.341,
  1758. 0,
  1759. 0,
  1760. 0,
  1761. 0,
  1762. 1,
  1763. 1,
  1764. 1,
  1765. 1
  1766. ]
  1767. },
  1768. "_eulerAngles": {
  1769. "__type__": "cc.Vec3",
  1770. "x": 0,
  1771. "y": 0,
  1772. "z": 0
  1773. },
  1774. "_skewX": 0,
  1775. "_skewY": 0,
  1776. "_is3DNode": false,
  1777. "_groupIndex": 0,
  1778. "groupIndex": 0,
  1779. "_id": ""
  1780. },
  1781. {
  1782. "__type__": "cc.Node",
  1783. "_name": "di",
  1784. "_objFlags": 0,
  1785. "_parent": {
  1786. "__id__": 44
  1787. },
  1788. "_children": [],
  1789. "_active": true,
  1790. "_components": [
  1791. {
  1792. "__id__": 46
  1793. }
  1794. ],
  1795. "_prefab": {
  1796. "__id__": 47
  1797. },
  1798. "_opacity": 255,
  1799. "_color": {
  1800. "__type__": "cc.Color",
  1801. "r": 255,
  1802. "g": 255,
  1803. "b": 255,
  1804. "a": 255
  1805. },
  1806. "_contentSize": {
  1807. "__type__": "cc.Size",
  1808. "width": 208,
  1809. "height": 215
  1810. },
  1811. "_anchorPoint": {
  1812. "__type__": "cc.Vec2",
  1813. "x": 0.5,
  1814. "y": 0.5
  1815. },
  1816. "_trs": {
  1817. "__type__": "TypedArray",
  1818. "ctor": "Float64Array",
  1819. "array": [
  1820. 0,
  1821. 43.257,
  1822. 0,
  1823. 0,
  1824. 0,
  1825. 0,
  1826. 1,
  1827. 1,
  1828. 1,
  1829. 1
  1830. ]
  1831. },
  1832. "_eulerAngles": {
  1833. "__type__": "cc.Vec3",
  1834. "x": 0,
  1835. "y": 0,
  1836. "z": 0
  1837. },
  1838. "_skewX": 0,
  1839. "_skewY": 0,
  1840. "_is3DNode": false,
  1841. "_groupIndex": 0,
  1842. "groupIndex": 0,
  1843. "_id": ""
  1844. },
  1845. {
  1846. "__type__": "cc.Sprite",
  1847. "_name": "",
  1848. "_objFlags": 0,
  1849. "node": {
  1850. "__id__": 45
  1851. },
  1852. "_enabled": true,
  1853. "_materials": [
  1854. {
  1855. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1856. }
  1857. ],
  1858. "_srcBlendFactor": 770,
  1859. "_dstBlendFactor": 771,
  1860. "_spriteFrame": {
  1861. "__uuid__": "9c680f27-da50-46b8-a5db-812ad4cf3f8a"
  1862. },
  1863. "_type": 0,
  1864. "_sizeMode": 1,
  1865. "_fillType": 0,
  1866. "_fillCenter": {
  1867. "__type__": "cc.Vec2",
  1868. "x": 0,
  1869. "y": 0
  1870. },
  1871. "_fillStart": 0,
  1872. "_fillRange": 0,
  1873. "_isTrimmedMode": true,
  1874. "_atlas": null,
  1875. "_id": ""
  1876. },
  1877. {
  1878. "__type__": "cc.PrefabInfo",
  1879. "root": {
  1880. "__id__": 1
  1881. },
  1882. "asset": {
  1883. "__id__": 0
  1884. },
  1885. "fileId": "3dnU+IoHlBLKzf8FNaZhbR",
  1886. "sync": false
  1887. },
  1888. {
  1889. "__type__": "cc.Node",
  1890. "_name": "labCoin",
  1891. "_objFlags": 0,
  1892. "_parent": {
  1893. "__id__": 44
  1894. },
  1895. "_children": [],
  1896. "_active": true,
  1897. "_components": [
  1898. {
  1899. "__id__": 49
  1900. }
  1901. ],
  1902. "_prefab": {
  1903. "__id__": 50
  1904. },
  1905. "_opacity": 255,
  1906. "_color": {
  1907. "__type__": "cc.Color",
  1908. "r": 134,
  1909. "g": 82,
  1910. "b": 83,
  1911. "a": 255
  1912. },
  1913. "_contentSize": {
  1914. "__type__": "cc.Size",
  1915. "width": 143.86,
  1916. "height": 32.76
  1917. },
  1918. "_anchorPoint": {
  1919. "__type__": "cc.Vec2",
  1920. "x": 0.5,
  1921. "y": 0.5
  1922. },
  1923. "_trs": {
  1924. "__type__": "TypedArray",
  1925. "ctor": "Float64Array",
  1926. "array": [
  1927. 0,
  1928. 119.257,
  1929. 0,
  1930. 0,
  1931. 0,
  1932. 0,
  1933. 1,
  1934. 1,
  1935. 1,
  1936. 1
  1937. ]
  1938. },
  1939. "_eulerAngles": {
  1940. "__type__": "cc.Vec3",
  1941. "x": 0,
  1942. "y": 0,
  1943. "z": 0
  1944. },
  1945. "_skewX": 0,
  1946. "_skewY": 0,
  1947. "_is3DNode": false,
  1948. "_groupIndex": 0,
  1949. "groupIndex": 0,
  1950. "_id": ""
  1951. },
  1952. {
  1953. "__type__": "cc.Label",
  1954. "_name": "",
  1955. "_objFlags": 0,
  1956. "node": {
  1957. "__id__": 48
  1958. },
  1959. "_enabled": true,
  1960. "_materials": [
  1961. {
  1962. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1963. }
  1964. ],
  1965. "_srcBlendFactor": 770,
  1966. "_dstBlendFactor": 771,
  1967. "_string": "276000金币",
  1968. "_N$string": "276000金币",
  1969. "_fontSize": 26,
  1970. "_lineHeight": 26,
  1971. "_enableWrapText": true,
  1972. "_N$file": {
  1973. "__uuid__": "2f41974a-56ee-45f1-9012-c67f820aa7ec"
  1974. },
  1975. "_isSystemFontUsed": false,
  1976. "_spacingX": 0,
  1977. "_batchAsBitmap": false,
  1978. "_styleFlags": 0,
  1979. "_underlineHeight": 0,
  1980. "_N$horizontalAlign": 1,
  1981. "_N$verticalAlign": 1,
  1982. "_N$fontFamily": "Arial",
  1983. "_N$overflow": 0,
  1984. "_N$cacheMode": 0,
  1985. "_id": ""
  1986. },
  1987. {
  1988. "__type__": "cc.PrefabInfo",
  1989. "root": {
  1990. "__id__": 1
  1991. },
  1992. "asset": {
  1993. "__id__": 0
  1994. },
  1995. "fileId": "f7U22rbkdA6bsKQz9gI8Qx",
  1996. "sync": false
  1997. },
  1998. {
  1999. "__type__": "cc.Node",
  2000. "_name": "sp",
  2001. "_objFlags": 0,
  2002. "_parent": {
  2003. "__id__": 44
  2004. },
  2005. "_children": [],
  2006. "_active": true,
  2007. "_components": [
  2008. {
  2009. "__id__": 52
  2010. }
  2011. ],
  2012. "_prefab": {
  2013. "__id__": 53
  2014. },
  2015. "_opacity": 255,
  2016. "_color": {
  2017. "__type__": "cc.Color",
  2018. "r": 255,
  2019. "g": 255,
  2020. "b": 255,
  2021. "a": 255
  2022. },
  2023. "_contentSize": {
  2024. "__type__": "cc.Size",
  2025. "width": 90,
  2026. "height": 78
  2027. },
  2028. "_anchorPoint": {
  2029. "__type__": "cc.Vec2",
  2030. "x": 0.5,
  2031. "y": 0.5
  2032. },
  2033. "_trs": {
  2034. "__type__": "TypedArray",
  2035. "ctor": "Float64Array",
  2036. "array": [
  2037. 0,
  2038. 63.257,
  2039. 0,
  2040. 0,
  2041. 0,
  2042. 0,
  2043. 1,
  2044. 1,
  2045. 1,
  2046. 1
  2047. ]
  2048. },
  2049. "_eulerAngles": {
  2050. "__type__": "cc.Vec3",
  2051. "x": 0,
  2052. "y": 0,
  2053. "z": 0
  2054. },
  2055. "_skewX": 0,
  2056. "_skewY": 0,
  2057. "_is3DNode": false,
  2058. "_groupIndex": 0,
  2059. "groupIndex": 0,
  2060. "_id": ""
  2061. },
  2062. {
  2063. "__type__": "cc.Sprite",
  2064. "_name": "",
  2065. "_objFlags": 0,
  2066. "node": {
  2067. "__id__": 51
  2068. },
  2069. "_enabled": true,
  2070. "_materials": [
  2071. {
  2072. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2073. }
  2074. ],
  2075. "_srcBlendFactor": 770,
  2076. "_dstBlendFactor": 771,
  2077. "_spriteFrame": {
  2078. "__uuid__": "be45108d-6cf5-43d3-86fa-61c4848c7445"
  2079. },
  2080. "_type": 0,
  2081. "_sizeMode": 1,
  2082. "_fillType": 0,
  2083. "_fillCenter": {
  2084. "__type__": "cc.Vec2",
  2085. "x": 0,
  2086. "y": 0
  2087. },
  2088. "_fillStart": 0,
  2089. "_fillRange": 0,
  2090. "_isTrimmedMode": true,
  2091. "_atlas": {
  2092. "__uuid__": "7f4a22b1-b5bf-44cc-94f6-343144483694"
  2093. },
  2094. "_id": ""
  2095. },
  2096. {
  2097. "__type__": "cc.PrefabInfo",
  2098. "root": {
  2099. "__id__": 1
  2100. },
  2101. "asset": {
  2102. "__id__": 0
  2103. },
  2104. "fileId": "7duq1jvvlKnbVOAHs8Q5Lf",
  2105. "sync": false
  2106. },
  2107. {
  2108. "__type__": "cc.Node",
  2109. "_name": "labCi",
  2110. "_objFlags": 0,
  2111. "_parent": {
  2112. "__id__": 44
  2113. },
  2114. "_children": [],
  2115. "_active": true,
  2116. "_components": [
  2117. {
  2118. "__id__": 55
  2119. },
  2120. {
  2121. "__id__": 56
  2122. }
  2123. ],
  2124. "_prefab": {
  2125. "__id__": 57
  2126. },
  2127. "_opacity": 255,
  2128. "_color": {
  2129. "__type__": "cc.Color",
  2130. "r": 253,
  2131. "g": 240,
  2132. "b": 234,
  2133. "a": 255
  2134. },
  2135. "_contentSize": {
  2136. "__type__": "cc.Size",
  2137. "width": 135.41,
  2138. "height": 29.2
  2139. },
  2140. "_anchorPoint": {
  2141. "__type__": "cc.Vec2",
  2142. "x": 0.5,
  2143. "y": 0.5
  2144. },
  2145. "_trs": {
  2146. "__type__": "TypedArray",
  2147. "ctor": "Float64Array",
  2148. "array": [
  2149. 0,
  2150. -7.743,
  2151. 0,
  2152. 0,
  2153. 0,
  2154. 0,
  2155. 1,
  2156. 1,
  2157. 1,
  2158. 1
  2159. ]
  2160. },
  2161. "_eulerAngles": {
  2162. "__type__": "cc.Vec3",
  2163. "x": 0,
  2164. "y": 0,
  2165. "z": 0
  2166. },
  2167. "_skewX": 0,
  2168. "_skewY": 0,
  2169. "_is3DNode": false,
  2170. "_groupIndex": 0,
  2171. "groupIndex": 0,
  2172. "_id": ""
  2173. },
  2174. {
  2175. "__type__": "cc.Label",
  2176. "_name": "",
  2177. "_objFlags": 0,
  2178. "node": {
  2179. "__id__": 54
  2180. },
  2181. "_enabled": true,
  2182. "_materials": [
  2183. {
  2184. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2185. }
  2186. ],
  2187. "_srcBlendFactor": 770,
  2188. "_dstBlendFactor": 771,
  2189. "_string": "每日可兑换2次",
  2190. "_N$string": "每日可兑换2次",
  2191. "_fontSize": 20,
  2192. "_lineHeight": 20,
  2193. "_enableWrapText": true,
  2194. "_N$file": {
  2195. "__uuid__": "2f41974a-56ee-45f1-9012-c67f820aa7ec"
  2196. },
  2197. "_isSystemFontUsed": false,
  2198. "_spacingX": 0,
  2199. "_batchAsBitmap": false,
  2200. "_styleFlags": 0,
  2201. "_underlineHeight": 0,
  2202. "_N$horizontalAlign": 1,
  2203. "_N$verticalAlign": 1,
  2204. "_N$fontFamily": "Arial",
  2205. "_N$overflow": 0,
  2206. "_N$cacheMode": 0,
  2207. "_id": ""
  2208. },
  2209. {
  2210. "__type__": "cc.LabelOutline",
  2211. "_name": "",
  2212. "_objFlags": 0,
  2213. "node": {
  2214. "__id__": 54
  2215. },
  2216. "_enabled": true,
  2217. "_color": {
  2218. "__type__": "cc.Color",
  2219. "r": 102,
  2220. "g": 58,
  2221. "b": 60,
  2222. "a": 255
  2223. },
  2224. "_width": 2,
  2225. "_id": ""
  2226. },
  2227. {
  2228. "__type__": "cc.PrefabInfo",
  2229. "root": {
  2230. "__id__": 1
  2231. },
  2232. "asset": {
  2233. "__id__": 0
  2234. },
  2235. "fileId": "89kNegJr9CEIsEHgDIyErU",
  2236. "sync": false
  2237. },
  2238. {
  2239. "__type__": "cc.Node",
  2240. "_name": "layout",
  2241. "_objFlags": 0,
  2242. "_parent": {
  2243. "__id__": 44
  2244. },
  2245. "_children": [
  2246. {
  2247. "__id__": 59
  2248. },
  2249. {
  2250. "__id__": 63
  2251. },
  2252. {
  2253. "__id__": 66
  2254. }
  2255. ],
  2256. "_active": true,
  2257. "_components": [
  2258. {
  2259. "__id__": 70
  2260. }
  2261. ],
  2262. "_prefab": {
  2263. "__id__": 71
  2264. },
  2265. "_opacity": 255,
  2266. "_color": {
  2267. "__type__": "cc.Color",
  2268. "r": 255,
  2269. "g": 255,
  2270. "b": 255,
  2271. "a": 255
  2272. },
  2273. "_contentSize": {
  2274. "__type__": "cc.Size",
  2275. "width": 166.37,
  2276. "height": 25.2
  2277. },
  2278. "_anchorPoint": {
  2279. "__type__": "cc.Vec2",
  2280. "x": 0.5,
  2281. "y": 0.5
  2282. },
  2283. "_trs": {
  2284. "__type__": "TypedArray",
  2285. "ctor": "Float64Array",
  2286. "array": [
  2287. 0,
  2288. -66.743,
  2289. 0,
  2290. 0,
  2291. 0,
  2292. 0,
  2293. 1,
  2294. 1,
  2295. 1,
  2296. 1
  2297. ]
  2298. },
  2299. "_eulerAngles": {
  2300. "__type__": "cc.Vec3",
  2301. "x": 0,
  2302. "y": 0,
  2303. "z": 0
  2304. },
  2305. "_skewX": 0,
  2306. "_skewY": 0,
  2307. "_is3DNode": false,
  2308. "_groupIndex": 0,
  2309. "groupIndex": 0,
  2310. "_id": ""
  2311. },
  2312. {
  2313. "__type__": "cc.Node",
  2314. "_name": "lab",
  2315. "_objFlags": 0,
  2316. "_parent": {
  2317. "__id__": 58
  2318. },
  2319. "_children": [],
  2320. "_active": true,
  2321. "_components": [
  2322. {
  2323. "__id__": 60
  2324. },
  2325. {
  2326. "__id__": 61
  2327. }
  2328. ],
  2329. "_prefab": {
  2330. "__id__": 62
  2331. },
  2332. "_opacity": 255,
  2333. "_color": {
  2334. "__type__": "cc.Color",
  2335. "r": 248,
  2336. "g": 220,
  2337. "b": 91,
  2338. "a": 255
  2339. },
  2340. "_contentSize": {
  2341. "__type__": "cc.Size",
  2342. "width": 84,
  2343. "height": 29.2
  2344. },
  2345. "_anchorPoint": {
  2346. "__type__": "cc.Vec2",
  2347. "x": 0.5,
  2348. "y": 0.5
  2349. },
  2350. "_trs": {
  2351. "__type__": "TypedArray",
  2352. "ctor": "Float64Array",
  2353. "array": [
  2354. -41.185,
  2355. 0,
  2356. 0,
  2357. 0,
  2358. 0,
  2359. 0,
  2360. 1,
  2361. 1,
  2362. 1,
  2363. 1
  2364. ]
  2365. },
  2366. "_eulerAngles": {
  2367. "__type__": "cc.Vec3",
  2368. "x": 0,
  2369. "y": 0,
  2370. "z": 0
  2371. },
  2372. "_skewX": 0,
  2373. "_skewY": 0,
  2374. "_is3DNode": false,
  2375. "_groupIndex": 0,
  2376. "groupIndex": 0,
  2377. "_id": ""
  2378. },
  2379. {
  2380. "__type__": "cc.Label",
  2381. "_name": "",
  2382. "_objFlags": 0,
  2383. "node": {
  2384. "__id__": 59
  2385. },
  2386. "_enabled": true,
  2387. "_materials": [
  2388. {
  2389. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2390. }
  2391. ],
  2392. "_srcBlendFactor": 770,
  2393. "_dstBlendFactor": 771,
  2394. "_string": "兑换需要",
  2395. "_N$string": "兑换需要",
  2396. "_fontSize": 20,
  2397. "_lineHeight": 20,
  2398. "_enableWrapText": true,
  2399. "_N$file": null,
  2400. "_isSystemFontUsed": true,
  2401. "_spacingX": 0,
  2402. "_batchAsBitmap": false,
  2403. "_styleFlags": 0,
  2404. "_underlineHeight": 0,
  2405. "_N$horizontalAlign": 1,
  2406. "_N$verticalAlign": 1,
  2407. "_N$fontFamily": "Arial",
  2408. "_N$overflow": 0,
  2409. "_N$cacheMode": 0,
  2410. "_id": ""
  2411. },
  2412. {
  2413. "__type__": "cc.LabelOutline",
  2414. "_name": "",
  2415. "_objFlags": 0,
  2416. "node": {
  2417. "__id__": 59
  2418. },
  2419. "_enabled": true,
  2420. "_color": {
  2421. "__type__": "cc.Color",
  2422. "r": 110,
  2423. "g": 58,
  2424. "b": 52,
  2425. "a": 255
  2426. },
  2427. "_width": 2,
  2428. "_id": ""
  2429. },
  2430. {
  2431. "__type__": "cc.PrefabInfo",
  2432. "root": {
  2433. "__id__": 1
  2434. },
  2435. "asset": {
  2436. "__id__": 0
  2437. },
  2438. "fileId": "6aumCZd+1Br68cFgMM/+P1",
  2439. "sync": false
  2440. },
  2441. {
  2442. "__type__": "cc.Node",
  2443. "_name": "bli",
  2444. "_objFlags": 0,
  2445. "_parent": {
  2446. "__id__": 58
  2447. },
  2448. "_children": [],
  2449. "_active": true,
  2450. "_components": [
  2451. {
  2452. "__id__": 64
  2453. }
  2454. ],
  2455. "_prefab": {
  2456. "__id__": 65
  2457. },
  2458. "_opacity": 255,
  2459. "_color": {
  2460. "__type__": "cc.Color",
  2461. "r": 255,
  2462. "g": 255,
  2463. "b": 255,
  2464. "a": 255
  2465. },
  2466. "_contentSize": {
  2467. "__type__": "cc.Size",
  2468. "width": 35,
  2469. "height": 35
  2470. },
  2471. "_anchorPoint": {
  2472. "__type__": "cc.Vec2",
  2473. "x": 0.5,
  2474. "y": 0.5
  2475. },
  2476. "_trs": {
  2477. "__type__": "TypedArray",
  2478. "ctor": "Float64Array",
  2479. "array": [
  2480. 18.314999999999998,
  2481. 0,
  2482. 0,
  2483. 0,
  2484. 0,
  2485. 0,
  2486. 1,
  2487. 1,
  2488. 1,
  2489. 1
  2490. ]
  2491. },
  2492. "_eulerAngles": {
  2493. "__type__": "cc.Vec3",
  2494. "x": 0,
  2495. "y": 0,
  2496. "z": 0
  2497. },
  2498. "_skewX": 0,
  2499. "_skewY": 0,
  2500. "_is3DNode": false,
  2501. "_groupIndex": 0,
  2502. "groupIndex": 0,
  2503. "_id": ""
  2504. },
  2505. {
  2506. "__type__": "cc.Sprite",
  2507. "_name": "",
  2508. "_objFlags": 0,
  2509. "node": {
  2510. "__id__": 63
  2511. },
  2512. "_enabled": true,
  2513. "_materials": [
  2514. {
  2515. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2516. }
  2517. ],
  2518. "_srcBlendFactor": 770,
  2519. "_dstBlendFactor": 771,
  2520. "_spriteFrame": {
  2521. "__uuid__": "4e4b571d-2230-4e62-8412-a94191d4da0e"
  2522. },
  2523. "_type": 0,
  2524. "_sizeMode": 0,
  2525. "_fillType": 0,
  2526. "_fillCenter": {
  2527. "__type__": "cc.Vec2",
  2528. "x": 0,
  2529. "y": 0
  2530. },
  2531. "_fillStart": 0,
  2532. "_fillRange": 0,
  2533. "_isTrimmedMode": true,
  2534. "_atlas": null,
  2535. "_id": ""
  2536. },
  2537. {
  2538. "__type__": "cc.PrefabInfo",
  2539. "root": {
  2540. "__id__": 1
  2541. },
  2542. "asset": {
  2543. "__id__": 0
  2544. },
  2545. "fileId": "dfWbNBhiZBd6mrvszj06xL",
  2546. "sync": false
  2547. },
  2548. {
  2549. "__type__": "cc.Node",
  2550. "_name": "labNum",
  2551. "_objFlags": 0,
  2552. "_parent": {
  2553. "__id__": 58
  2554. },
  2555. "_children": [],
  2556. "_active": true,
  2557. "_components": [
  2558. {
  2559. "__id__": 67
  2560. },
  2561. {
  2562. "__id__": 68
  2563. }
  2564. ],
  2565. "_prefab": {
  2566. "__id__": 69
  2567. },
  2568. "_opacity": 255,
  2569. "_color": {
  2570. "__type__": "cc.Color",
  2571. "r": 248,
  2572. "g": 220,
  2573. "b": 91,
  2574. "a": 255
  2575. },
  2576. "_contentSize": {
  2577. "__type__": "cc.Size",
  2578. "width": 47.37,
  2579. "height": 29.2
  2580. },
  2581. "_anchorPoint": {
  2582. "__type__": "cc.Vec2",
  2583. "x": 0.5,
  2584. "y": 0.5
  2585. },
  2586. "_trs": {
  2587. "__type__": "TypedArray",
  2588. "ctor": "Float64Array",
  2589. "array": [
  2590. 59.5,
  2591. 0,
  2592. 0,
  2593. 0,
  2594. 0,
  2595. 0,
  2596. 1,
  2597. 1,
  2598. 1,
  2599. 1
  2600. ]
  2601. },
  2602. "_eulerAngles": {
  2603. "__type__": "cc.Vec3",
  2604. "x": 0,
  2605. "y": 0,
  2606. "z": 0
  2607. },
  2608. "_skewX": 0,
  2609. "_skewY": 0,
  2610. "_is3DNode": false,
  2611. "_groupIndex": 0,
  2612. "groupIndex": 0,
  2613. "_id": ""
  2614. },
  2615. {
  2616. "__type__": "cc.Label",
  2617. "_name": "",
  2618. "_objFlags": 0,
  2619. "node": {
  2620. "__id__": 66
  2621. },
  2622. "_enabled": true,
  2623. "_materials": [
  2624. {
  2625. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2626. }
  2627. ],
  2628. "_srcBlendFactor": 770,
  2629. "_dstBlendFactor": 771,
  2630. "_string": "x600",
  2631. "_N$string": "x600",
  2632. "_fontSize": 20,
  2633. "_lineHeight": 20,
  2634. "_enableWrapText": true,
  2635. "_N$file": null,
  2636. "_isSystemFontUsed": true,
  2637. "_spacingX": 0,
  2638. "_batchAsBitmap": false,
  2639. "_styleFlags": 0,
  2640. "_underlineHeight": 0,
  2641. "_N$horizontalAlign": 1,
  2642. "_N$verticalAlign": 1,
  2643. "_N$fontFamily": "Arial",
  2644. "_N$overflow": 0,
  2645. "_N$cacheMode": 0,
  2646. "_id": ""
  2647. },
  2648. {
  2649. "__type__": "cc.LabelOutline",
  2650. "_name": "",
  2651. "_objFlags": 0,
  2652. "node": {
  2653. "__id__": 66
  2654. },
  2655. "_enabled": true,
  2656. "_color": {
  2657. "__type__": "cc.Color",
  2658. "r": 110,
  2659. "g": 58,
  2660. "b": 52,
  2661. "a": 255
  2662. },
  2663. "_width": 2,
  2664. "_id": ""
  2665. },
  2666. {
  2667. "__type__": "cc.PrefabInfo",
  2668. "root": {
  2669. "__id__": 1
  2670. },
  2671. "asset": {
  2672. "__id__": 0
  2673. },
  2674. "fileId": "88Jw3p2whH3JqVpSmvpUpZ",
  2675. "sync": false
  2676. },
  2677. {
  2678. "__type__": "cc.Layout",
  2679. "_name": "",
  2680. "_objFlags": 0,
  2681. "node": {
  2682. "__id__": 58
  2683. },
  2684. "_enabled": true,
  2685. "_layoutSize": {
  2686. "__type__": "cc.Size",
  2687. "width": 166.37,
  2688. "height": 25.2
  2689. },
  2690. "_resize": 1,
  2691. "_N$layoutType": 1,
  2692. "_N$cellSize": {
  2693. "__type__": "cc.Size",
  2694. "width": 40,
  2695. "height": 40
  2696. },
  2697. "_N$startAxis": 0,
  2698. "_N$paddingLeft": 0,
  2699. "_N$paddingRight": 0,
  2700. "_N$paddingTop": 0,
  2701. "_N$paddingBottom": 0,
  2702. "_N$spacingX": 0,
  2703. "_N$spacingY": 0,
  2704. "_N$verticalDirection": 1,
  2705. "_N$horizontalDirection": 0,
  2706. "_N$affectedByScale": false,
  2707. "_id": ""
  2708. },
  2709. {
  2710. "__type__": "cc.PrefabInfo",
  2711. "root": {
  2712. "__id__": 1
  2713. },
  2714. "asset": {
  2715. "__id__": 0
  2716. },
  2717. "fileId": "b9B35QkoFOd6kf7L8lFXoN",
  2718. "sync": false
  2719. },
  2720. {
  2721. "__type__": "cc.Node",
  2722. "_name": "btn_orange",
  2723. "_objFlags": 0,
  2724. "_parent": {
  2725. "__id__": 44
  2726. },
  2727. "_children": [
  2728. {
  2729. "__id__": 73
  2730. }
  2731. ],
  2732. "_active": true,
  2733. "_components": [
  2734. {
  2735. "__id__": 77
  2736. },
  2737. {
  2738. "__id__": 78
  2739. }
  2740. ],
  2741. "_prefab": {
  2742. "__id__": 80
  2743. },
  2744. "_opacity": 255,
  2745. "_color": {
  2746. "__type__": "cc.Color",
  2747. "r": 255,
  2748. "g": 255,
  2749. "b": 255,
  2750. "a": 255
  2751. },
  2752. "_contentSize": {
  2753. "__type__": "cc.Size",
  2754. "width": 191,
  2755. "height": 70
  2756. },
  2757. "_anchorPoint": {
  2758. "__type__": "cc.Vec2",
  2759. "x": 0.5,
  2760. "y": 0.5
  2761. },
  2762. "_trs": {
  2763. "__type__": "TypedArray",
  2764. "ctor": "Float64Array",
  2765. "array": [
  2766. 0,
  2767. -121.743,
  2768. 0,
  2769. 0,
  2770. 0,
  2771. 0,
  2772. 1,
  2773. 1,
  2774. 1,
  2775. 1
  2776. ]
  2777. },
  2778. "_eulerAngles": {
  2779. "__type__": "cc.Vec3",
  2780. "x": 0,
  2781. "y": 0,
  2782. "z": 0
  2783. },
  2784. "_skewX": 0,
  2785. "_skewY": 0,
  2786. "_is3DNode": false,
  2787. "_groupIndex": 0,
  2788. "groupIndex": 0,
  2789. "_id": ""
  2790. },
  2791. {
  2792. "__type__": "cc.Node",
  2793. "_name": "labVip",
  2794. "_objFlags": 0,
  2795. "_parent": {
  2796. "__id__": 72
  2797. },
  2798. "_children": [],
  2799. "_active": true,
  2800. "_components": [
  2801. {
  2802. "__id__": 74
  2803. },
  2804. {
  2805. "__id__": 75
  2806. }
  2807. ],
  2808. "_prefab": {
  2809. "__id__": 76
  2810. },
  2811. "_opacity": 255,
  2812. "_color": {
  2813. "__type__": "cc.Color",
  2814. "r": 255,
  2815. "g": 255,
  2816. "b": 255,
  2817. "a": 255
  2818. },
  2819. "_contentSize": {
  2820. "__type__": "cc.Size",
  2821. "width": 116,
  2822. "height": 39.28
  2823. },
  2824. "_anchorPoint": {
  2825. "__type__": "cc.Vec2",
  2826. "x": 0.5,
  2827. "y": 0.5
  2828. },
  2829. "_trs": {
  2830. "__type__": "TypedArray",
  2831. "ctor": "Float64Array",
  2832. "array": [
  2833. 0,
  2834. 5,
  2835. 0,
  2836. 0,
  2837. 0,
  2838. 0,
  2839. 1,
  2840. 1,
  2841. 1,
  2842. 1
  2843. ]
  2844. },
  2845. "_eulerAngles": {
  2846. "__type__": "cc.Vec3",
  2847. "x": 0,
  2848. "y": 0,
  2849. "z": 0
  2850. },
  2851. "_skewX": 0,
  2852. "_skewY": 0,
  2853. "_is3DNode": false,
  2854. "_groupIndex": 0,
  2855. "groupIndex": 0,
  2856. "_id": ""
  2857. },
  2858. {
  2859. "__type__": "cc.Label",
  2860. "_name": "",
  2861. "_objFlags": 0,
  2862. "node": {
  2863. "__id__": 73
  2864. },
  2865. "_enabled": true,
  2866. "_materials": [
  2867. {
  2868. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2869. }
  2870. ],
  2871. "_srcBlendFactor": 770,
  2872. "_dstBlendFactor": 771,
  2873. "_string": "立即兑换",
  2874. "_N$string": "立即兑换",
  2875. "_fontSize": 28,
  2876. "_lineHeight": 28,
  2877. "_enableWrapText": true,
  2878. "_N$file": {
  2879. "__uuid__": "2f41974a-56ee-45f1-9012-c67f820aa7ec"
  2880. },
  2881. "_isSystemFontUsed": false,
  2882. "_spacingX": 0,
  2883. "_batchAsBitmap": false,
  2884. "_styleFlags": 0,
  2885. "_underlineHeight": 0,
  2886. "_N$horizontalAlign": 1,
  2887. "_N$verticalAlign": 1,
  2888. "_N$fontFamily": "Arial",
  2889. "_N$overflow": 0,
  2890. "_N$cacheMode": 0,
  2891. "_id": ""
  2892. },
  2893. {
  2894. "__type__": "cc.LabelOutline",
  2895. "_name": "",
  2896. "_objFlags": 0,
  2897. "node": {
  2898. "__id__": 73
  2899. },
  2900. "_enabled": true,
  2901. "_color": {
  2902. "__type__": "cc.Color",
  2903. "r": 152,
  2904. "g": 43,
  2905. "b": 0,
  2906. "a": 255
  2907. },
  2908. "_width": 2,
  2909. "_id": ""
  2910. },
  2911. {
  2912. "__type__": "cc.PrefabInfo",
  2913. "root": {
  2914. "__id__": 1
  2915. },
  2916. "asset": {
  2917. "__id__": 0
  2918. },
  2919. "fileId": "4cxP99AgFCbZBSn+WCSvyJ",
  2920. "sync": false
  2921. },
  2922. {
  2923. "__type__": "cc.Sprite",
  2924. "_name": "",
  2925. "_objFlags": 0,
  2926. "node": {
  2927. "__id__": 72
  2928. },
  2929. "_enabled": true,
  2930. "_materials": [
  2931. {
  2932. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2933. }
  2934. ],
  2935. "_srcBlendFactor": 770,
  2936. "_dstBlendFactor": 771,
  2937. "_spriteFrame": {
  2938. "__uuid__": "f81c55e3-2a44-4dc3-90e7-f7d25ce8c352"
  2939. },
  2940. "_type": 0,
  2941. "_sizeMode": 1,
  2942. "_fillType": 0,
  2943. "_fillCenter": {
  2944. "__type__": "cc.Vec2",
  2945. "x": 0,
  2946. "y": 0
  2947. },
  2948. "_fillStart": 0,
  2949. "_fillRange": 0,
  2950. "_isTrimmedMode": true,
  2951. "_atlas": null,
  2952. "_id": ""
  2953. },
  2954. {
  2955. "__type__": "cc.Button",
  2956. "_name": "",
  2957. "_objFlags": 0,
  2958. "node": {
  2959. "__id__": 72
  2960. },
  2961. "_enabled": true,
  2962. "_normalMaterial": null,
  2963. "_grayMaterial": null,
  2964. "duration": 0.1,
  2965. "zoomScale": 1.2,
  2966. "clickEvents": [
  2967. {
  2968. "__id__": 79
  2969. }
  2970. ],
  2971. "_N$interactable": true,
  2972. "_N$enableAutoGrayEffect": false,
  2973. "_N$transition": 0,
  2974. "transition": 0,
  2975. "_N$normalColor": {
  2976. "__type__": "cc.Color",
  2977. "r": 255,
  2978. "g": 255,
  2979. "b": 255,
  2980. "a": 255
  2981. },
  2982. "_N$pressedColor": {
  2983. "__type__": "cc.Color",
  2984. "r": 211,
  2985. "g": 211,
  2986. "b": 211,
  2987. "a": 255
  2988. },
  2989. "pressedColor": {
  2990. "__type__": "cc.Color",
  2991. "r": 211,
  2992. "g": 211,
  2993. "b": 211,
  2994. "a": 255
  2995. },
  2996. "_N$hoverColor": {
  2997. "__type__": "cc.Color",
  2998. "r": 255,
  2999. "g": 255,
  3000. "b": 255,
  3001. "a": 255
  3002. },
  3003. "hoverColor": {
  3004. "__type__": "cc.Color",
  3005. "r": 255,
  3006. "g": 255,
  3007. "b": 255,
  3008. "a": 255
  3009. },
  3010. "_N$disabledColor": {
  3011. "__type__": "cc.Color",
  3012. "r": 124,
  3013. "g": 124,
  3014. "b": 124,
  3015. "a": 255
  3016. },
  3017. "_N$normalSprite": null,
  3018. "_N$pressedSprite": null,
  3019. "pressedSprite": null,
  3020. "_N$hoverSprite": null,
  3021. "hoverSprite": null,
  3022. "_N$disabledSprite": null,
  3023. "_N$target": null,
  3024. "_id": ""
  3025. },
  3026. {
  3027. "__type__": "cc.ClickEvent",
  3028. "target": null,
  3029. "component": "",
  3030. "_componentId": "36ee5B/6XpES4p9tbbO3Vvn",
  3031. "handler": "onClickExchange",
  3032. "customEventData": ""
  3033. },
  3034. {
  3035. "__type__": "cc.PrefabInfo",
  3036. "root": {
  3037. "__id__": 1
  3038. },
  3039. "asset": {
  3040. "__id__": 0
  3041. },
  3042. "fileId": "9cFqx3jp5CN55tdG/+5vRt",
  3043. "sync": false
  3044. },
  3045. {
  3046. "__type__": "cc.Sprite",
  3047. "_name": "",
  3048. "_objFlags": 0,
  3049. "node": {
  3050. "__id__": 44
  3051. },
  3052. "_enabled": false,
  3053. "_materials": [
  3054. {
  3055. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3056. }
  3057. ],
  3058. "_srcBlendFactor": 770,
  3059. "_dstBlendFactor": 771,
  3060. "_spriteFrame": {
  3061. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  3062. },
  3063. "_type": 0,
  3064. "_sizeMode": 0,
  3065. "_fillType": 0,
  3066. "_fillCenter": {
  3067. "__type__": "cc.Vec2",
  3068. "x": 0,
  3069. "y": 0
  3070. },
  3071. "_fillStart": 0,
  3072. "_fillRange": 0,
  3073. "_isTrimmedMode": true,
  3074. "_atlas": null,
  3075. "_id": ""
  3076. },
  3077. {
  3078. "__type__": "cc.PrefabInfo",
  3079. "root": {
  3080. "__id__": 1
  3081. },
  3082. "asset": {
  3083. "__id__": 0
  3084. },
  3085. "fileId": "28olXSzi9GpqrRO8kId/qw",
  3086. "sync": false
  3087. },
  3088. {
  3089. "__type__": "cc.Node",
  3090. "_name": "content",
  3091. "_objFlags": 0,
  3092. "_parent": {
  3093. "__id__": 43
  3094. },
  3095. "_children": [],
  3096. "_active": true,
  3097. "_components": [
  3098. {
  3099. "__id__": 84
  3100. }
  3101. ],
  3102. "_prefab": {
  3103. "__id__": 85
  3104. },
  3105. "_opacity": 255,
  3106. "_color": {
  3107. "__type__": "cc.Color",
  3108. "r": 255,
  3109. "g": 255,
  3110. "b": 255,
  3111. "a": 255
  3112. },
  3113. "_contentSize": {
  3114. "__type__": "cc.Size",
  3115. "width": 660,
  3116. "height": 995
  3117. },
  3118. "_anchorPoint": {
  3119. "__type__": "cc.Vec2",
  3120. "x": 0.5,
  3121. "y": 1
  3122. },
  3123. "_trs": {
  3124. "__type__": "TypedArray",
  3125. "ctor": "Float64Array",
  3126. "array": [
  3127. 0,
  3128. 0,
  3129. 0,
  3130. 0,
  3131. 0,
  3132. 0,
  3133. 1,
  3134. 1,
  3135. 1,
  3136. 1
  3137. ]
  3138. },
  3139. "_eulerAngles": {
  3140. "__type__": "cc.Vec3",
  3141. "x": 0,
  3142. "y": 0,
  3143. "z": 0
  3144. },
  3145. "_skewX": 0,
  3146. "_skewY": 0,
  3147. "_is3DNode": false,
  3148. "_groupIndex": 0,
  3149. "groupIndex": 0,
  3150. "_id": ""
  3151. },
  3152. {
  3153. "__type__": "cc.Layout",
  3154. "_name": "",
  3155. "_objFlags": 0,
  3156. "node": {
  3157. "__id__": 83
  3158. },
  3159. "_enabled": true,
  3160. "_layoutSize": {
  3161. "__type__": "cc.Size",
  3162. "width": 660,
  3163. "height": 995
  3164. },
  3165. "_resize": 1,
  3166. "_N$layoutType": 3,
  3167. "_N$cellSize": {
  3168. "__type__": "cc.Size",
  3169. "width": 40,
  3170. "height": 40
  3171. },
  3172. "_N$startAxis": 0,
  3173. "_N$paddingLeft": 18,
  3174. "_N$paddingRight": 0,
  3175. "_N$paddingTop": 0,
  3176. "_N$paddingBottom": 10,
  3177. "_N$spacingX": 0,
  3178. "_N$spacingY": 25,
  3179. "_N$verticalDirection": 1,
  3180. "_N$horizontalDirection": 0,
  3181. "_N$affectedByScale": false,
  3182. "_id": ""
  3183. },
  3184. {
  3185. "__type__": "cc.PrefabInfo",
  3186. "root": {
  3187. "__id__": 1
  3188. },
  3189. "asset": {
  3190. "__id__": 0
  3191. },
  3192. "fileId": "02PmWlF5pCZ4eb75QSwpgp",
  3193. "sync": false
  3194. },
  3195. {
  3196. "__type__": "cc.Mask",
  3197. "_name": "",
  3198. "_objFlags": 0,
  3199. "node": {
  3200. "__id__": 43
  3201. },
  3202. "_enabled": true,
  3203. "_materials": [
  3204. {
  3205. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3206. }
  3207. ],
  3208. "_spriteFrame": null,
  3209. "_type": 0,
  3210. "_segments": 64,
  3211. "_N$alphaThreshold": 0,
  3212. "_N$inverted": false,
  3213. "_id": ""
  3214. },
  3215. {
  3216. "__type__": "cc.PrefabInfo",
  3217. "root": {
  3218. "__id__": 1
  3219. },
  3220. "asset": {
  3221. "__id__": 0
  3222. },
  3223. "fileId": "d9oYShITlIq6cdVTVHOszq",
  3224. "sync": false
  3225. },
  3226. {
  3227. "__type__": "cc.Sprite",
  3228. "_name": "",
  3229. "_objFlags": 0,
  3230. "node": {
  3231. "__id__": 42
  3232. },
  3233. "_enabled": false,
  3234. "_materials": [
  3235. {
  3236. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3237. }
  3238. ],
  3239. "_srcBlendFactor": 770,
  3240. "_dstBlendFactor": 771,
  3241. "_spriteFrame": {
  3242. "__uuid__": "9bbda31e-ad49-43c9-aaf2-f7d9896bac69"
  3243. },
  3244. "_type": 1,
  3245. "_sizeMode": 0,
  3246. "_fillType": 0,
  3247. "_fillCenter": {
  3248. "__type__": "cc.Vec2",
  3249. "x": 0,
  3250. "y": 0
  3251. },
  3252. "_fillStart": 0,
  3253. "_fillRange": 0,
  3254. "_isTrimmedMode": true,
  3255. "_atlas": null,
  3256. "_id": ""
  3257. },
  3258. {
  3259. "__type__": "cc.ScrollView",
  3260. "_name": "",
  3261. "_objFlags": 0,
  3262. "node": {
  3263. "__id__": 42
  3264. },
  3265. "_enabled": true,
  3266. "horizontal": false,
  3267. "vertical": true,
  3268. "inertia": true,
  3269. "brake": 0.75,
  3270. "elastic": true,
  3271. "bounceDuration": 0.23,
  3272. "scrollEvents": [],
  3273. "cancelInnerEvents": true,
  3274. "_N$content": {
  3275. "__id__": 83
  3276. },
  3277. "content": {
  3278. "__id__": 83
  3279. },
  3280. "_N$horizontalScrollBar": null,
  3281. "_N$verticalScrollBar": null,
  3282. "_id": ""
  3283. },
  3284. {
  3285. "__type__": "cc.PrefabInfo",
  3286. "root": {
  3287. "__id__": 1
  3288. },
  3289. "asset": {
  3290. "__id__": 0
  3291. },
  3292. "fileId": "4ftg167IdHG5h4OIMQtnNP",
  3293. "sync": false
  3294. },
  3295. {
  3296. "__type__": "cc.Widget",
  3297. "_name": "",
  3298. "_objFlags": 0,
  3299. "node": {
  3300. "__id__": 6
  3301. },
  3302. "_enabled": true,
  3303. "alignMode": 1,
  3304. "_target": null,
  3305. "_alignFlags": 45,
  3306. "_left": 360,
  3307. "_right": 360,
  3308. "_top": 640,
  3309. "_bottom": 640,
  3310. "_verticalCenter": 0,
  3311. "_horizontalCenter": 0,
  3312. "_isAbsLeft": true,
  3313. "_isAbsRight": true,
  3314. "_isAbsTop": true,
  3315. "_isAbsBottom": true,
  3316. "_isAbsHorizontalCenter": true,
  3317. "_isAbsVerticalCenter": true,
  3318. "_originalWidth": 0,
  3319. "_originalHeight": 0,
  3320. "_id": ""
  3321. },
  3322. {
  3323. "__type__": "cc.PrefabInfo",
  3324. "root": {
  3325. "__id__": 1
  3326. },
  3327. "asset": {
  3328. "__id__": 0
  3329. },
  3330. "fileId": "135089afBHw5v4VC3+BdxP",
  3331. "sync": false
  3332. },
  3333. {
  3334. "__type__": "cc.Widget",
  3335. "_name": "",
  3336. "_objFlags": 0,
  3337. "node": {
  3338. "__id__": 1
  3339. },
  3340. "_enabled": true,
  3341. "alignMode": 1,
  3342. "_target": null,
  3343. "_alignFlags": 45,
  3344. "_left": 0,
  3345. "_right": 0,
  3346. "_top": 0,
  3347. "_bottom": 0,
  3348. "_verticalCenter": 0,
  3349. "_horizontalCenter": 0,
  3350. "_isAbsLeft": true,
  3351. "_isAbsRight": true,
  3352. "_isAbsTop": true,
  3353. "_isAbsBottom": true,
  3354. "_isAbsHorizontalCenter": true,
  3355. "_isAbsVerticalCenter": true,
  3356. "_originalWidth": 0,
  3357. "_originalHeight": 0,
  3358. "_id": ""
  3359. },
  3360. {
  3361. "__type__": "9f867BlEVlM0ps90rJymqeS",
  3362. "_name": "",
  3363. "_objFlags": 0,
  3364. "node": {
  3365. "__id__": 1
  3366. },
  3367. "_enabled": true,
  3368. "atlasCoin": {
  3369. "__uuid__": "7f4a22b1-b5bf-44cc-94f6-343144483694"
  3370. },
  3371. "itemPrefab": {
  3372. "__id__": 44
  3373. },
  3374. "conNode": {
  3375. "__id__": 83
  3376. },
  3377. "_id": ""
  3378. },
  3379. {
  3380. "__type__": "cc.PrefabInfo",
  3381. "root": {
  3382. "__id__": 1
  3383. },
  3384. "asset": {
  3385. "__id__": 0
  3386. },
  3387. "fileId": "",
  3388. "sync": false
  3389. }
  3390. ]