RelicDefenseUI.prefab 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466
  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": "RelicDefenseUI",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. },
  26. {
  27. "__id__": 10
  28. },
  29. {
  30. "__id__": 15
  31. },
  32. {
  33. "__id__": 20
  34. },
  35. {
  36. "__id__": 25
  37. },
  38. {
  39. "__id__": 28
  40. },
  41. {
  42. "__id__": 31
  43. },
  44. {
  45. "__id__": 42
  46. },
  47. {
  48. "__id__": 58
  49. }
  50. ],
  51. "_active": true,
  52. "_components": [
  53. {
  54. "__id__": 74
  55. }
  56. ],
  57. "_prefab": {
  58. "__id__": 75
  59. },
  60. "_opacity": 255,
  61. "_color": {
  62. "__type__": "cc.Color",
  63. "r": 255,
  64. "g": 255,
  65. "b": 255,
  66. "a": 255
  67. },
  68. "_contentSize": {
  69. "__type__": "cc.Size",
  70. "width": 0,
  71. "height": 0
  72. },
  73. "_anchorPoint": {
  74. "__type__": "cc.Vec2",
  75. "x": 0.5,
  76. "y": 0.5
  77. },
  78. "_trs": {
  79. "__type__": "TypedArray",
  80. "ctor": "Float64Array",
  81. "array": [
  82. 0,
  83. 0,
  84. 0,
  85. 0,
  86. 0,
  87. 0,
  88. 1,
  89. 1,
  90. 1,
  91. 1
  92. ]
  93. },
  94. "_eulerAngles": {
  95. "__type__": "cc.Vec3",
  96. "x": 0,
  97. "y": 0,
  98. "z": 0
  99. },
  100. "_skewX": 0,
  101. "_skewY": 0,
  102. "_is3DNode": false,
  103. "_groupIndex": 0,
  104. "groupIndex": 0,
  105. "_id": ""
  106. },
  107. {
  108. "__type__": "cc.Node",
  109. "_name": "bg",
  110. "_objFlags": 0,
  111. "_parent": {
  112. "__id__": 1
  113. },
  114. "_children": [],
  115. "_active": true,
  116. "_components": [
  117. {
  118. "__id__": 3
  119. },
  120. {
  121. "__id__": 4
  122. },
  123. {
  124. "__id__": 5
  125. }
  126. ],
  127. "_prefab": {
  128. "__id__": 6
  129. },
  130. "_opacity": 204,
  131. "_color": {
  132. "__type__": "cc.Color",
  133. "r": 0,
  134. "g": 0,
  135. "b": 0,
  136. "a": 255
  137. },
  138. "_contentSize": {
  139. "__type__": "cc.Size",
  140. "width": 2400,
  141. "height": 1080
  142. },
  143. "_anchorPoint": {
  144. "__type__": "cc.Vec2",
  145. "x": 0.5,
  146. "y": 0.5
  147. },
  148. "_trs": {
  149. "__type__": "TypedArray",
  150. "ctor": "Float64Array",
  151. "array": [
  152. 0,
  153. 0,
  154. 0,
  155. 0,
  156. 0,
  157. 0,
  158. 1,
  159. 1,
  160. 1,
  161. 1
  162. ]
  163. },
  164. "_eulerAngles": {
  165. "__type__": "cc.Vec3",
  166. "x": 0,
  167. "y": 0,
  168. "z": 0
  169. },
  170. "_skewX": 0,
  171. "_skewY": 0,
  172. "_is3DNode": false,
  173. "_groupIndex": 0,
  174. "groupIndex": 0,
  175. "_id": ""
  176. },
  177. {
  178. "__type__": "cc.Sprite",
  179. "_name": "",
  180. "_objFlags": 0,
  181. "node": {
  182. "__id__": 2
  183. },
  184. "_enabled": true,
  185. "_materials": [
  186. {
  187. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  188. }
  189. ],
  190. "_srcBlendFactor": 770,
  191. "_dstBlendFactor": 771,
  192. "_spriteFrame": {
  193. "__uuid__": "05b69229-67ad-42c3-bf71-09c34d9def2b"
  194. },
  195. "_type": 1,
  196. "_sizeMode": 0,
  197. "_fillType": 0,
  198. "_fillCenter": {
  199. "__type__": "cc.Vec2",
  200. "x": 0,
  201. "y": 0
  202. },
  203. "_fillStart": 0,
  204. "_fillRange": 0,
  205. "_isTrimmedMode": true,
  206. "_atlas": null,
  207. "_id": ""
  208. },
  209. {
  210. "__type__": "cc.BlockInputEvents",
  211. "_name": "",
  212. "_objFlags": 0,
  213. "node": {
  214. "__id__": 2
  215. },
  216. "_enabled": true,
  217. "_id": ""
  218. },
  219. {
  220. "__type__": "62f58zwdOVN/rFVGtus3pDj",
  221. "_name": "",
  222. "_objFlags": 0,
  223. "node": {
  224. "__id__": 2
  225. },
  226. "_enabled": true,
  227. "widthFit": true,
  228. "heightFit": true,
  229. "_id": ""
  230. },
  231. {
  232. "__type__": "cc.PrefabInfo",
  233. "root": {
  234. "__id__": 1
  235. },
  236. "asset": {
  237. "__id__": 0
  238. },
  239. "fileId": "03z4y1hSRPWLGH9oTDGAaR",
  240. "sync": false
  241. },
  242. {
  243. "__type__": "cc.Node",
  244. "_name": "common_popup",
  245. "_objFlags": 0,
  246. "_parent": {
  247. "__id__": 1
  248. },
  249. "_children": [],
  250. "_active": true,
  251. "_components": [
  252. {
  253. "__id__": 8
  254. }
  255. ],
  256. "_prefab": {
  257. "__id__": 9
  258. },
  259. "_opacity": 255,
  260. "_color": {
  261. "__type__": "cc.Color",
  262. "r": 255,
  263. "g": 255,
  264. "b": 255,
  265. "a": 255
  266. },
  267. "_contentSize": {
  268. "__type__": "cc.Size",
  269. "width": 998.2,
  270. "height": 845.7
  271. },
  272. "_anchorPoint": {
  273. "__type__": "cc.Vec2",
  274. "x": 0.5,
  275. "y": 0.5
  276. },
  277. "_trs": {
  278. "__type__": "TypedArray",
  279. "ctor": "Float64Array",
  280. "array": [
  281. 0,
  282. 0,
  283. 0,
  284. 0,
  285. 0,
  286. 0,
  287. 1,
  288. 1,
  289. 1,
  290. 1
  291. ]
  292. },
  293. "_eulerAngles": {
  294. "__type__": "cc.Vec3",
  295. "x": 0,
  296. "y": 0,
  297. "z": 0
  298. },
  299. "_skewX": 0,
  300. "_skewY": 0,
  301. "_is3DNode": false,
  302. "_groupIndex": 0,
  303. "groupIndex": 0,
  304. "_id": ""
  305. },
  306. {
  307. "__type__": "cc.Sprite",
  308. "_name": "",
  309. "_objFlags": 0,
  310. "node": {
  311. "__id__": 7
  312. },
  313. "_enabled": true,
  314. "_materials": [
  315. {
  316. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  317. }
  318. ],
  319. "_srcBlendFactor": 770,
  320. "_dstBlendFactor": 771,
  321. "_spriteFrame": {
  322. "__uuid__": "e07f7d80-677d-4def-b648-88341c7a5b1a"
  323. },
  324. "_type": 1,
  325. "_sizeMode": 0,
  326. "_fillType": 0,
  327. "_fillCenter": {
  328. "__type__": "cc.Vec2",
  329. "x": 0,
  330. "y": 0
  331. },
  332. "_fillStart": 0,
  333. "_fillRange": 0,
  334. "_isTrimmedMode": true,
  335. "_atlas": null,
  336. "_id": ""
  337. },
  338. {
  339. "__type__": "cc.PrefabInfo",
  340. "root": {
  341. "__id__": 1
  342. },
  343. "asset": {
  344. "__id__": 0
  345. },
  346. "fileId": "74arX2t4NFKbOBfOd0Bh+g",
  347. "sync": false
  348. },
  349. {
  350. "__type__": "cc.Node",
  351. "_name": "common_close",
  352. "_objFlags": 0,
  353. "_parent": {
  354. "__id__": 1
  355. },
  356. "_children": [],
  357. "_active": true,
  358. "_components": [
  359. {
  360. "__id__": 11
  361. },
  362. {
  363. "__id__": 12
  364. }
  365. ],
  366. "_prefab": {
  367. "__id__": 14
  368. },
  369. "_opacity": 255,
  370. "_color": {
  371. "__type__": "cc.Color",
  372. "r": 255,
  373. "g": 255,
  374. "b": 255,
  375. "a": 255
  376. },
  377. "_contentSize": {
  378. "__type__": "cc.Size",
  379. "width": 135,
  380. "height": 135
  381. },
  382. "_anchorPoint": {
  383. "__type__": "cc.Vec2",
  384. "x": 0.5,
  385. "y": 0.5
  386. },
  387. "_trs": {
  388. "__type__": "TypedArray",
  389. "ctor": "Float64Array",
  390. "array": [
  391. 447.365,
  392. 371.386,
  393. 0,
  394. 0,
  395. 0,
  396. 0,
  397. 1,
  398. 1,
  399. 1,
  400. 0
  401. ]
  402. },
  403. "_eulerAngles": {
  404. "__type__": "cc.Vec3",
  405. "x": 0,
  406. "y": 0,
  407. "z": 0
  408. },
  409. "_skewX": 0,
  410. "_skewY": 0,
  411. "_is3DNode": false,
  412. "_groupIndex": 0,
  413. "groupIndex": 0,
  414. "_id": ""
  415. },
  416. {
  417. "__type__": "cc.Sprite",
  418. "_name": "",
  419. "_objFlags": 0,
  420. "node": {
  421. "__id__": 10
  422. },
  423. "_enabled": true,
  424. "_materials": [
  425. {
  426. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  427. }
  428. ],
  429. "_srcBlendFactor": 770,
  430. "_dstBlendFactor": 771,
  431. "_spriteFrame": {
  432. "__uuid__": "23c8a125-f917-46e9-bcf8-5d8af9ec00c7"
  433. },
  434. "_type": 0,
  435. "_sizeMode": 0,
  436. "_fillType": 0,
  437. "_fillCenter": {
  438. "__type__": "cc.Vec2",
  439. "x": 0,
  440. "y": 0
  441. },
  442. "_fillStart": 0,
  443. "_fillRange": 0,
  444. "_isTrimmedMode": true,
  445. "_atlas": null,
  446. "_id": ""
  447. },
  448. {
  449. "__type__": "cc.Button",
  450. "_name": "",
  451. "_objFlags": 0,
  452. "node": {
  453. "__id__": 10
  454. },
  455. "_enabled": true,
  456. "_normalMaterial": null,
  457. "_grayMaterial": null,
  458. "duration": 0.1,
  459. "zoomScale": 1.2,
  460. "clickEvents": [
  461. {
  462. "__id__": 13
  463. }
  464. ],
  465. "_N$interactable": true,
  466. "_N$enableAutoGrayEffect": false,
  467. "_N$transition": 3,
  468. "transition": 3,
  469. "_N$normalColor": {
  470. "__type__": "cc.Color",
  471. "r": 255,
  472. "g": 255,
  473. "b": 255,
  474. "a": 255
  475. },
  476. "_N$pressedColor": {
  477. "__type__": "cc.Color",
  478. "r": 211,
  479. "g": 211,
  480. "b": 211,
  481. "a": 255
  482. },
  483. "pressedColor": {
  484. "__type__": "cc.Color",
  485. "r": 211,
  486. "g": 211,
  487. "b": 211,
  488. "a": 255
  489. },
  490. "_N$hoverColor": {
  491. "__type__": "cc.Color",
  492. "r": 255,
  493. "g": 255,
  494. "b": 255,
  495. "a": 255
  496. },
  497. "hoverColor": {
  498. "__type__": "cc.Color",
  499. "r": 255,
  500. "g": 255,
  501. "b": 255,
  502. "a": 255
  503. },
  504. "_N$disabledColor": {
  505. "__type__": "cc.Color",
  506. "r": 124,
  507. "g": 124,
  508. "b": 124,
  509. "a": 255
  510. },
  511. "_N$normalSprite": null,
  512. "_N$pressedSprite": null,
  513. "pressedSprite": null,
  514. "_N$hoverSprite": null,
  515. "hoverSprite": null,
  516. "_N$disabledSprite": null,
  517. "_N$target": {
  518. "__id__": 10
  519. },
  520. "_id": ""
  521. },
  522. {
  523. "__type__": "cc.ClickEvent",
  524. "target": {
  525. "__id__": 1
  526. },
  527. "component": "",
  528. "_componentId": "39c1biclyFKQ5DwjcX70/o1",
  529. "handler": "hide",
  530. "customEventData": ""
  531. },
  532. {
  533. "__type__": "cc.PrefabInfo",
  534. "root": {
  535. "__id__": 1
  536. },
  537. "asset": {
  538. "__id__": 0
  539. },
  540. "fileId": "ebKGMhtG1KjpJvmpAOfB2Z",
  541. "sync": false
  542. },
  543. {
  544. "__type__": "cc.Node",
  545. "_name": "label",
  546. "_objFlags": 0,
  547. "_parent": {
  548. "__id__": 1
  549. },
  550. "_children": [],
  551. "_active": true,
  552. "_components": [
  553. {
  554. "__id__": 16
  555. },
  556. {
  557. "__id__": 17
  558. },
  559. {
  560. "__id__": 18
  561. }
  562. ],
  563. "_prefab": {
  564. "__id__": 19
  565. },
  566. "_opacity": 255,
  567. "_color": {
  568. "__type__": "cc.Color",
  569. "r": 241,
  570. "g": 203,
  571. "b": 87,
  572. "a": 255
  573. },
  574. "_contentSize": {
  575. "__type__": "cc.Size",
  576. "width": 308.7,
  577. "height": 69
  578. },
  579. "_anchorPoint": {
  580. "__type__": "cc.Vec2",
  581. "x": 0.5,
  582. "y": 0.5
  583. },
  584. "_trs": {
  585. "__type__": "TypedArray",
  586. "ctor": "Float64Array",
  587. "array": [
  588. 0,
  589. 337.007,
  590. 0,
  591. 0,
  592. 0,
  593. 0,
  594. 1,
  595. 1,
  596. 1,
  597. 1
  598. ]
  599. },
  600. "_eulerAngles": {
  601. "__type__": "cc.Vec3",
  602. "x": 0,
  603. "y": 0,
  604. "z": 0
  605. },
  606. "_skewX": 0,
  607. "_skewY": 0,
  608. "_is3DNode": false,
  609. "_groupIndex": 0,
  610. "groupIndex": 0,
  611. "_id": ""
  612. },
  613. {
  614. "__type__": "cc.Label",
  615. "_name": "",
  616. "_objFlags": 0,
  617. "node": {
  618. "__id__": 15
  619. },
  620. "_enabled": true,
  621. "_materials": [
  622. {
  623. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  624. }
  625. ],
  626. "_srcBlendFactor": 770,
  627. "_dstBlendFactor": 771,
  628. "_string": "Garrison Hero",
  629. "_N$string": "Garrison Hero",
  630. "_fontSize": 48,
  631. "_lineHeight": 50,
  632. "_enableWrapText": true,
  633. "_N$file": {
  634. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  635. },
  636. "_isSystemFontUsed": false,
  637. "_spacingX": 0,
  638. "_batchAsBitmap": false,
  639. "_styleFlags": 0,
  640. "_underlineHeight": 0,
  641. "_N$horizontalAlign": 1,
  642. "_N$verticalAlign": 1,
  643. "_N$fontFamily": "Arial",
  644. "_N$overflow": 0,
  645. "_N$cacheMode": 0,
  646. "_id": ""
  647. },
  648. {
  649. "__type__": "cc.LabelOutline",
  650. "_name": "",
  651. "_objFlags": 0,
  652. "node": {
  653. "__id__": 15
  654. },
  655. "_enabled": true,
  656. "_color": {
  657. "__type__": "cc.Color",
  658. "r": 38,
  659. "g": 17,
  660. "b": 12,
  661. "a": 255
  662. },
  663. "_width": 3,
  664. "_id": ""
  665. },
  666. {
  667. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  668. "_name": "",
  669. "_objFlags": 0,
  670. "node": {
  671. "__id__": 15
  672. },
  673. "_enabled": true,
  674. "_englishCase": 3,
  675. "i18n_string": "t106",
  676. "i18n_params": [],
  677. "_addColon": false,
  678. "_id": ""
  679. },
  680. {
  681. "__type__": "cc.PrefabInfo",
  682. "root": {
  683. "__id__": 15
  684. },
  685. "asset": {
  686. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  687. },
  688. "fileId": "66K00ODXhLM5c0cc6lZbmb",
  689. "sync": false
  690. },
  691. {
  692. "__type__": "cc.Node",
  693. "_name": "label",
  694. "_objFlags": 0,
  695. "_parent": {
  696. "__id__": 1
  697. },
  698. "_children": [],
  699. "_active": true,
  700. "_components": [
  701. {
  702. "__id__": 21
  703. },
  704. {
  705. "__id__": 22
  706. },
  707. {
  708. "__id__": 23
  709. }
  710. ],
  711. "_prefab": {
  712. "__id__": 24
  713. },
  714. "_opacity": 255,
  715. "_color": {
  716. "__type__": "cc.Color",
  717. "r": 241,
  718. "g": 203,
  719. "b": 87,
  720. "a": 255
  721. },
  722. "_contentSize": {
  723. "__type__": "cc.Size",
  724. "width": 402.54,
  725. "height": 69
  726. },
  727. "_anchorPoint": {
  728. "__type__": "cc.Vec2",
  729. "x": 0.5,
  730. "y": 0.5
  731. },
  732. "_trs": {
  733. "__type__": "TypedArray",
  734. "ctor": "Float64Array",
  735. "array": [
  736. 0,
  737. 45.827,
  738. 0,
  739. 0,
  740. 0,
  741. 0,
  742. 1,
  743. 1,
  744. 1,
  745. 1
  746. ]
  747. },
  748. "_eulerAngles": {
  749. "__type__": "cc.Vec3",
  750. "x": 0,
  751. "y": 0,
  752. "z": 0
  753. },
  754. "_skewX": 0,
  755. "_skewY": 0,
  756. "_is3DNode": false,
  757. "_groupIndex": 0,
  758. "groupIndex": 0,
  759. "_id": ""
  760. },
  761. {
  762. "__type__": "cc.Label",
  763. "_name": "",
  764. "_objFlags": 0,
  765. "node": {
  766. "__id__": 20
  767. },
  768. "_enabled": true,
  769. "_materials": [
  770. {
  771. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  772. }
  773. ],
  774. "_srcBlendFactor": 770,
  775. "_dstBlendFactor": 771,
  776. "_string": "Challenge Rewards",
  777. "_N$string": "Challenge Rewards",
  778. "_fontSize": 48,
  779. "_lineHeight": 50,
  780. "_enableWrapText": true,
  781. "_N$file": {
  782. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  783. },
  784. "_isSystemFontUsed": false,
  785. "_spacingX": 0,
  786. "_batchAsBitmap": false,
  787. "_styleFlags": 0,
  788. "_underlineHeight": 0,
  789. "_N$horizontalAlign": 1,
  790. "_N$verticalAlign": 1,
  791. "_N$fontFamily": "Arial",
  792. "_N$overflow": 0,
  793. "_N$cacheMode": 0,
  794. "_id": ""
  795. },
  796. {
  797. "__type__": "cc.LabelOutline",
  798. "_name": "",
  799. "_objFlags": 0,
  800. "node": {
  801. "__id__": 20
  802. },
  803. "_enabled": true,
  804. "_color": {
  805. "__type__": "cc.Color",
  806. "r": 38,
  807. "g": 17,
  808. "b": 12,
  809. "a": 255
  810. },
  811. "_width": 3,
  812. "_id": ""
  813. },
  814. {
  815. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  816. "_name": "",
  817. "_objFlags": 0,
  818. "node": {
  819. "__id__": 20
  820. },
  821. "_enabled": true,
  822. "_englishCase": 3,
  823. "i18n_string": "t108",
  824. "i18n_params": [],
  825. "_addColon": false,
  826. "_id": ""
  827. },
  828. {
  829. "__type__": "cc.PrefabInfo",
  830. "root": {
  831. "__id__": 20
  832. },
  833. "asset": {
  834. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  835. },
  836. "fileId": "2bUsjHBjNCW70k3iTGdXdq",
  837. "sync": false
  838. },
  839. {
  840. "__type__": "cc.Node",
  841. "_name": "bottom1",
  842. "_objFlags": 0,
  843. "_parent": {
  844. "__id__": 1
  845. },
  846. "_children": [],
  847. "_active": true,
  848. "_components": [
  849. {
  850. "__id__": 26
  851. }
  852. ],
  853. "_prefab": {
  854. "__id__": 27
  855. },
  856. "_opacity": 255,
  857. "_color": {
  858. "__type__": "cc.Color",
  859. "r": 255,
  860. "g": 255,
  861. "b": 255,
  862. "a": 255
  863. },
  864. "_contentSize": {
  865. "__type__": "cc.Size",
  866. "width": 860,
  867. "height": 200
  868. },
  869. "_anchorPoint": {
  870. "__type__": "cc.Vec2",
  871. "x": 0.5,
  872. "y": 0.5
  873. },
  874. "_trs": {
  875. "__type__": "TypedArray",
  876. "ctor": "Float64Array",
  877. "array": [
  878. 0,
  879. 183.981,
  880. 0,
  881. 0,
  882. 0,
  883. 0,
  884. 1,
  885. 1,
  886. 1,
  887. 1
  888. ]
  889. },
  890. "_eulerAngles": {
  891. "__type__": "cc.Vec3",
  892. "x": 0,
  893. "y": 0,
  894. "z": 0
  895. },
  896. "_skewX": 0,
  897. "_skewY": 0,
  898. "_is3DNode": false,
  899. "_groupIndex": 0,
  900. "groupIndex": 0,
  901. "_id": ""
  902. },
  903. {
  904. "__type__": "cc.Sprite",
  905. "_name": "",
  906. "_objFlags": 0,
  907. "node": {
  908. "__id__": 25
  909. },
  910. "_enabled": true,
  911. "_materials": [
  912. {
  913. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  914. }
  915. ],
  916. "_srcBlendFactor": 770,
  917. "_dstBlendFactor": 771,
  918. "_spriteFrame": {
  919. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  920. },
  921. "_type": 1,
  922. "_sizeMode": 0,
  923. "_fillType": 0,
  924. "_fillCenter": {
  925. "__type__": "cc.Vec2",
  926. "x": 0,
  927. "y": 0
  928. },
  929. "_fillStart": 0,
  930. "_fillRange": 0,
  931. "_isTrimmedMode": true,
  932. "_atlas": null,
  933. "_id": ""
  934. },
  935. {
  936. "__type__": "cc.PrefabInfo",
  937. "root": {
  938. "__id__": 1
  939. },
  940. "asset": {
  941. "__id__": 0
  942. },
  943. "fileId": "56xTd5Wv5GX5fijgGbI1Xq",
  944. "sync": false
  945. },
  946. {
  947. "__type__": "cc.Node",
  948. "_name": "bottom1",
  949. "_objFlags": 0,
  950. "_parent": {
  951. "__id__": 1
  952. },
  953. "_children": [],
  954. "_active": true,
  955. "_components": [
  956. {
  957. "__id__": 29
  958. }
  959. ],
  960. "_prefab": {
  961. "__id__": 30
  962. },
  963. "_opacity": 255,
  964. "_color": {
  965. "__type__": "cc.Color",
  966. "r": 255,
  967. "g": 255,
  968. "b": 255,
  969. "a": 255
  970. },
  971. "_contentSize": {
  972. "__type__": "cc.Size",
  973. "width": 860,
  974. "height": 200
  975. },
  976. "_anchorPoint": {
  977. "__type__": "cc.Vec2",
  978. "x": 0.5,
  979. "y": 0.5
  980. },
  981. "_trs": {
  982. "__type__": "TypedArray",
  983. "ctor": "Float64Array",
  984. "array": [
  985. 0,
  986. -104.518,
  987. 0,
  988. 0,
  989. 0,
  990. 0,
  991. 1,
  992. 1,
  993. 1,
  994. 1
  995. ]
  996. },
  997. "_eulerAngles": {
  998. "__type__": "cc.Vec3",
  999. "x": 0,
  1000. "y": 0,
  1001. "z": 0
  1002. },
  1003. "_skewX": 0,
  1004. "_skewY": 0,
  1005. "_is3DNode": false,
  1006. "_groupIndex": 0,
  1007. "groupIndex": 0,
  1008. "_id": ""
  1009. },
  1010. {
  1011. "__type__": "cc.Sprite",
  1012. "_name": "",
  1013. "_objFlags": 0,
  1014. "node": {
  1015. "__id__": 28
  1016. },
  1017. "_enabled": true,
  1018. "_materials": [
  1019. {
  1020. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1021. }
  1022. ],
  1023. "_srcBlendFactor": 770,
  1024. "_dstBlendFactor": 771,
  1025. "_spriteFrame": {
  1026. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  1027. },
  1028. "_type": 1,
  1029. "_sizeMode": 0,
  1030. "_fillType": 0,
  1031. "_fillCenter": {
  1032. "__type__": "cc.Vec2",
  1033. "x": 0,
  1034. "y": 0
  1035. },
  1036. "_fillStart": 0,
  1037. "_fillRange": 0,
  1038. "_isTrimmedMode": true,
  1039. "_atlas": null,
  1040. "_id": ""
  1041. },
  1042. {
  1043. "__type__": "cc.PrefabInfo",
  1044. "root": {
  1045. "__id__": 1
  1046. },
  1047. "asset": {
  1048. "__id__": 0
  1049. },
  1050. "fileId": "067w7JW3xP2b/8IFoQWovm",
  1051. "sync": false
  1052. },
  1053. {
  1054. "__type__": "cc.Node",
  1055. "_name": "btn",
  1056. "_objFlags": 0,
  1057. "_parent": {
  1058. "__id__": 1
  1059. },
  1060. "_children": [
  1061. {
  1062. "__id__": 32
  1063. }
  1064. ],
  1065. "_active": true,
  1066. "_components": [
  1067. {
  1068. "__id__": 37
  1069. },
  1070. {
  1071. "__id__": 38
  1072. },
  1073. {
  1074. "__id__": 39
  1075. }
  1076. ],
  1077. "_prefab": {
  1078. "__id__": 41
  1079. },
  1080. "_opacity": 255,
  1081. "_color": {
  1082. "__type__": "cc.Color",
  1083. "r": 255,
  1084. "g": 255,
  1085. "b": 255,
  1086. "a": 255
  1087. },
  1088. "_contentSize": {
  1089. "__type__": "cc.Size",
  1090. "width": 318,
  1091. "height": 129
  1092. },
  1093. "_anchorPoint": {
  1094. "__type__": "cc.Vec2",
  1095. "x": 0.5,
  1096. "y": 0.5
  1097. },
  1098. "_trs": {
  1099. "__type__": "TypedArray",
  1100. "ctor": "Float64Array",
  1101. "array": [
  1102. -9.736,
  1103. -301.774,
  1104. 0,
  1105. 0,
  1106. 0,
  1107. 0,
  1108. 1,
  1109. 1,
  1110. 1,
  1111. 0
  1112. ]
  1113. },
  1114. "_eulerAngles": {
  1115. "__type__": "cc.Vec3",
  1116. "x": 0,
  1117. "y": 0,
  1118. "z": 0
  1119. },
  1120. "_skewX": 0,
  1121. "_skewY": 0,
  1122. "_is3DNode": false,
  1123. "_groupIndex": 0,
  1124. "groupIndex": 0,
  1125. "_id": ""
  1126. },
  1127. {
  1128. "__type__": "cc.Node",
  1129. "_name": "lb",
  1130. "_objFlags": 0,
  1131. "_parent": {
  1132. "__id__": 31
  1133. },
  1134. "_children": [],
  1135. "_active": true,
  1136. "_components": [
  1137. {
  1138. "__id__": 33
  1139. },
  1140. {
  1141. "__id__": 34
  1142. },
  1143. {
  1144. "__id__": 35
  1145. }
  1146. ],
  1147. "_prefab": {
  1148. "__id__": 36
  1149. },
  1150. "_opacity": 255,
  1151. "_color": {
  1152. "__type__": "cc.Color",
  1153. "r": 68,
  1154. "g": 41,
  1155. "b": 0,
  1156. "a": 255
  1157. },
  1158. "_contentSize": {
  1159. "__type__": "cc.Size",
  1160. "width": 208.16,
  1161. "height": 73
  1162. },
  1163. "_anchorPoint": {
  1164. "__type__": "cc.Vec2",
  1165. "x": 0.5,
  1166. "y": 0.5
  1167. },
  1168. "_trs": {
  1169. "__type__": "TypedArray",
  1170. "ctor": "Float64Array",
  1171. "array": [
  1172. 0,
  1173. 0,
  1174. 0,
  1175. 0,
  1176. 0,
  1177. 0,
  1178. 1,
  1179. 1,
  1180. 1,
  1181. 1
  1182. ]
  1183. },
  1184. "_eulerAngles": {
  1185. "__type__": "cc.Vec3",
  1186. "x": 0,
  1187. "y": 0,
  1188. "z": 0
  1189. },
  1190. "_skewX": 0,
  1191. "_skewY": 0,
  1192. "_is3DNode": false,
  1193. "_groupIndex": 0,
  1194. "groupIndex": 0,
  1195. "_id": ""
  1196. },
  1197. {
  1198. "__type__": "cc.Label",
  1199. "_name": "",
  1200. "_objFlags": 0,
  1201. "node": {
  1202. "__id__": 32
  1203. },
  1204. "_enabled": true,
  1205. "_materials": [
  1206. {
  1207. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1208. }
  1209. ],
  1210. "_srcBlendFactor": 770,
  1211. "_dstBlendFactor": 771,
  1212. "_string": "Challenge",
  1213. "_N$string": "Challenge",
  1214. "_fontSize": 48,
  1215. "_lineHeight": 50,
  1216. "_enableWrapText": false,
  1217. "_N$file": {
  1218. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1219. },
  1220. "_isSystemFontUsed": false,
  1221. "_spacingX": 0,
  1222. "_batchAsBitmap": false,
  1223. "_styleFlags": 0,
  1224. "_underlineHeight": 0,
  1225. "_N$horizontalAlign": 1,
  1226. "_N$verticalAlign": 1,
  1227. "_N$fontFamily": "Arial",
  1228. "_N$overflow": 0,
  1229. "_N$cacheMode": 0,
  1230. "_id": ""
  1231. },
  1232. {
  1233. "__type__": "cc.LabelOutline",
  1234. "_name": "",
  1235. "_objFlags": 0,
  1236. "node": {
  1237. "__id__": 32
  1238. },
  1239. "_enabled": true,
  1240. "_color": {
  1241. "__type__": "cc.Color",
  1242. "r": 255,
  1243. "g": 210,
  1244. "b": 0,
  1245. "a": 255
  1246. },
  1247. "_width": 5,
  1248. "_id": ""
  1249. },
  1250. {
  1251. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  1252. "_name": "",
  1253. "_objFlags": 0,
  1254. "node": {
  1255. "__id__": 32
  1256. },
  1257. "_enabled": true,
  1258. "_englishCase": 1,
  1259. "i18n_string": "t3",
  1260. "i18n_params": [],
  1261. "_addColon": false,
  1262. "_id": ""
  1263. },
  1264. {
  1265. "__type__": "cc.PrefabInfo",
  1266. "root": {
  1267. "__id__": 31
  1268. },
  1269. "asset": {
  1270. "__uuid__": "6fd1167f-a67b-42ee-8c6b-8c2850d41319"
  1271. },
  1272. "fileId": "12tNP2G5xGpY9oecBiNRvR",
  1273. "sync": false
  1274. },
  1275. {
  1276. "__type__": "cc.Sprite",
  1277. "_name": "",
  1278. "_objFlags": 0,
  1279. "node": {
  1280. "__id__": 31
  1281. },
  1282. "_enabled": true,
  1283. "_materials": [
  1284. {
  1285. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1286. }
  1287. ],
  1288. "_srcBlendFactor": 770,
  1289. "_dstBlendFactor": 771,
  1290. "_spriteFrame": {
  1291. "__uuid__": "d3486a1f-4c52-44bd-924b-39e06794d99f"
  1292. },
  1293. "_type": 0,
  1294. "_sizeMode": 0,
  1295. "_fillType": 0,
  1296. "_fillCenter": {
  1297. "__type__": "cc.Vec2",
  1298. "x": 0,
  1299. "y": 0
  1300. },
  1301. "_fillStart": 0,
  1302. "_fillRange": 0,
  1303. "_isTrimmedMode": true,
  1304. "_atlas": null,
  1305. "_id": ""
  1306. },
  1307. {
  1308. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  1309. "_name": "",
  1310. "_objFlags": 0,
  1311. "node": {
  1312. "__id__": 31
  1313. },
  1314. "_enabled": true,
  1315. "openContinuous": true,
  1316. "continuousTime": 0.2,
  1317. "multiTouch": false,
  1318. "_id": ""
  1319. },
  1320. {
  1321. "__type__": "61994AafntNFIbmt1zoyLq+",
  1322. "_name": "",
  1323. "_objFlags": 0,
  1324. "node": {
  1325. "__id__": 31
  1326. },
  1327. "_enabled": true,
  1328. "_normalMaterial": null,
  1329. "_grayMaterial": null,
  1330. "duration": 0.1,
  1331. "zoomScale": 1.2,
  1332. "clickEvents": [
  1333. {
  1334. "__id__": 40
  1335. }
  1336. ],
  1337. "_N$interactable": true,
  1338. "_N$enableAutoGrayEffect": false,
  1339. "_N$transition": 3,
  1340. "transition": 3,
  1341. "_N$normalColor": {
  1342. "__type__": "cc.Color",
  1343. "r": 255,
  1344. "g": 255,
  1345. "b": 255,
  1346. "a": 255
  1347. },
  1348. "_N$pressedColor": {
  1349. "__type__": "cc.Color",
  1350. "r": 211,
  1351. "g": 211,
  1352. "b": 211,
  1353. "a": 255
  1354. },
  1355. "pressedColor": {
  1356. "__type__": "cc.Color",
  1357. "r": 211,
  1358. "g": 211,
  1359. "b": 211,
  1360. "a": 255
  1361. },
  1362. "_N$hoverColor": {
  1363. "__type__": "cc.Color",
  1364. "r": 255,
  1365. "g": 255,
  1366. "b": 255,
  1367. "a": 255
  1368. },
  1369. "hoverColor": {
  1370. "__type__": "cc.Color",
  1371. "r": 255,
  1372. "g": 255,
  1373. "b": 255,
  1374. "a": 255
  1375. },
  1376. "_N$disabledColor": {
  1377. "__type__": "cc.Color",
  1378. "r": 124,
  1379. "g": 124,
  1380. "b": 124,
  1381. "a": 255
  1382. },
  1383. "_N$normalSprite": null,
  1384. "_N$pressedSprite": null,
  1385. "pressedSprite": null,
  1386. "_N$hoverSprite": null,
  1387. "hoverSprite": null,
  1388. "_N$disabledSprite": null,
  1389. "_N$target": null,
  1390. "_id": ""
  1391. },
  1392. {
  1393. "__type__": "cc.ClickEvent",
  1394. "target": {
  1395. "__id__": 1
  1396. },
  1397. "component": "",
  1398. "_componentId": "39c1biclyFKQ5DwjcX70/o1",
  1399. "handler": "onChallengeClick",
  1400. "customEventData": ""
  1401. },
  1402. {
  1403. "__type__": "cc.PrefabInfo",
  1404. "root": {
  1405. "__id__": 31
  1406. },
  1407. "asset": {
  1408. "__uuid__": "6fd1167f-a67b-42ee-8c6b-8c2850d41319"
  1409. },
  1410. "fileId": "4bzHQpGSVA8IqUtvZfUEol",
  1411. "sync": false
  1412. },
  1413. {
  1414. "__type__": "cc.Node",
  1415. "_name": "heroes",
  1416. "_objFlags": 0,
  1417. "_parent": {
  1418. "__id__": 1
  1419. },
  1420. "_children": [
  1421. {
  1422. "__id__": 43
  1423. }
  1424. ],
  1425. "_active": true,
  1426. "_components": [
  1427. {
  1428. "__id__": 53
  1429. },
  1430. {
  1431. "__id__": 54
  1432. }
  1433. ],
  1434. "_prefab": {
  1435. "__id__": 57
  1436. },
  1437. "_opacity": 255,
  1438. "_color": {
  1439. "__type__": "cc.Color",
  1440. "r": 255,
  1441. "g": 255,
  1442. "b": 255,
  1443. "a": 255
  1444. },
  1445. "_contentSize": {
  1446. "__type__": "cc.Size",
  1447. "width": 860,
  1448. "height": 200
  1449. },
  1450. "_anchorPoint": {
  1451. "__type__": "cc.Vec2",
  1452. "x": 0.5,
  1453. "y": 0.5
  1454. },
  1455. "_trs": {
  1456. "__type__": "TypedArray",
  1457. "ctor": "Float64Array",
  1458. "array": [
  1459. 0,
  1460. 183,
  1461. 0,
  1462. 0,
  1463. 0,
  1464. 0,
  1465. 1,
  1466. 1,
  1467. 1,
  1468. 1
  1469. ]
  1470. },
  1471. "_eulerAngles": {
  1472. "__type__": "cc.Vec3",
  1473. "x": 0,
  1474. "y": 0,
  1475. "z": 0
  1476. },
  1477. "_skewX": 0,
  1478. "_skewY": 0,
  1479. "_is3DNode": false,
  1480. "_groupIndex": 0,
  1481. "groupIndex": 0,
  1482. "_id": ""
  1483. },
  1484. {
  1485. "__type__": "cc.Node",
  1486. "_name": "view",
  1487. "_objFlags": 0,
  1488. "_parent": {
  1489. "__id__": 42
  1490. },
  1491. "_children": [
  1492. {
  1493. "__id__": 44
  1494. }
  1495. ],
  1496. "_active": true,
  1497. "_components": [
  1498. {
  1499. "__id__": 51
  1500. }
  1501. ],
  1502. "_prefab": {
  1503. "__id__": 52
  1504. },
  1505. "_opacity": 255,
  1506. "_color": {
  1507. "__type__": "cc.Color",
  1508. "r": 255,
  1509. "g": 255,
  1510. "b": 255,
  1511. "a": 255
  1512. },
  1513. "_contentSize": {
  1514. "__type__": "cc.Size",
  1515. "width": 860,
  1516. "height": 200
  1517. },
  1518. "_anchorPoint": {
  1519. "__type__": "cc.Vec2",
  1520. "x": 0,
  1521. "y": 0.5
  1522. },
  1523. "_trs": {
  1524. "__type__": "TypedArray",
  1525. "ctor": "Float64Array",
  1526. "array": [
  1527. -430,
  1528. 0,
  1529. 0,
  1530. 0,
  1531. 0,
  1532. 0,
  1533. 1,
  1534. 1,
  1535. 1,
  1536. 1
  1537. ]
  1538. },
  1539. "_eulerAngles": {
  1540. "__type__": "cc.Vec3",
  1541. "x": 0,
  1542. "y": 0,
  1543. "z": 0
  1544. },
  1545. "_skewX": 0,
  1546. "_skewY": 0,
  1547. "_is3DNode": false,
  1548. "_groupIndex": 0,
  1549. "groupIndex": 0,
  1550. "_id": ""
  1551. },
  1552. {
  1553. "__type__": "cc.Node",
  1554. "_name": "content",
  1555. "_objFlags": 0,
  1556. "_parent": {
  1557. "__id__": 43
  1558. },
  1559. "_children": [
  1560. {
  1561. "__id__": 45
  1562. }
  1563. ],
  1564. "_active": true,
  1565. "_components": [
  1566. {
  1567. "__id__": 49
  1568. }
  1569. ],
  1570. "_prefab": {
  1571. "__id__": 50
  1572. },
  1573. "_opacity": 255,
  1574. "_color": {
  1575. "__type__": "cc.Color",
  1576. "r": 255,
  1577. "g": 255,
  1578. "b": 255,
  1579. "a": 255
  1580. },
  1581. "_contentSize": {
  1582. "__type__": "cc.Size",
  1583. "width": 860,
  1584. "height": 200
  1585. },
  1586. "_anchorPoint": {
  1587. "__type__": "cc.Vec2",
  1588. "x": 0,
  1589. "y": 0.5
  1590. },
  1591. "_trs": {
  1592. "__type__": "TypedArray",
  1593. "ctor": "Float64Array",
  1594. "array": [
  1595. 0,
  1596. 0,
  1597. 0,
  1598. 0,
  1599. 0,
  1600. 0,
  1601. 1,
  1602. 1,
  1603. 1,
  1604. 1
  1605. ]
  1606. },
  1607. "_eulerAngles": {
  1608. "__type__": "cc.Vec3",
  1609. "x": 0,
  1610. "y": 0,
  1611. "z": 0
  1612. },
  1613. "_skewX": 0,
  1614. "_skewY": 0,
  1615. "_is3DNode": false,
  1616. "_groupIndex": 0,
  1617. "groupIndex": 0,
  1618. "_id": ""
  1619. },
  1620. {
  1621. "__type__": "cc.Node",
  1622. "_name": "item",
  1623. "_objFlags": 0,
  1624. "_parent": {
  1625. "__id__": 44
  1626. },
  1627. "_children": [
  1628. {
  1629. "__id__": 46
  1630. }
  1631. ],
  1632. "_active": true,
  1633. "_components": [],
  1634. "_prefab": {
  1635. "__id__": 48
  1636. },
  1637. "_opacity": 255,
  1638. "_color": {
  1639. "__type__": "cc.Color",
  1640. "r": 255,
  1641. "g": 255,
  1642. "b": 255,
  1643. "a": 255
  1644. },
  1645. "_contentSize": {
  1646. "__type__": "cc.Size",
  1647. "width": 150,
  1648. "height": 150
  1649. },
  1650. "_anchorPoint": {
  1651. "__type__": "cc.Vec2",
  1652. "x": 0.5,
  1653. "y": 0.5
  1654. },
  1655. "_trs": {
  1656. "__type__": "TypedArray",
  1657. "ctor": "Float64Array",
  1658. "array": [
  1659. 100,
  1660. 0,
  1661. 0,
  1662. 0,
  1663. 0,
  1664. 0,
  1665. 1,
  1666. 1,
  1667. 1,
  1668. 1
  1669. ]
  1670. },
  1671. "_eulerAngles": {
  1672. "__type__": "cc.Vec3",
  1673. "x": 0,
  1674. "y": 0,
  1675. "z": 0
  1676. },
  1677. "_skewX": 0,
  1678. "_skewY": 0,
  1679. "_is3DNode": false,
  1680. "_groupIndex": 0,
  1681. "groupIndex": 0,
  1682. "_id": ""
  1683. },
  1684. {
  1685. "__type__": "cc.Node",
  1686. "_name": "itemParent",
  1687. "_objFlags": 0,
  1688. "_parent": {
  1689. "__id__": 45
  1690. },
  1691. "_children": [],
  1692. "_active": true,
  1693. "_components": [],
  1694. "_prefab": {
  1695. "__id__": 47
  1696. },
  1697. "_opacity": 255,
  1698. "_color": {
  1699. "__type__": "cc.Color",
  1700. "r": 255,
  1701. "g": 255,
  1702. "b": 255,
  1703. "a": 255
  1704. },
  1705. "_contentSize": {
  1706. "__type__": "cc.Size",
  1707. "width": 0,
  1708. "height": 0
  1709. },
  1710. "_anchorPoint": {
  1711. "__type__": "cc.Vec2",
  1712. "x": 0.5,
  1713. "y": 0.5
  1714. },
  1715. "_trs": {
  1716. "__type__": "TypedArray",
  1717. "ctor": "Float64Array",
  1718. "array": [
  1719. 0,
  1720. 0,
  1721. 0,
  1722. 0,
  1723. 0,
  1724. 0,
  1725. 1,
  1726. 0.9,
  1727. 0.9,
  1728. 0.9
  1729. ]
  1730. },
  1731. "_eulerAngles": {
  1732. "__type__": "cc.Vec3",
  1733. "x": 0,
  1734. "y": 0,
  1735. "z": 0
  1736. },
  1737. "_skewX": 0,
  1738. "_skewY": 0,
  1739. "_is3DNode": false,
  1740. "_groupIndex": 0,
  1741. "groupIndex": 0,
  1742. "_id": ""
  1743. },
  1744. {
  1745. "__type__": "cc.PrefabInfo",
  1746. "root": {
  1747. "__id__": 1
  1748. },
  1749. "asset": {
  1750. "__id__": 0
  1751. },
  1752. "fileId": "49HccBNjFFGrdFweghItIJ",
  1753. "sync": false
  1754. },
  1755. {
  1756. "__type__": "cc.PrefabInfo",
  1757. "root": {
  1758. "__id__": 1
  1759. },
  1760. "asset": {
  1761. "__id__": 0
  1762. },
  1763. "fileId": "57oVOHDjZMKog0kExNi+UA",
  1764. "sync": false
  1765. },
  1766. {
  1767. "__type__": "cc.Layout",
  1768. "_name": "",
  1769. "_objFlags": 0,
  1770. "node": {
  1771. "__id__": 44
  1772. },
  1773. "_enabled": true,
  1774. "_layoutSize": {
  1775. "__type__": "cc.Size",
  1776. "width": 860,
  1777. "height": 200
  1778. },
  1779. "_resize": 0,
  1780. "_N$layoutType": 1,
  1781. "_N$cellSize": {
  1782. "__type__": "cc.Size",
  1783. "width": 40,
  1784. "height": 40
  1785. },
  1786. "_N$startAxis": 0,
  1787. "_N$paddingLeft": 25,
  1788. "_N$paddingRight": 0,
  1789. "_N$paddingTop": 0,
  1790. "_N$paddingBottom": 0,
  1791. "_N$spacingX": 15,
  1792. "_N$spacingY": 0,
  1793. "_N$verticalDirection": 1,
  1794. "_N$horizontalDirection": 0,
  1795. "_N$affectedByScale": false,
  1796. "_id": ""
  1797. },
  1798. {
  1799. "__type__": "cc.PrefabInfo",
  1800. "root": {
  1801. "__id__": 1
  1802. },
  1803. "asset": {
  1804. "__id__": 0
  1805. },
  1806. "fileId": "57hHLOCbhPYJOi/gAPf3wf",
  1807. "sync": false
  1808. },
  1809. {
  1810. "__type__": "cc.Mask",
  1811. "_name": "",
  1812. "_objFlags": 0,
  1813. "node": {
  1814. "__id__": 43
  1815. },
  1816. "_enabled": true,
  1817. "_materials": [
  1818. {
  1819. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1820. }
  1821. ],
  1822. "_spriteFrame": null,
  1823. "_type": 0,
  1824. "_segments": 64,
  1825. "_N$alphaThreshold": 0,
  1826. "_N$inverted": false,
  1827. "_id": ""
  1828. },
  1829. {
  1830. "__type__": "cc.PrefabInfo",
  1831. "root": {
  1832. "__id__": 1
  1833. },
  1834. "asset": {
  1835. "__id__": 0
  1836. },
  1837. "fileId": "30NlEP455OTLXWsstBknxI",
  1838. "sync": false
  1839. },
  1840. {
  1841. "__type__": "cc.ScrollView",
  1842. "_name": "",
  1843. "_objFlags": 0,
  1844. "node": {
  1845. "__id__": 42
  1846. },
  1847. "_enabled": true,
  1848. "horizontal": true,
  1849. "vertical": false,
  1850. "inertia": true,
  1851. "brake": 0.75,
  1852. "elastic": false,
  1853. "bounceDuration": 0.23,
  1854. "scrollEvents": [],
  1855. "cancelInnerEvents": true,
  1856. "_N$content": {
  1857. "__id__": 44
  1858. },
  1859. "content": {
  1860. "__id__": 44
  1861. },
  1862. "_N$horizontalScrollBar": null,
  1863. "_N$verticalScrollBar": null,
  1864. "_id": ""
  1865. },
  1866. {
  1867. "__type__": "c8b0avBBlRLLLMX0ufI4l6A",
  1868. "_name": "",
  1869. "_objFlags": 0,
  1870. "node": {
  1871. "__id__": 42
  1872. },
  1873. "_enabled": true,
  1874. "templateType": 1,
  1875. "tmpNode": {
  1876. "__id__": 45
  1877. },
  1878. "tmpPrefab": null,
  1879. "_slideMode": 1,
  1880. "pageDistance": 0.3,
  1881. "pageChangeEvent": {
  1882. "__id__": 55
  1883. },
  1884. "_virtual": true,
  1885. "cyclic": false,
  1886. "lackCenter": false,
  1887. "lackSlide": false,
  1888. "_updateRate": 0,
  1889. "frameByFrameRenderNum": 0,
  1890. "renderEvent": {
  1891. "__id__": 56
  1892. },
  1893. "selectedMode": 0,
  1894. "repeatEventSingle": false,
  1895. "selectedEvent": null,
  1896. "_id": ""
  1897. },
  1898. {
  1899. "__type__": "cc.ClickEvent",
  1900. "target": null,
  1901. "component": "",
  1902. "_componentId": "",
  1903. "handler": "",
  1904. "customEventData": ""
  1905. },
  1906. {
  1907. "__type__": "cc.ClickEvent",
  1908. "target": {
  1909. "__id__": 1
  1910. },
  1911. "component": "",
  1912. "_componentId": "39c1biclyFKQ5DwjcX70/o1",
  1913. "handler": "initRoleItem",
  1914. "customEventData": ""
  1915. },
  1916. {
  1917. "__type__": "cc.PrefabInfo",
  1918. "root": {
  1919. "__id__": 1
  1920. },
  1921. "asset": {
  1922. "__id__": 0
  1923. },
  1924. "fileId": "b8YiUVaXVAR7KPmJ0gy1gC",
  1925. "sync": false
  1926. },
  1927. {
  1928. "__type__": "cc.Node",
  1929. "_name": "rewards",
  1930. "_objFlags": 0,
  1931. "_parent": {
  1932. "__id__": 1
  1933. },
  1934. "_children": [
  1935. {
  1936. "__id__": 59
  1937. }
  1938. ],
  1939. "_active": true,
  1940. "_components": [
  1941. {
  1942. "__id__": 69
  1943. },
  1944. {
  1945. "__id__": 70
  1946. }
  1947. ],
  1948. "_prefab": {
  1949. "__id__": 73
  1950. },
  1951. "_opacity": 255,
  1952. "_color": {
  1953. "__type__": "cc.Color",
  1954. "r": 255,
  1955. "g": 255,
  1956. "b": 255,
  1957. "a": 255
  1958. },
  1959. "_contentSize": {
  1960. "__type__": "cc.Size",
  1961. "width": 860,
  1962. "height": 200
  1963. },
  1964. "_anchorPoint": {
  1965. "__type__": "cc.Vec2",
  1966. "x": 0.5,
  1967. "y": 0.5
  1968. },
  1969. "_trs": {
  1970. "__type__": "TypedArray",
  1971. "ctor": "Float64Array",
  1972. "array": [
  1973. 0,
  1974. -105,
  1975. 0,
  1976. 0,
  1977. 0,
  1978. 0,
  1979. 1,
  1980. 1,
  1981. 1,
  1982. 1
  1983. ]
  1984. },
  1985. "_eulerAngles": {
  1986. "__type__": "cc.Vec3",
  1987. "x": 0,
  1988. "y": 0,
  1989. "z": 0
  1990. },
  1991. "_skewX": 0,
  1992. "_skewY": 0,
  1993. "_is3DNode": false,
  1994. "_groupIndex": 0,
  1995. "groupIndex": 0,
  1996. "_id": ""
  1997. },
  1998. {
  1999. "__type__": "cc.Node",
  2000. "_name": "view",
  2001. "_objFlags": 0,
  2002. "_parent": {
  2003. "__id__": 58
  2004. },
  2005. "_children": [
  2006. {
  2007. "__id__": 60
  2008. }
  2009. ],
  2010. "_active": true,
  2011. "_components": [
  2012. {
  2013. "__id__": 67
  2014. }
  2015. ],
  2016. "_prefab": {
  2017. "__id__": 68
  2018. },
  2019. "_opacity": 255,
  2020. "_color": {
  2021. "__type__": "cc.Color",
  2022. "r": 255,
  2023. "g": 255,
  2024. "b": 255,
  2025. "a": 255
  2026. },
  2027. "_contentSize": {
  2028. "__type__": "cc.Size",
  2029. "width": 860,
  2030. "height": 200
  2031. },
  2032. "_anchorPoint": {
  2033. "__type__": "cc.Vec2",
  2034. "x": 0,
  2035. "y": 0.5
  2036. },
  2037. "_trs": {
  2038. "__type__": "TypedArray",
  2039. "ctor": "Float64Array",
  2040. "array": [
  2041. -430,
  2042. 0,
  2043. 0,
  2044. 0,
  2045. 0,
  2046. 0,
  2047. 1,
  2048. 1,
  2049. 1,
  2050. 1
  2051. ]
  2052. },
  2053. "_eulerAngles": {
  2054. "__type__": "cc.Vec3",
  2055. "x": 0,
  2056. "y": 0,
  2057. "z": 0
  2058. },
  2059. "_skewX": 0,
  2060. "_skewY": 0,
  2061. "_is3DNode": false,
  2062. "_groupIndex": 0,
  2063. "groupIndex": 0,
  2064. "_id": ""
  2065. },
  2066. {
  2067. "__type__": "cc.Node",
  2068. "_name": "content",
  2069. "_objFlags": 0,
  2070. "_parent": {
  2071. "__id__": 59
  2072. },
  2073. "_children": [
  2074. {
  2075. "__id__": 61
  2076. }
  2077. ],
  2078. "_active": true,
  2079. "_components": [
  2080. {
  2081. "__id__": 65
  2082. }
  2083. ],
  2084. "_prefab": {
  2085. "__id__": 66
  2086. },
  2087. "_opacity": 255,
  2088. "_color": {
  2089. "__type__": "cc.Color",
  2090. "r": 255,
  2091. "g": 255,
  2092. "b": 255,
  2093. "a": 255
  2094. },
  2095. "_contentSize": {
  2096. "__type__": "cc.Size",
  2097. "width": 860,
  2098. "height": 200
  2099. },
  2100. "_anchorPoint": {
  2101. "__type__": "cc.Vec2",
  2102. "x": 0,
  2103. "y": 0.5
  2104. },
  2105. "_trs": {
  2106. "__type__": "TypedArray",
  2107. "ctor": "Float64Array",
  2108. "array": [
  2109. 0,
  2110. 0,
  2111. 0,
  2112. 0,
  2113. 0,
  2114. 0,
  2115. 1,
  2116. 1,
  2117. 1,
  2118. 1
  2119. ]
  2120. },
  2121. "_eulerAngles": {
  2122. "__type__": "cc.Vec3",
  2123. "x": 0,
  2124. "y": 0,
  2125. "z": 0
  2126. },
  2127. "_skewX": 0,
  2128. "_skewY": 0,
  2129. "_is3DNode": false,
  2130. "_groupIndex": 0,
  2131. "groupIndex": 0,
  2132. "_id": ""
  2133. },
  2134. {
  2135. "__type__": "cc.Node",
  2136. "_name": "item",
  2137. "_objFlags": 0,
  2138. "_parent": {
  2139. "__id__": 60
  2140. },
  2141. "_children": [
  2142. {
  2143. "__id__": 62
  2144. }
  2145. ],
  2146. "_active": true,
  2147. "_components": [],
  2148. "_prefab": {
  2149. "__id__": 64
  2150. },
  2151. "_opacity": 255,
  2152. "_color": {
  2153. "__type__": "cc.Color",
  2154. "r": 255,
  2155. "g": 255,
  2156. "b": 255,
  2157. "a": 255
  2158. },
  2159. "_contentSize": {
  2160. "__type__": "cc.Size",
  2161. "width": 150,
  2162. "height": 150
  2163. },
  2164. "_anchorPoint": {
  2165. "__type__": "cc.Vec2",
  2166. "x": 0.5,
  2167. "y": 0.5
  2168. },
  2169. "_trs": {
  2170. "__type__": "TypedArray",
  2171. "ctor": "Float64Array",
  2172. "array": [
  2173. 75,
  2174. 0,
  2175. 0,
  2176. 0,
  2177. 0,
  2178. 0,
  2179. 1,
  2180. 1,
  2181. 1,
  2182. 1
  2183. ]
  2184. },
  2185. "_eulerAngles": {
  2186. "__type__": "cc.Vec3",
  2187. "x": 0,
  2188. "y": 0,
  2189. "z": 0
  2190. },
  2191. "_skewX": 0,
  2192. "_skewY": 0,
  2193. "_is3DNode": false,
  2194. "_groupIndex": 0,
  2195. "groupIndex": 0,
  2196. "_id": ""
  2197. },
  2198. {
  2199. "__type__": "cc.Node",
  2200. "_name": "itemParent",
  2201. "_objFlags": 0,
  2202. "_parent": {
  2203. "__id__": 61
  2204. },
  2205. "_children": [],
  2206. "_active": true,
  2207. "_components": [],
  2208. "_prefab": {
  2209. "__id__": 63
  2210. },
  2211. "_opacity": 255,
  2212. "_color": {
  2213. "__type__": "cc.Color",
  2214. "r": 255,
  2215. "g": 255,
  2216. "b": 255,
  2217. "a": 255
  2218. },
  2219. "_contentSize": {
  2220. "__type__": "cc.Size",
  2221. "width": 166,
  2222. "height": 166
  2223. },
  2224. "_anchorPoint": {
  2225. "__type__": "cc.Vec2",
  2226. "x": 0.5,
  2227. "y": 0.5
  2228. },
  2229. "_trs": {
  2230. "__type__": "TypedArray",
  2231. "ctor": "Float64Array",
  2232. "array": [
  2233. 0,
  2234. 0,
  2235. 0,
  2236. 0,
  2237. 0,
  2238. 0,
  2239. 1,
  2240. 0.9,
  2241. 0.9,
  2242. 0.9
  2243. ]
  2244. },
  2245. "_eulerAngles": {
  2246. "__type__": "cc.Vec3",
  2247. "x": 0,
  2248. "y": 0,
  2249. "z": 0
  2250. },
  2251. "_skewX": 0,
  2252. "_skewY": 0,
  2253. "_is3DNode": false,
  2254. "_groupIndex": 0,
  2255. "groupIndex": 0,
  2256. "_id": ""
  2257. },
  2258. {
  2259. "__type__": "cc.PrefabInfo",
  2260. "root": {
  2261. "__id__": 1
  2262. },
  2263. "asset": {
  2264. "__id__": 0
  2265. },
  2266. "fileId": "87cWXjALRE5ZZHyiE5O2WR",
  2267. "sync": false
  2268. },
  2269. {
  2270. "__type__": "cc.PrefabInfo",
  2271. "root": {
  2272. "__id__": 1
  2273. },
  2274. "asset": {
  2275. "__id__": 0
  2276. },
  2277. "fileId": "67XDDU00hJ9pq34Hk5jRqx",
  2278. "sync": false
  2279. },
  2280. {
  2281. "__type__": "cc.Layout",
  2282. "_name": "",
  2283. "_objFlags": 0,
  2284. "node": {
  2285. "__id__": 60
  2286. },
  2287. "_enabled": true,
  2288. "_layoutSize": {
  2289. "__type__": "cc.Size",
  2290. "width": 860,
  2291. "height": 200
  2292. },
  2293. "_resize": 0,
  2294. "_N$layoutType": 1,
  2295. "_N$cellSize": {
  2296. "__type__": "cc.Size",
  2297. "width": 40,
  2298. "height": 40
  2299. },
  2300. "_N$startAxis": 0,
  2301. "_N$paddingLeft": 0,
  2302. "_N$paddingRight": 0,
  2303. "_N$paddingTop": 0,
  2304. "_N$paddingBottom": 0,
  2305. "_N$spacingX": 0,
  2306. "_N$spacingY": 0,
  2307. "_N$verticalDirection": 1,
  2308. "_N$horizontalDirection": 0,
  2309. "_N$affectedByScale": false,
  2310. "_id": ""
  2311. },
  2312. {
  2313. "__type__": "cc.PrefabInfo",
  2314. "root": {
  2315. "__id__": 1
  2316. },
  2317. "asset": {
  2318. "__id__": 0
  2319. },
  2320. "fileId": "dfV1a3u4lETbYcWGP5N0zy",
  2321. "sync": false
  2322. },
  2323. {
  2324. "__type__": "cc.Mask",
  2325. "_name": "",
  2326. "_objFlags": 0,
  2327. "node": {
  2328. "__id__": 59
  2329. },
  2330. "_enabled": true,
  2331. "_materials": [
  2332. {
  2333. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2334. }
  2335. ],
  2336. "_spriteFrame": null,
  2337. "_type": 0,
  2338. "_segments": 64,
  2339. "_N$alphaThreshold": 0,
  2340. "_N$inverted": false,
  2341. "_id": ""
  2342. },
  2343. {
  2344. "__type__": "cc.PrefabInfo",
  2345. "root": {
  2346. "__id__": 1
  2347. },
  2348. "asset": {
  2349. "__id__": 0
  2350. },
  2351. "fileId": "9bP+UN7eZP7YAd/mFM01++",
  2352. "sync": false
  2353. },
  2354. {
  2355. "__type__": "cc.ScrollView",
  2356. "_name": "",
  2357. "_objFlags": 0,
  2358. "node": {
  2359. "__id__": 58
  2360. },
  2361. "_enabled": true,
  2362. "horizontal": true,
  2363. "vertical": false,
  2364. "inertia": true,
  2365. "brake": 0.75,
  2366. "elastic": false,
  2367. "bounceDuration": 0.23,
  2368. "scrollEvents": [],
  2369. "cancelInnerEvents": true,
  2370. "_N$content": {
  2371. "__id__": 60
  2372. },
  2373. "content": {
  2374. "__id__": 60
  2375. },
  2376. "_N$horizontalScrollBar": null,
  2377. "_N$verticalScrollBar": null,
  2378. "_id": ""
  2379. },
  2380. {
  2381. "__type__": "c8b0avBBlRLLLMX0ufI4l6A",
  2382. "_name": "",
  2383. "_objFlags": 0,
  2384. "node": {
  2385. "__id__": 58
  2386. },
  2387. "_enabled": true,
  2388. "templateType": 1,
  2389. "tmpNode": {
  2390. "__id__": 61
  2391. },
  2392. "tmpPrefab": null,
  2393. "_slideMode": 1,
  2394. "pageDistance": 0.3,
  2395. "pageChangeEvent": {
  2396. "__id__": 71
  2397. },
  2398. "_virtual": true,
  2399. "cyclic": false,
  2400. "lackCenter": true,
  2401. "lackSlide": false,
  2402. "_updateRate": 0,
  2403. "frameByFrameRenderNum": 0,
  2404. "renderEvent": {
  2405. "__id__": 72
  2406. },
  2407. "selectedMode": 0,
  2408. "repeatEventSingle": false,
  2409. "selectedEvent": null,
  2410. "_id": ""
  2411. },
  2412. {
  2413. "__type__": "cc.ClickEvent",
  2414. "target": null,
  2415. "component": "",
  2416. "_componentId": "",
  2417. "handler": "",
  2418. "customEventData": ""
  2419. },
  2420. {
  2421. "__type__": "cc.ClickEvent",
  2422. "target": {
  2423. "__id__": 1
  2424. },
  2425. "component": "",
  2426. "_componentId": "39c1biclyFKQ5DwjcX70/o1",
  2427. "handler": "initGoodsItem",
  2428. "customEventData": ""
  2429. },
  2430. {
  2431. "__type__": "cc.PrefabInfo",
  2432. "root": {
  2433. "__id__": 1
  2434. },
  2435. "asset": {
  2436. "__id__": 0
  2437. },
  2438. "fileId": "49gh7AxPdHKIXHPXUo18eQ",
  2439. "sync": false
  2440. },
  2441. {
  2442. "__type__": "39c1biclyFKQ5DwjcX70/o1",
  2443. "_name": "",
  2444. "_objFlags": 0,
  2445. "node": {
  2446. "__id__": 1
  2447. },
  2448. "_enabled": true,
  2449. "quickClose": false,
  2450. "cache": false,
  2451. "showType": 500,
  2452. "prevent": true,
  2453. "_id": ""
  2454. },
  2455. {
  2456. "__type__": "cc.PrefabInfo",
  2457. "root": {
  2458. "__id__": 1
  2459. },
  2460. "asset": {
  2461. "__id__": 0
  2462. },
  2463. "fileId": "",
  2464. "sync": false
  2465. }
  2466. ]