RewardItem.prefab 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "RewardItem",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "RewardItem",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 10
  26. },
  27. {
  28. "__id__": 16
  29. },
  30. {
  31. "__id__": 86
  32. }
  33. ],
  34. "_active": true,
  35. "_components": [
  36. {
  37. "__id__": 92
  38. },
  39. {
  40. "__id__": 94
  41. },
  42. {
  43. "__id__": 96
  44. }
  45. ],
  46. "_prefab": {
  47. "__id__": 98
  48. },
  49. "_lpos": {
  50. "__type__": "cc.Vec3",
  51. "x": -192.901,
  52. "y": 345.0609999999999,
  53. "z": 0
  54. },
  55. "_lrot": {
  56. "__type__": "cc.Quat",
  57. "x": 0,
  58. "y": 0,
  59. "z": 0,
  60. "w": 1
  61. },
  62. "_lscale": {
  63. "__type__": "cc.Vec3",
  64. "x": 1,
  65. "y": 1,
  66. "z": 1
  67. },
  68. "_mobility": 0,
  69. "_layer": 33554432,
  70. "_euler": {
  71. "__type__": "cc.Vec3",
  72. "x": 0,
  73. "y": 0,
  74. "z": 0
  75. },
  76. "_id": ""
  77. },
  78. {
  79. "__type__": "cc.Node",
  80. "_name": "icon_bg",
  81. "_objFlags": 0,
  82. "__editorExtras__": {},
  83. "_parent": {
  84. "__id__": 1
  85. },
  86. "_children": [],
  87. "_active": true,
  88. "_components": [
  89. {
  90. "__id__": 3
  91. },
  92. {
  93. "__id__": 5
  94. },
  95. {
  96. "__id__": 7
  97. }
  98. ],
  99. "_prefab": {
  100. "__id__": 9
  101. },
  102. "_lpos": {
  103. "__type__": "cc.Vec3",
  104. "x": -0.5079999999999814,
  105. "y": 13.652000000000044,
  106. "z": 0
  107. },
  108. "_lrot": {
  109. "__type__": "cc.Quat",
  110. "x": 0,
  111. "y": 0,
  112. "z": 0,
  113. "w": 1
  114. },
  115. "_lscale": {
  116. "__type__": "cc.Vec3",
  117. "x": 1,
  118. "y": 1,
  119. "z": 1
  120. },
  121. "_mobility": 0,
  122. "_layer": 33554432,
  123. "_euler": {
  124. "__type__": "cc.Vec3",
  125. "x": 0,
  126. "y": 0,
  127. "z": 0
  128. },
  129. "_id": ""
  130. },
  131. {
  132. "__type__": "cc.UITransform",
  133. "_name": "",
  134. "_objFlags": 0,
  135. "__editorExtras__": {},
  136. "node": {
  137. "__id__": 2
  138. },
  139. "_enabled": true,
  140. "__prefab": {
  141. "__id__": 4
  142. },
  143. "_contentSize": {
  144. "__type__": "cc.Size",
  145. "width": 150,
  146. "height": 150
  147. },
  148. "_anchorPoint": {
  149. "__type__": "cc.Vec2",
  150. "x": 0.5,
  151. "y": 0.5
  152. },
  153. "_id": ""
  154. },
  155. {
  156. "__type__": "cc.CompPrefabInfo",
  157. "fileId": "75I3MT3yJJlJsMr97S5nce"
  158. },
  159. {
  160. "__type__": "cc.Sprite",
  161. "_name": "",
  162. "_objFlags": 0,
  163. "__editorExtras__": {},
  164. "node": {
  165. "__id__": 2
  166. },
  167. "_enabled": true,
  168. "__prefab": {
  169. "__id__": 6
  170. },
  171. "_customMaterial": null,
  172. "_srcBlendFactor": 2,
  173. "_dstBlendFactor": 4,
  174. "_color": {
  175. "__type__": "cc.Color",
  176. "r": 255,
  177. "g": 255,
  178. "b": 255,
  179. "a": 255
  180. },
  181. "_spriteFrame": {
  182. "__uuid__": "f1fa8edd-957f-4cd3-93a8-9fc4e783c5a5@f9941",
  183. "__expectedType__": "cc.SpriteFrame"
  184. },
  185. "_type": 0,
  186. "_fillType": 0,
  187. "_sizeMode": 0,
  188. "_fillCenter": {
  189. "__type__": "cc.Vec2",
  190. "x": 0,
  191. "y": 0
  192. },
  193. "_fillStart": 0,
  194. "_fillRange": 0,
  195. "_isTrimmedMode": true,
  196. "_useGrayscale": false,
  197. "_atlas": null,
  198. "_id": ""
  199. },
  200. {
  201. "__type__": "cc.CompPrefabInfo",
  202. "fileId": "dfAUpi+9BA6LHcsVNmQgQZ"
  203. },
  204. {
  205. "__type__": "cc.Widget",
  206. "_name": "",
  207. "_objFlags": 0,
  208. "__editorExtras__": {},
  209. "node": {
  210. "__id__": 2
  211. },
  212. "_enabled": false,
  213. "__prefab": {
  214. "__id__": 8
  215. },
  216. "_alignFlags": 45,
  217. "_target": null,
  218. "_left": 0,
  219. "_right": 0,
  220. "_top": -21.454000000000036,
  221. "_bottom": 31.206000000000046,
  222. "_horizontalCenter": 0,
  223. "_verticalCenter": 0,
  224. "_isAbsLeft": true,
  225. "_isAbsRight": true,
  226. "_isAbsTop": true,
  227. "_isAbsBottom": true,
  228. "_isAbsHorizontalCenter": true,
  229. "_isAbsVerticalCenter": true,
  230. "_originalWidth": 360,
  231. "_originalHeight": 360,
  232. "_alignMode": 2,
  233. "_lockFlags": 0,
  234. "_id": ""
  235. },
  236. {
  237. "__type__": "cc.CompPrefabInfo",
  238. "fileId": "5akhimZI5IB5LmRarjIser"
  239. },
  240. {
  241. "__type__": "cc.PrefabInfo",
  242. "root": {
  243. "__id__": 1
  244. },
  245. "asset": {
  246. "__id__": 0
  247. },
  248. "fileId": "86qzqGi8tDoo8MVVJQ+/u7",
  249. "instance": null,
  250. "targetOverrides": null,
  251. "nestedPrefabInstanceRoots": null
  252. },
  253. {
  254. "__type__": "cc.Node",
  255. "_name": "lbl_name",
  256. "_objFlags": 0,
  257. "__editorExtras__": {},
  258. "_parent": {
  259. "__id__": 1
  260. },
  261. "_children": [],
  262. "_active": true,
  263. "_components": [
  264. {
  265. "__id__": 11
  266. },
  267. {
  268. "__id__": 13
  269. }
  270. ],
  271. "_prefab": {
  272. "__id__": 15
  273. },
  274. "_lpos": {
  275. "__type__": "cc.Vec3",
  276. "x": -0.12199999999999989,
  277. "y": -79.11399999999992,
  278. "z": 0
  279. },
  280. "_lrot": {
  281. "__type__": "cc.Quat",
  282. "x": 0,
  283. "y": 0,
  284. "z": 0,
  285. "w": 1
  286. },
  287. "_lscale": {
  288. "__type__": "cc.Vec3",
  289. "x": 1,
  290. "y": 1,
  291. "z": 1
  292. },
  293. "_mobility": 0,
  294. "_layer": 33554432,
  295. "_euler": {
  296. "__type__": "cc.Vec3",
  297. "x": 0,
  298. "y": 0,
  299. "z": 0
  300. },
  301. "_id": ""
  302. },
  303. {
  304. "__type__": "cc.UITransform",
  305. "_name": "",
  306. "_objFlags": 0,
  307. "__editorExtras__": {},
  308. "node": {
  309. "__id__": 10
  310. },
  311. "_enabled": true,
  312. "__prefab": {
  313. "__id__": 12
  314. },
  315. "_contentSize": {
  316. "__type__": "cc.Size",
  317. "width": 143.45180078125,
  318. "height": 35.5
  319. },
  320. "_anchorPoint": {
  321. "__type__": "cc.Vec2",
  322. "x": 0.5,
  323. "y": 0.5
  324. },
  325. "_id": ""
  326. },
  327. {
  328. "__type__": "cc.CompPrefabInfo",
  329. "fileId": "d4HK4L5O1G8IOTJch9CfJo"
  330. },
  331. {
  332. "__type__": "cc.Label",
  333. "_name": "",
  334. "_objFlags": 0,
  335. "__editorExtras__": {},
  336. "node": {
  337. "__id__": 10
  338. },
  339. "_enabled": true,
  340. "__prefab": {
  341. "__id__": 14
  342. },
  343. "_customMaterial": null,
  344. "_srcBlendFactor": 2,
  345. "_dstBlendFactor": 4,
  346. "_color": {
  347. "__type__": "cc.Color",
  348. "r": 192,
  349. "g": 242,
  350. "b": 131,
  351. "a": 255
  352. },
  353. "_string": "Diamond",
  354. "_horizontalAlign": 1,
  355. "_verticalAlign": 1,
  356. "_actualFontSize": 21,
  357. "_fontSize": 20,
  358. "_fontFamily": "Arial",
  359. "_lineHeight": 20,
  360. "_overflow": 2,
  361. "_enableWrapText": true,
  362. "_font": null,
  363. "_isSystemFontUsed": true,
  364. "_spacingX": 0,
  365. "_isItalic": false,
  366. "_isBold": false,
  367. "_isUnderline": false,
  368. "_underlineHeight": 2,
  369. "_cacheMode": 0,
  370. "_enableOutline": true,
  371. "_outlineColor": {
  372. "__type__": "cc.Color",
  373. "r": 0,
  374. "g": 0,
  375. "b": 0,
  376. "a": 255
  377. },
  378. "_outlineWidth": 2,
  379. "_enableShadow": false,
  380. "_shadowColor": {
  381. "__type__": "cc.Color",
  382. "r": 0,
  383. "g": 0,
  384. "b": 0,
  385. "a": 255
  386. },
  387. "_shadowOffset": {
  388. "__type__": "cc.Vec2",
  389. "x": 2,
  390. "y": 2
  391. },
  392. "_shadowBlur": 2,
  393. "_id": ""
  394. },
  395. {
  396. "__type__": "cc.CompPrefabInfo",
  397. "fileId": "45Pmf2GUxBsq8WDyXacIcK"
  398. },
  399. {
  400. "__type__": "cc.PrefabInfo",
  401. "root": {
  402. "__id__": 1
  403. },
  404. "asset": {
  405. "__id__": 0
  406. },
  407. "fileId": "60JY6drnhBK4h3lMQvOEar",
  408. "instance": null,
  409. "targetOverrides": null,
  410. "nestedPrefabInstanceRoots": null
  411. },
  412. {
  413. "__type__": "cc.Node",
  414. "_name": "icon_layout",
  415. "_objFlags": 0,
  416. "__editorExtras__": {},
  417. "_parent": {
  418. "__id__": 1
  419. },
  420. "_children": [
  421. {
  422. "__id__": 17
  423. },
  424. {
  425. "__id__": 23
  426. },
  427. {
  428. "__id__": 29
  429. },
  430. {
  431. "__id__": 35
  432. },
  433. {
  434. "__id__": 41
  435. },
  436. {
  437. "__id__": 47
  438. },
  439. {
  440. "__id__": 53
  441. },
  442. {
  443. "__id__": 59
  444. },
  445. {
  446. "__id__": 65
  447. },
  448. {
  449. "__id__": 71
  450. },
  451. {
  452. "__id__": 77
  453. }
  454. ],
  455. "_active": true,
  456. "_components": [
  457. {
  458. "__id__": 83
  459. }
  460. ],
  461. "_prefab": {
  462. "__id__": 85
  463. },
  464. "_lpos": {
  465. "__type__": "cc.Vec3",
  466. "x": 0,
  467. "y": 23.250999999999976,
  468. "z": 0
  469. },
  470. "_lrot": {
  471. "__type__": "cc.Quat",
  472. "x": 0,
  473. "y": 0,
  474. "z": 0,
  475. "w": 1
  476. },
  477. "_lscale": {
  478. "__type__": "cc.Vec3",
  479. "x": 1,
  480. "y": 1,
  481. "z": 1
  482. },
  483. "_mobility": 0,
  484. "_layer": 33554432,
  485. "_euler": {
  486. "__type__": "cc.Vec3",
  487. "x": 0,
  488. "y": 0,
  489. "z": 0
  490. },
  491. "_id": ""
  492. },
  493. {
  494. "__type__": "cc.Node",
  495. "_name": "icon_pog",
  496. "_objFlags": 0,
  497. "__editorExtras__": {},
  498. "_parent": {
  499. "__id__": 16
  500. },
  501. "_children": [],
  502. "_active": false,
  503. "_components": [
  504. {
  505. "__id__": 18
  506. },
  507. {
  508. "__id__": 20
  509. }
  510. ],
  511. "_prefab": {
  512. "__id__": 22
  513. },
  514. "_lpos": {
  515. "__type__": "cc.Vec3",
  516. "x": 0,
  517. "y": 0,
  518. "z": 0
  519. },
  520. "_lrot": {
  521. "__type__": "cc.Quat",
  522. "x": 0,
  523. "y": 0,
  524. "z": 0,
  525. "w": 1
  526. },
  527. "_lscale": {
  528. "__type__": "cc.Vec3",
  529. "x": 1,
  530. "y": 1,
  531. "z": 1
  532. },
  533. "_mobility": 0,
  534. "_layer": 33554432,
  535. "_euler": {
  536. "__type__": "cc.Vec3",
  537. "x": 0,
  538. "y": 0,
  539. "z": 0
  540. },
  541. "_id": ""
  542. },
  543. {
  544. "__type__": "cc.UITransform",
  545. "_name": "",
  546. "_objFlags": 0,
  547. "__editorExtras__": {},
  548. "node": {
  549. "__id__": 17
  550. },
  551. "_enabled": true,
  552. "__prefab": {
  553. "__id__": 19
  554. },
  555. "_contentSize": {
  556. "__type__": "cc.Size",
  557. "width": 45,
  558. "height": 45
  559. },
  560. "_anchorPoint": {
  561. "__type__": "cc.Vec2",
  562. "x": 0.5,
  563. "y": 0.5
  564. },
  565. "_id": ""
  566. },
  567. {
  568. "__type__": "cc.CompPrefabInfo",
  569. "fileId": "efXGAs1jhLWbA9SjBjWDk4"
  570. },
  571. {
  572. "__type__": "cc.Sprite",
  573. "_name": "",
  574. "_objFlags": 0,
  575. "__editorExtras__": {},
  576. "node": {
  577. "__id__": 17
  578. },
  579. "_enabled": true,
  580. "__prefab": {
  581. "__id__": 21
  582. },
  583. "_customMaterial": null,
  584. "_srcBlendFactor": 2,
  585. "_dstBlendFactor": 4,
  586. "_color": {
  587. "__type__": "cc.Color",
  588. "r": 255,
  589. "g": 255,
  590. "b": 255,
  591. "a": 255
  592. },
  593. "_spriteFrame": {
  594. "__uuid__": "a02ea29d-ce4c-481a-a758-2b08eafe1ab1@f9941",
  595. "__expectedType__": "cc.SpriteFrame"
  596. },
  597. "_type": 0,
  598. "_fillType": 0,
  599. "_sizeMode": 0,
  600. "_fillCenter": {
  601. "__type__": "cc.Vec2",
  602. "x": 0,
  603. "y": 0
  604. },
  605. "_fillStart": 0,
  606. "_fillRange": 0,
  607. "_isTrimmedMode": true,
  608. "_useGrayscale": false,
  609. "_atlas": null,
  610. "_id": ""
  611. },
  612. {
  613. "__type__": "cc.CompPrefabInfo",
  614. "fileId": "7e+dILG6BERZCGaZzzAi4n"
  615. },
  616. {
  617. "__type__": "cc.PrefabInfo",
  618. "root": {
  619. "__id__": 1
  620. },
  621. "asset": {
  622. "__id__": 0
  623. },
  624. "fileId": "c4j3O/gslPl4xy4/X4EUOP",
  625. "instance": null,
  626. "targetOverrides": null,
  627. "nestedPrefabInstanceRoots": null
  628. },
  629. {
  630. "__type__": "cc.Node",
  631. "_name": "icon_crit",
  632. "_objFlags": 0,
  633. "__editorExtras__": {},
  634. "_parent": {
  635. "__id__": 16
  636. },
  637. "_children": [],
  638. "_active": false,
  639. "_components": [
  640. {
  641. "__id__": 24
  642. },
  643. {
  644. "__id__": 26
  645. }
  646. ],
  647. "_prefab": {
  648. "__id__": 28
  649. },
  650. "_lpos": {
  651. "__type__": "cc.Vec3",
  652. "x": 0,
  653. "y": 0,
  654. "z": 0
  655. },
  656. "_lrot": {
  657. "__type__": "cc.Quat",
  658. "x": 0,
  659. "y": 0,
  660. "z": 0,
  661. "w": 1
  662. },
  663. "_lscale": {
  664. "__type__": "cc.Vec3",
  665. "x": 1,
  666. "y": 1,
  667. "z": 1
  668. },
  669. "_mobility": 0,
  670. "_layer": 33554432,
  671. "_euler": {
  672. "__type__": "cc.Vec3",
  673. "x": 0,
  674. "y": 0,
  675. "z": 0
  676. },
  677. "_id": ""
  678. },
  679. {
  680. "__type__": "cc.UITransform",
  681. "_name": "",
  682. "_objFlags": 0,
  683. "__editorExtras__": {},
  684. "node": {
  685. "__id__": 23
  686. },
  687. "_enabled": true,
  688. "__prefab": {
  689. "__id__": 25
  690. },
  691. "_contentSize": {
  692. "__type__": "cc.Size",
  693. "width": 80,
  694. "height": 100
  695. },
  696. "_anchorPoint": {
  697. "__type__": "cc.Vec2",
  698. "x": 0.5,
  699. "y": 0.5
  700. },
  701. "_id": ""
  702. },
  703. {
  704. "__type__": "cc.CompPrefabInfo",
  705. "fileId": "d2KqGxMyVNC5AemuH3XE+O"
  706. },
  707. {
  708. "__type__": "cc.Sprite",
  709. "_name": "",
  710. "_objFlags": 0,
  711. "__editorExtras__": {},
  712. "node": {
  713. "__id__": 23
  714. },
  715. "_enabled": true,
  716. "__prefab": {
  717. "__id__": 27
  718. },
  719. "_customMaterial": null,
  720. "_srcBlendFactor": 2,
  721. "_dstBlendFactor": 4,
  722. "_color": {
  723. "__type__": "cc.Color",
  724. "r": 255,
  725. "g": 255,
  726. "b": 255,
  727. "a": 255
  728. },
  729. "_spriteFrame": {
  730. "__uuid__": "acaa2033-4af6-4d9c-9b45-b729786f9e4a@f9941",
  731. "__expectedType__": "cc.SpriteFrame"
  732. },
  733. "_type": 0,
  734. "_fillType": 0,
  735. "_sizeMode": 0,
  736. "_fillCenter": {
  737. "__type__": "cc.Vec2",
  738. "x": 0,
  739. "y": 0
  740. },
  741. "_fillStart": 0,
  742. "_fillRange": 0,
  743. "_isTrimmedMode": true,
  744. "_useGrayscale": false,
  745. "_atlas": null,
  746. "_id": ""
  747. },
  748. {
  749. "__type__": "cc.CompPrefabInfo",
  750. "fileId": "cafh8jLQlCfr5tSQcpCNOM"
  751. },
  752. {
  753. "__type__": "cc.PrefabInfo",
  754. "root": {
  755. "__id__": 1
  756. },
  757. "asset": {
  758. "__id__": 0
  759. },
  760. "fileId": "c7GjSCE61EMbT5JES/9sCk",
  761. "instance": null,
  762. "targetOverrides": null,
  763. "nestedPrefabInstanceRoots": null
  764. },
  765. {
  766. "__type__": "cc.Node",
  767. "_name": "icon_tog",
  768. "_objFlags": 0,
  769. "__editorExtras__": {},
  770. "_parent": {
  771. "__id__": 16
  772. },
  773. "_children": [],
  774. "_active": false,
  775. "_components": [
  776. {
  777. "__id__": 30
  778. },
  779. {
  780. "__id__": 32
  781. }
  782. ],
  783. "_prefab": {
  784. "__id__": 34
  785. },
  786. "_lpos": {
  787. "__type__": "cc.Vec3",
  788. "x": 0,
  789. "y": 0,
  790. "z": 0
  791. },
  792. "_lrot": {
  793. "__type__": "cc.Quat",
  794. "x": 0,
  795. "y": 0,
  796. "z": 0,
  797. "w": 1
  798. },
  799. "_lscale": {
  800. "__type__": "cc.Vec3",
  801. "x": 0.6,
  802. "y": 0.6,
  803. "z": 1
  804. },
  805. "_mobility": 0,
  806. "_layer": 33554432,
  807. "_euler": {
  808. "__type__": "cc.Vec3",
  809. "x": 0,
  810. "y": 0,
  811. "z": 0
  812. },
  813. "_id": ""
  814. },
  815. {
  816. "__type__": "cc.UITransform",
  817. "_name": "",
  818. "_objFlags": 0,
  819. "__editorExtras__": {},
  820. "node": {
  821. "__id__": 29
  822. },
  823. "_enabled": true,
  824. "__prefab": {
  825. "__id__": 31
  826. },
  827. "_contentSize": {
  828. "__type__": "cc.Size",
  829. "width": 128,
  830. "height": 128
  831. },
  832. "_anchorPoint": {
  833. "__type__": "cc.Vec2",
  834. "x": 0.5,
  835. "y": 0.5
  836. },
  837. "_id": ""
  838. },
  839. {
  840. "__type__": "cc.CompPrefabInfo",
  841. "fileId": "3cu2iPjsxKK4Kc9Pf5mCkA"
  842. },
  843. {
  844. "__type__": "cc.Sprite",
  845. "_name": "",
  846. "_objFlags": 0,
  847. "__editorExtras__": {},
  848. "node": {
  849. "__id__": 29
  850. },
  851. "_enabled": true,
  852. "__prefab": {
  853. "__id__": 33
  854. },
  855. "_customMaterial": null,
  856. "_srcBlendFactor": 2,
  857. "_dstBlendFactor": 4,
  858. "_color": {
  859. "__type__": "cc.Color",
  860. "r": 255,
  861. "g": 255,
  862. "b": 255,
  863. "a": 255
  864. },
  865. "_spriteFrame": {
  866. "__uuid__": "04378452-f01a-47ac-a43f-75adc3f5934e@f9941",
  867. "__expectedType__": "cc.SpriteFrame"
  868. },
  869. "_type": 0,
  870. "_fillType": 0,
  871. "_sizeMode": 0,
  872. "_fillCenter": {
  873. "__type__": "cc.Vec2",
  874. "x": 0,
  875. "y": 0
  876. },
  877. "_fillStart": 0,
  878. "_fillRange": 0,
  879. "_isTrimmedMode": true,
  880. "_useGrayscale": false,
  881. "_atlas": null,
  882. "_id": ""
  883. },
  884. {
  885. "__type__": "cc.CompPrefabInfo",
  886. "fileId": "c02ulmIVRE+pCOJC4G21Gy"
  887. },
  888. {
  889. "__type__": "cc.PrefabInfo",
  890. "root": {
  891. "__id__": 1
  892. },
  893. "asset": {
  894. "__id__": 0
  895. },
  896. "fileId": "cbupcfO51JSoUSuTiwruc5",
  897. "instance": null,
  898. "targetOverrides": null,
  899. "nestedPrefabInstanceRoots": null
  900. },
  901. {
  902. "__type__": "cc.Node",
  903. "_name": "icon_nothing",
  904. "_objFlags": 0,
  905. "__editorExtras__": {},
  906. "_parent": {
  907. "__id__": 16
  908. },
  909. "_children": [],
  910. "_active": false,
  911. "_components": [
  912. {
  913. "__id__": 36
  914. },
  915. {
  916. "__id__": 38
  917. }
  918. ],
  919. "_prefab": {
  920. "__id__": 40
  921. },
  922. "_lpos": {
  923. "__type__": "cc.Vec3",
  924. "x": 0,
  925. "y": -7.435999999999922,
  926. "z": 0
  927. },
  928. "_lrot": {
  929. "__type__": "cc.Quat",
  930. "x": 0,
  931. "y": 0,
  932. "z": 0,
  933. "w": 1
  934. },
  935. "_lscale": {
  936. "__type__": "cc.Vec3",
  937. "x": 1,
  938. "y": 1,
  939. "z": 1
  940. },
  941. "_mobility": 0,
  942. "_layer": 33554432,
  943. "_euler": {
  944. "__type__": "cc.Vec3",
  945. "x": 0,
  946. "y": 0,
  947. "z": 0
  948. },
  949. "_id": ""
  950. },
  951. {
  952. "__type__": "cc.UITransform",
  953. "_name": "",
  954. "_objFlags": 0,
  955. "__editorExtras__": {},
  956. "node": {
  957. "__id__": 35
  958. },
  959. "_enabled": true,
  960. "__prefab": {
  961. "__id__": 37
  962. },
  963. "_contentSize": {
  964. "__type__": "cc.Size",
  965. "width": 93,
  966. "height": 68
  967. },
  968. "_anchorPoint": {
  969. "__type__": "cc.Vec2",
  970. "x": 0.5,
  971. "y": 0.5
  972. },
  973. "_id": ""
  974. },
  975. {
  976. "__type__": "cc.CompPrefabInfo",
  977. "fileId": "23FL9pgYREPLYd3u9F72R8"
  978. },
  979. {
  980. "__type__": "cc.Sprite",
  981. "_name": "",
  982. "_objFlags": 0,
  983. "__editorExtras__": {},
  984. "node": {
  985. "__id__": 35
  986. },
  987. "_enabled": true,
  988. "__prefab": {
  989. "__id__": 39
  990. },
  991. "_customMaterial": null,
  992. "_srcBlendFactor": 2,
  993. "_dstBlendFactor": 4,
  994. "_color": {
  995. "__type__": "cc.Color",
  996. "r": 255,
  997. "g": 255,
  998. "b": 255,
  999. "a": 255
  1000. },
  1001. "_spriteFrame": {
  1002. "__uuid__": "44aa1406-cc97-4ae5-a579-6c137cae76ab@f9941",
  1003. "__expectedType__": "cc.SpriteFrame"
  1004. },
  1005. "_type": 0,
  1006. "_fillType": 0,
  1007. "_sizeMode": 1,
  1008. "_fillCenter": {
  1009. "__type__": "cc.Vec2",
  1010. "x": 0,
  1011. "y": 0
  1012. },
  1013. "_fillStart": 0,
  1014. "_fillRange": 0,
  1015. "_isTrimmedMode": true,
  1016. "_useGrayscale": false,
  1017. "_atlas": null,
  1018. "_id": ""
  1019. },
  1020. {
  1021. "__type__": "cc.CompPrefabInfo",
  1022. "fileId": "90Owy9lXxOjrXVne/ZOKe/"
  1023. },
  1024. {
  1025. "__type__": "cc.PrefabInfo",
  1026. "root": {
  1027. "__id__": 1
  1028. },
  1029. "asset": {
  1030. "__id__": 0
  1031. },
  1032. "fileId": "30PflfK09LyrkMWIjPQcTF",
  1033. "instance": null,
  1034. "targetOverrides": null,
  1035. "nestedPrefabInstanceRoots": null
  1036. },
  1037. {
  1038. "__type__": "cc.Node",
  1039. "_name": "icon_estog",
  1040. "_objFlags": 0,
  1041. "__editorExtras__": {},
  1042. "_parent": {
  1043. "__id__": 16
  1044. },
  1045. "_children": [],
  1046. "_active": false,
  1047. "_components": [
  1048. {
  1049. "__id__": 42
  1050. },
  1051. {
  1052. "__id__": 44
  1053. }
  1054. ],
  1055. "_prefab": {
  1056. "__id__": 46
  1057. },
  1058. "_lpos": {
  1059. "__type__": "cc.Vec3",
  1060. "x": 0,
  1061. "y": 0,
  1062. "z": 0
  1063. },
  1064. "_lrot": {
  1065. "__type__": "cc.Quat",
  1066. "x": 0,
  1067. "y": 0,
  1068. "z": 0,
  1069. "w": 1
  1070. },
  1071. "_lscale": {
  1072. "__type__": "cc.Vec3",
  1073. "x": 0.8,
  1074. "y": 0.8,
  1075. "z": 1
  1076. },
  1077. "_mobility": 0,
  1078. "_layer": 33554432,
  1079. "_euler": {
  1080. "__type__": "cc.Vec3",
  1081. "x": 0,
  1082. "y": 0,
  1083. "z": 0
  1084. },
  1085. "_id": ""
  1086. },
  1087. {
  1088. "__type__": "cc.UITransform",
  1089. "_name": "",
  1090. "_objFlags": 0,
  1091. "__editorExtras__": {},
  1092. "node": {
  1093. "__id__": 41
  1094. },
  1095. "_enabled": true,
  1096. "__prefab": {
  1097. "__id__": 43
  1098. },
  1099. "_contentSize": {
  1100. "__type__": "cc.Size",
  1101. "width": 128,
  1102. "height": 128
  1103. },
  1104. "_anchorPoint": {
  1105. "__type__": "cc.Vec2",
  1106. "x": 0.5,
  1107. "y": 0.5
  1108. },
  1109. "_id": ""
  1110. },
  1111. {
  1112. "__type__": "cc.CompPrefabInfo",
  1113. "fileId": "6d/ULWhAVEOooOm1Z0Yray"
  1114. },
  1115. {
  1116. "__type__": "cc.Sprite",
  1117. "_name": "",
  1118. "_objFlags": 0,
  1119. "__editorExtras__": {},
  1120. "node": {
  1121. "__id__": 41
  1122. },
  1123. "_enabled": true,
  1124. "__prefab": {
  1125. "__id__": 45
  1126. },
  1127. "_customMaterial": null,
  1128. "_srcBlendFactor": 2,
  1129. "_dstBlendFactor": 4,
  1130. "_color": {
  1131. "__type__": "cc.Color",
  1132. "r": 255,
  1133. "g": 255,
  1134. "b": 255,
  1135. "a": 255
  1136. },
  1137. "_spriteFrame": {
  1138. "__uuid__": "a0699f15-5847-44fe-a8f9-c96b4915a75d@f9941",
  1139. "__expectedType__": "cc.SpriteFrame"
  1140. },
  1141. "_type": 0,
  1142. "_fillType": 0,
  1143. "_sizeMode": 1,
  1144. "_fillCenter": {
  1145. "__type__": "cc.Vec2",
  1146. "x": 0,
  1147. "y": 0
  1148. },
  1149. "_fillStart": 0,
  1150. "_fillRange": 0,
  1151. "_isTrimmedMode": true,
  1152. "_useGrayscale": false,
  1153. "_atlas": null,
  1154. "_id": ""
  1155. },
  1156. {
  1157. "__type__": "cc.CompPrefabInfo",
  1158. "fileId": "f5dU1uRJ5JgZd/rlMrjVFi"
  1159. },
  1160. {
  1161. "__type__": "cc.PrefabInfo",
  1162. "root": {
  1163. "__id__": 1
  1164. },
  1165. "asset": {
  1166. "__id__": 0
  1167. },
  1168. "fileId": "901Y+GwNFGQ5yGpv5GqU6T",
  1169. "instance": null,
  1170. "targetOverrides": null,
  1171. "nestedPrefabInstanceRoots": null
  1172. },
  1173. {
  1174. "__type__": "cc.Node",
  1175. "_name": "icon_family_box",
  1176. "_objFlags": 0,
  1177. "__editorExtras__": {},
  1178. "_parent": {
  1179. "__id__": 16
  1180. },
  1181. "_children": [],
  1182. "_active": true,
  1183. "_components": [
  1184. {
  1185. "__id__": 48
  1186. },
  1187. {
  1188. "__id__": 50
  1189. }
  1190. ],
  1191. "_prefab": {
  1192. "__id__": 52
  1193. },
  1194. "_lpos": {
  1195. "__type__": "cc.Vec3",
  1196. "x": 0,
  1197. "y": 0,
  1198. "z": 0
  1199. },
  1200. "_lrot": {
  1201. "__type__": "cc.Quat",
  1202. "x": 0,
  1203. "y": 0,
  1204. "z": 0,
  1205. "w": 1
  1206. },
  1207. "_lscale": {
  1208. "__type__": "cc.Vec3",
  1209. "x": 1,
  1210. "y": 1,
  1211. "z": 1
  1212. },
  1213. "_mobility": 0,
  1214. "_layer": 33554432,
  1215. "_euler": {
  1216. "__type__": "cc.Vec3",
  1217. "x": 0,
  1218. "y": 0,
  1219. "z": 0
  1220. },
  1221. "_id": ""
  1222. },
  1223. {
  1224. "__type__": "cc.UITransform",
  1225. "_name": "",
  1226. "_objFlags": 0,
  1227. "__editorExtras__": {},
  1228. "node": {
  1229. "__id__": 47
  1230. },
  1231. "_enabled": true,
  1232. "__prefab": {
  1233. "__id__": 49
  1234. },
  1235. "_contentSize": {
  1236. "__type__": "cc.Size",
  1237. "width": 105,
  1238. "height": 92
  1239. },
  1240. "_anchorPoint": {
  1241. "__type__": "cc.Vec2",
  1242. "x": 0.5,
  1243. "y": 0.5
  1244. },
  1245. "_id": ""
  1246. },
  1247. {
  1248. "__type__": "cc.CompPrefabInfo",
  1249. "fileId": "88rsEofApGBYQVyEChE/Oa"
  1250. },
  1251. {
  1252. "__type__": "cc.Sprite",
  1253. "_name": "",
  1254. "_objFlags": 0,
  1255. "__editorExtras__": {},
  1256. "node": {
  1257. "__id__": 47
  1258. },
  1259. "_enabled": true,
  1260. "__prefab": {
  1261. "__id__": 51
  1262. },
  1263. "_customMaterial": null,
  1264. "_srcBlendFactor": 2,
  1265. "_dstBlendFactor": 4,
  1266. "_color": {
  1267. "__type__": "cc.Color",
  1268. "r": 255,
  1269. "g": 255,
  1270. "b": 255,
  1271. "a": 255
  1272. },
  1273. "_spriteFrame": {
  1274. "__uuid__": "b558c263-5366-49c1-9d77-0a108cb09281@f9941",
  1275. "__expectedType__": "cc.SpriteFrame"
  1276. },
  1277. "_type": 0,
  1278. "_fillType": 0,
  1279. "_sizeMode": 1,
  1280. "_fillCenter": {
  1281. "__type__": "cc.Vec2",
  1282. "x": 0,
  1283. "y": 0
  1284. },
  1285. "_fillStart": 0,
  1286. "_fillRange": 0,
  1287. "_isTrimmedMode": true,
  1288. "_useGrayscale": false,
  1289. "_atlas": null,
  1290. "_id": ""
  1291. },
  1292. {
  1293. "__type__": "cc.CompPrefabInfo",
  1294. "fileId": "4fft85CE9MT79cWp2FlFeF"
  1295. },
  1296. {
  1297. "__type__": "cc.PrefabInfo",
  1298. "root": {
  1299. "__id__": 1
  1300. },
  1301. "asset": {
  1302. "__id__": 0
  1303. },
  1304. "fileId": "a36zDwvspNaZhqSm1amPdF",
  1305. "instance": null,
  1306. "targetOverrides": null,
  1307. "nestedPrefabInstanceRoots": null
  1308. },
  1309. {
  1310. "__type__": "cc.Node",
  1311. "_name": "icon_pog_box",
  1312. "_objFlags": 0,
  1313. "__editorExtras__": {},
  1314. "_parent": {
  1315. "__id__": 16
  1316. },
  1317. "_children": [],
  1318. "_active": false,
  1319. "_components": [
  1320. {
  1321. "__id__": 54
  1322. },
  1323. {
  1324. "__id__": 56
  1325. }
  1326. ],
  1327. "_prefab": {
  1328. "__id__": 58
  1329. },
  1330. "_lpos": {
  1331. "__type__": "cc.Vec3",
  1332. "x": 0,
  1333. "y": 0,
  1334. "z": 0
  1335. },
  1336. "_lrot": {
  1337. "__type__": "cc.Quat",
  1338. "x": 0,
  1339. "y": 0,
  1340. "z": 0,
  1341. "w": 1
  1342. },
  1343. "_lscale": {
  1344. "__type__": "cc.Vec3",
  1345. "x": 1,
  1346. "y": 1,
  1347. "z": 1
  1348. },
  1349. "_mobility": 0,
  1350. "_layer": 33554432,
  1351. "_euler": {
  1352. "__type__": "cc.Vec3",
  1353. "x": 0,
  1354. "y": 0,
  1355. "z": 0
  1356. },
  1357. "_id": ""
  1358. },
  1359. {
  1360. "__type__": "cc.UITransform",
  1361. "_name": "",
  1362. "_objFlags": 0,
  1363. "__editorExtras__": {},
  1364. "node": {
  1365. "__id__": 53
  1366. },
  1367. "_enabled": true,
  1368. "__prefab": {
  1369. "__id__": 55
  1370. },
  1371. "_contentSize": {
  1372. "__type__": "cc.Size",
  1373. "width": 127,
  1374. "height": 90
  1375. },
  1376. "_anchorPoint": {
  1377. "__type__": "cc.Vec2",
  1378. "x": 0.5,
  1379. "y": 0.5
  1380. },
  1381. "_id": ""
  1382. },
  1383. {
  1384. "__type__": "cc.CompPrefabInfo",
  1385. "fileId": "4eDo3Z0RZK8bC3s1q7aMJ3"
  1386. },
  1387. {
  1388. "__type__": "cc.Sprite",
  1389. "_name": "",
  1390. "_objFlags": 0,
  1391. "__editorExtras__": {},
  1392. "node": {
  1393. "__id__": 53
  1394. },
  1395. "_enabled": true,
  1396. "__prefab": {
  1397. "__id__": 57
  1398. },
  1399. "_customMaterial": null,
  1400. "_srcBlendFactor": 2,
  1401. "_dstBlendFactor": 4,
  1402. "_color": {
  1403. "__type__": "cc.Color",
  1404. "r": 255,
  1405. "g": 255,
  1406. "b": 255,
  1407. "a": 255
  1408. },
  1409. "_spriteFrame": {
  1410. "__uuid__": "90e045d3-1dcb-4350-a7e4-8fbb37a60430@f9941",
  1411. "__expectedType__": "cc.SpriteFrame"
  1412. },
  1413. "_type": 0,
  1414. "_fillType": 0,
  1415. "_sizeMode": 1,
  1416. "_fillCenter": {
  1417. "__type__": "cc.Vec2",
  1418. "x": 0,
  1419. "y": 0
  1420. },
  1421. "_fillStart": 0,
  1422. "_fillRange": 0,
  1423. "_isTrimmedMode": true,
  1424. "_useGrayscale": false,
  1425. "_atlas": null,
  1426. "_id": ""
  1427. },
  1428. {
  1429. "__type__": "cc.CompPrefabInfo",
  1430. "fileId": "c9z302zXZIKLeEN72MLtDl"
  1431. },
  1432. {
  1433. "__type__": "cc.PrefabInfo",
  1434. "root": {
  1435. "__id__": 1
  1436. },
  1437. "asset": {
  1438. "__id__": 0
  1439. },
  1440. "fileId": "0bCoce+mdBbqKKXZggnr6S",
  1441. "instance": null,
  1442. "targetOverrides": null,
  1443. "nestedPrefabInstanceRoots": null
  1444. },
  1445. {
  1446. "__type__": "cc.Node",
  1447. "_name": "icon_puzzle",
  1448. "_objFlags": 0,
  1449. "__editorExtras__": {},
  1450. "_parent": {
  1451. "__id__": 16
  1452. },
  1453. "_children": [],
  1454. "_active": false,
  1455. "_components": [
  1456. {
  1457. "__id__": 60
  1458. },
  1459. {
  1460. "__id__": 62
  1461. }
  1462. ],
  1463. "_prefab": {
  1464. "__id__": 64
  1465. },
  1466. "_lpos": {
  1467. "__type__": "cc.Vec3",
  1468. "x": 0,
  1469. "y": 0,
  1470. "z": 0
  1471. },
  1472. "_lrot": {
  1473. "__type__": "cc.Quat",
  1474. "x": 0,
  1475. "y": 0,
  1476. "z": 0,
  1477. "w": 1
  1478. },
  1479. "_lscale": {
  1480. "__type__": "cc.Vec3",
  1481. "x": 1,
  1482. "y": 1,
  1483. "z": 1
  1484. },
  1485. "_mobility": 0,
  1486. "_layer": 33554432,
  1487. "_euler": {
  1488. "__type__": "cc.Vec3",
  1489. "x": 0,
  1490. "y": 0,
  1491. "z": 0
  1492. },
  1493. "_id": ""
  1494. },
  1495. {
  1496. "__type__": "cc.UITransform",
  1497. "_name": "",
  1498. "_objFlags": 0,
  1499. "__editorExtras__": {},
  1500. "node": {
  1501. "__id__": 59
  1502. },
  1503. "_enabled": true,
  1504. "__prefab": {
  1505. "__id__": 61
  1506. },
  1507. "_contentSize": {
  1508. "__type__": "cc.Size",
  1509. "width": 103,
  1510. "height": 104
  1511. },
  1512. "_anchorPoint": {
  1513. "__type__": "cc.Vec2",
  1514. "x": 0.5,
  1515. "y": 0.5
  1516. },
  1517. "_id": ""
  1518. },
  1519. {
  1520. "__type__": "cc.CompPrefabInfo",
  1521. "fileId": "1177PXhKdFzL2/OVI2VjRj"
  1522. },
  1523. {
  1524. "__type__": "cc.Sprite",
  1525. "_name": "",
  1526. "_objFlags": 0,
  1527. "__editorExtras__": {},
  1528. "node": {
  1529. "__id__": 59
  1530. },
  1531. "_enabled": true,
  1532. "__prefab": {
  1533. "__id__": 63
  1534. },
  1535. "_customMaterial": null,
  1536. "_srcBlendFactor": 2,
  1537. "_dstBlendFactor": 4,
  1538. "_color": {
  1539. "__type__": "cc.Color",
  1540. "r": 255,
  1541. "g": 255,
  1542. "b": 255,
  1543. "a": 255
  1544. },
  1545. "_spriteFrame": {
  1546. "__uuid__": "5251728e-2ec8-42ca-8f8a-c51dadab4a83@f9941",
  1547. "__expectedType__": "cc.SpriteFrame"
  1548. },
  1549. "_type": 0,
  1550. "_fillType": 0,
  1551. "_sizeMode": 0,
  1552. "_fillCenter": {
  1553. "__type__": "cc.Vec2",
  1554. "x": 0,
  1555. "y": 0
  1556. },
  1557. "_fillStart": 0,
  1558. "_fillRange": 0,
  1559. "_isTrimmedMode": true,
  1560. "_useGrayscale": false,
  1561. "_atlas": null,
  1562. "_id": ""
  1563. },
  1564. {
  1565. "__type__": "cc.CompPrefabInfo",
  1566. "fileId": "b95KqfStVHfLlQrnV3HJmH"
  1567. },
  1568. {
  1569. "__type__": "cc.PrefabInfo",
  1570. "root": {
  1571. "__id__": 1
  1572. },
  1573. "asset": {
  1574. "__id__": 0
  1575. },
  1576. "fileId": "ddY3AiZm9IgK1Tph49Rhv3",
  1577. "instance": null,
  1578. "targetOverrides": null,
  1579. "nestedPrefabInstanceRoots": null
  1580. },
  1581. {
  1582. "__type__": "cc.Node",
  1583. "_name": "game_pass",
  1584. "_objFlags": 0,
  1585. "__editorExtras__": {},
  1586. "_parent": {
  1587. "__id__": 16
  1588. },
  1589. "_children": [],
  1590. "_active": false,
  1591. "_components": [
  1592. {
  1593. "__id__": 66
  1594. },
  1595. {
  1596. "__id__": 68
  1597. }
  1598. ],
  1599. "_prefab": {
  1600. "__id__": 70
  1601. },
  1602. "_lpos": {
  1603. "__type__": "cc.Vec3",
  1604. "x": 0,
  1605. "y": 0,
  1606. "z": 0
  1607. },
  1608. "_lrot": {
  1609. "__type__": "cc.Quat",
  1610. "x": 0,
  1611. "y": 0,
  1612. "z": 0,
  1613. "w": 1
  1614. },
  1615. "_lscale": {
  1616. "__type__": "cc.Vec3",
  1617. "x": 1,
  1618. "y": 1,
  1619. "z": 1
  1620. },
  1621. "_mobility": 0,
  1622. "_layer": 33554432,
  1623. "_euler": {
  1624. "__type__": "cc.Vec3",
  1625. "x": 0,
  1626. "y": 0,
  1627. "z": 0
  1628. },
  1629. "_id": ""
  1630. },
  1631. {
  1632. "__type__": "cc.UITransform",
  1633. "_name": "",
  1634. "_objFlags": 0,
  1635. "__editorExtras__": {},
  1636. "node": {
  1637. "__id__": 65
  1638. },
  1639. "_enabled": true,
  1640. "__prefab": {
  1641. "__id__": 67
  1642. },
  1643. "_contentSize": {
  1644. "__type__": "cc.Size",
  1645. "width": 80,
  1646. "height": 80
  1647. },
  1648. "_anchorPoint": {
  1649. "__type__": "cc.Vec2",
  1650. "x": 0.5,
  1651. "y": 0.5
  1652. },
  1653. "_id": ""
  1654. },
  1655. {
  1656. "__type__": "cc.CompPrefabInfo",
  1657. "fileId": "73LHiLBONPJKgBrJO76XUa"
  1658. },
  1659. {
  1660. "__type__": "cc.Sprite",
  1661. "_name": "",
  1662. "_objFlags": 0,
  1663. "__editorExtras__": {},
  1664. "node": {
  1665. "__id__": 65
  1666. },
  1667. "_enabled": true,
  1668. "__prefab": {
  1669. "__id__": 69
  1670. },
  1671. "_customMaterial": null,
  1672. "_srcBlendFactor": 2,
  1673. "_dstBlendFactor": 4,
  1674. "_color": {
  1675. "__type__": "cc.Color",
  1676. "r": 255,
  1677. "g": 255,
  1678. "b": 255,
  1679. "a": 255
  1680. },
  1681. "_spriteFrame": {
  1682. "__uuid__": "9d338c5f-2d20-4226-a2bc-7f2f7aae1cc5@f9941",
  1683. "__expectedType__": "cc.SpriteFrame"
  1684. },
  1685. "_type": 0,
  1686. "_fillType": 0,
  1687. "_sizeMode": 0,
  1688. "_fillCenter": {
  1689. "__type__": "cc.Vec2",
  1690. "x": 0,
  1691. "y": 0
  1692. },
  1693. "_fillStart": 0,
  1694. "_fillRange": 0,
  1695. "_isTrimmedMode": false,
  1696. "_useGrayscale": false,
  1697. "_atlas": null,
  1698. "_id": ""
  1699. },
  1700. {
  1701. "__type__": "cc.CompPrefabInfo",
  1702. "fileId": "cfNmZGdKZGG41L2ijEW2Q4"
  1703. },
  1704. {
  1705. "__type__": "cc.PrefabInfo",
  1706. "root": {
  1707. "__id__": 1
  1708. },
  1709. "asset": {
  1710. "__id__": 0
  1711. },
  1712. "fileId": "34R7kNwQVP3rL0PWINkRfw",
  1713. "instance": null,
  1714. "targetOverrides": null,
  1715. "nestedPrefabInstanceRoots": null
  1716. },
  1717. {
  1718. "__type__": "cc.Node",
  1719. "_name": "icon_gem",
  1720. "_objFlags": 0,
  1721. "__editorExtras__": {},
  1722. "_parent": {
  1723. "__id__": 16
  1724. },
  1725. "_children": [],
  1726. "_active": false,
  1727. "_components": [
  1728. {
  1729. "__id__": 72
  1730. },
  1731. {
  1732. "__id__": 74
  1733. }
  1734. ],
  1735. "_prefab": {
  1736. "__id__": 76
  1737. },
  1738. "_lpos": {
  1739. "__type__": "cc.Vec3",
  1740. "x": 0,
  1741. "y": 0,
  1742. "z": 0
  1743. },
  1744. "_lrot": {
  1745. "__type__": "cc.Quat",
  1746. "x": 0,
  1747. "y": 0,
  1748. "z": 0,
  1749. "w": 1
  1750. },
  1751. "_lscale": {
  1752. "__type__": "cc.Vec3",
  1753. "x": 1,
  1754. "y": 1,
  1755. "z": 1
  1756. },
  1757. "_mobility": 0,
  1758. "_layer": 33554432,
  1759. "_euler": {
  1760. "__type__": "cc.Vec3",
  1761. "x": 0,
  1762. "y": 0,
  1763. "z": 0
  1764. },
  1765. "_id": ""
  1766. },
  1767. {
  1768. "__type__": "cc.UITransform",
  1769. "_name": "",
  1770. "_objFlags": 0,
  1771. "__editorExtras__": {},
  1772. "node": {
  1773. "__id__": 71
  1774. },
  1775. "_enabled": true,
  1776. "__prefab": {
  1777. "__id__": 73
  1778. },
  1779. "_contentSize": {
  1780. "__type__": "cc.Size",
  1781. "width": 46,
  1782. "height": 37
  1783. },
  1784. "_anchorPoint": {
  1785. "__type__": "cc.Vec2",
  1786. "x": 0.5,
  1787. "y": 0.5
  1788. },
  1789. "_id": ""
  1790. },
  1791. {
  1792. "__type__": "cc.CompPrefabInfo",
  1793. "fileId": "bb483EEWBBFKG25R352Syj"
  1794. },
  1795. {
  1796. "__type__": "cc.Sprite",
  1797. "_name": "",
  1798. "_objFlags": 0,
  1799. "__editorExtras__": {},
  1800. "node": {
  1801. "__id__": 71
  1802. },
  1803. "_enabled": true,
  1804. "__prefab": {
  1805. "__id__": 75
  1806. },
  1807. "_customMaterial": null,
  1808. "_srcBlendFactor": 2,
  1809. "_dstBlendFactor": 4,
  1810. "_color": {
  1811. "__type__": "cc.Color",
  1812. "r": 255,
  1813. "g": 255,
  1814. "b": 255,
  1815. "a": 255
  1816. },
  1817. "_spriteFrame": {
  1818. "__uuid__": "aef30ea8-629a-42c1-8cfa-f761155a40f8@f9941",
  1819. "__expectedType__": "cc.SpriteFrame"
  1820. },
  1821. "_type": 0,
  1822. "_fillType": 0,
  1823. "_sizeMode": 1,
  1824. "_fillCenter": {
  1825. "__type__": "cc.Vec2",
  1826. "x": 0,
  1827. "y": 0
  1828. },
  1829. "_fillStart": 0,
  1830. "_fillRange": 0,
  1831. "_isTrimmedMode": true,
  1832. "_useGrayscale": false,
  1833. "_atlas": null,
  1834. "_id": ""
  1835. },
  1836. {
  1837. "__type__": "cc.CompPrefabInfo",
  1838. "fileId": "2caqxkie5A8oczeTJ7FJ2u"
  1839. },
  1840. {
  1841. "__type__": "cc.PrefabInfo",
  1842. "root": {
  1843. "__id__": 1
  1844. },
  1845. "asset": {
  1846. "__id__": 0
  1847. },
  1848. "fileId": "83nk4DHJpFlL1UDkTsYn7r",
  1849. "instance": null,
  1850. "targetOverrides": null,
  1851. "nestedPrefabInstanceRoots": null
  1852. },
  1853. {
  1854. "__type__": "cc.Node",
  1855. "_name": "icon_item_box",
  1856. "_objFlags": 0,
  1857. "__editorExtras__": {},
  1858. "_parent": {
  1859. "__id__": 16
  1860. },
  1861. "_children": [],
  1862. "_active": false,
  1863. "_components": [
  1864. {
  1865. "__id__": 78
  1866. },
  1867. {
  1868. "__id__": 80
  1869. }
  1870. ],
  1871. "_prefab": {
  1872. "__id__": 82
  1873. },
  1874. "_lpos": {
  1875. "__type__": "cc.Vec3",
  1876. "x": 7.539000000000016,
  1877. "y": -2.599999999999909,
  1878. "z": 0
  1879. },
  1880. "_lrot": {
  1881. "__type__": "cc.Quat",
  1882. "x": 0,
  1883. "y": 0,
  1884. "z": 0,
  1885. "w": 1
  1886. },
  1887. "_lscale": {
  1888. "__type__": "cc.Vec3",
  1889. "x": 1,
  1890. "y": 1,
  1891. "z": 1
  1892. },
  1893. "_mobility": 0,
  1894. "_layer": 33554432,
  1895. "_euler": {
  1896. "__type__": "cc.Vec3",
  1897. "x": 0,
  1898. "y": 0,
  1899. "z": 0
  1900. },
  1901. "_id": ""
  1902. },
  1903. {
  1904. "__type__": "cc.UITransform",
  1905. "_name": "",
  1906. "_objFlags": 0,
  1907. "__editorExtras__": {},
  1908. "node": {
  1909. "__id__": 77
  1910. },
  1911. "_enabled": true,
  1912. "__prefab": {
  1913. "__id__": 79
  1914. },
  1915. "_contentSize": {
  1916. "__type__": "cc.Size",
  1917. "width": 150,
  1918. "height": 93
  1919. },
  1920. "_anchorPoint": {
  1921. "__type__": "cc.Vec2",
  1922. "x": 0.5,
  1923. "y": 0.5
  1924. },
  1925. "_id": ""
  1926. },
  1927. {
  1928. "__type__": "cc.CompPrefabInfo",
  1929. "fileId": "70tU34u85KioMcQvYdkMWr"
  1930. },
  1931. {
  1932. "__type__": "cc.Sprite",
  1933. "_name": "",
  1934. "_objFlags": 0,
  1935. "__editorExtras__": {},
  1936. "node": {
  1937. "__id__": 77
  1938. },
  1939. "_enabled": true,
  1940. "__prefab": {
  1941. "__id__": 81
  1942. },
  1943. "_customMaterial": null,
  1944. "_srcBlendFactor": 2,
  1945. "_dstBlendFactor": 4,
  1946. "_color": {
  1947. "__type__": "cc.Color",
  1948. "r": 255,
  1949. "g": 255,
  1950. "b": 255,
  1951. "a": 255
  1952. },
  1953. "_spriteFrame": {
  1954. "__uuid__": "f96bdc07-35bc-4357-a6b6-4fcaecf87c86@f9941",
  1955. "__expectedType__": "cc.SpriteFrame"
  1956. },
  1957. "_type": 0,
  1958. "_fillType": 0,
  1959. "_sizeMode": 1,
  1960. "_fillCenter": {
  1961. "__type__": "cc.Vec2",
  1962. "x": 0,
  1963. "y": 0
  1964. },
  1965. "_fillStart": 0,
  1966. "_fillRange": 0,
  1967. "_isTrimmedMode": true,
  1968. "_useGrayscale": false,
  1969. "_atlas": null,
  1970. "_id": ""
  1971. },
  1972. {
  1973. "__type__": "cc.CompPrefabInfo",
  1974. "fileId": "2cq52q1U5J7qfA070W7pqa"
  1975. },
  1976. {
  1977. "__type__": "cc.PrefabInfo",
  1978. "root": {
  1979. "__id__": 1
  1980. },
  1981. "asset": {
  1982. "__id__": 0
  1983. },
  1984. "fileId": "d4u6pWjvlLToIFq9YexVFV",
  1985. "instance": null,
  1986. "targetOverrides": null,
  1987. "nestedPrefabInstanceRoots": null
  1988. },
  1989. {
  1990. "__type__": "cc.UITransform",
  1991. "_name": "",
  1992. "_objFlags": 0,
  1993. "__editorExtras__": {},
  1994. "node": {
  1995. "__id__": 16
  1996. },
  1997. "_enabled": true,
  1998. "__prefab": {
  1999. "__id__": 84
  2000. },
  2001. "_contentSize": {
  2002. "__type__": "cc.Size",
  2003. "width": 100,
  2004. "height": 100
  2005. },
  2006. "_anchorPoint": {
  2007. "__type__": "cc.Vec2",
  2008. "x": 0.5,
  2009. "y": 0.5
  2010. },
  2011. "_id": ""
  2012. },
  2013. {
  2014. "__type__": "cc.CompPrefabInfo",
  2015. "fileId": "d4Bf37F9xPC5BkGYcgJTYP"
  2016. },
  2017. {
  2018. "__type__": "cc.PrefabInfo",
  2019. "root": {
  2020. "__id__": 1
  2021. },
  2022. "asset": {
  2023. "__id__": 0
  2024. },
  2025. "fileId": "f4prXy2QdBT4keJ9rGiiCz",
  2026. "instance": null,
  2027. "targetOverrides": null,
  2028. "nestedPrefabInstanceRoots": null
  2029. },
  2030. {
  2031. "__type__": "cc.Node",
  2032. "_name": "lbl_count",
  2033. "_objFlags": 0,
  2034. "__editorExtras__": {},
  2035. "_parent": {
  2036. "__id__": 1
  2037. },
  2038. "_children": [],
  2039. "_active": true,
  2040. "_components": [
  2041. {
  2042. "__id__": 87
  2043. },
  2044. {
  2045. "__id__": 89
  2046. }
  2047. ],
  2048. "_prefab": {
  2049. "__id__": 91
  2050. },
  2051. "_lpos": {
  2052. "__type__": "cc.Vec3",
  2053. "x": 36.912000000000006,
  2054. "y": -27.292999999999893,
  2055. "z": 0
  2056. },
  2057. "_lrot": {
  2058. "__type__": "cc.Quat",
  2059. "x": 0,
  2060. "y": 0,
  2061. "z": 0,
  2062. "w": 1
  2063. },
  2064. "_lscale": {
  2065. "__type__": "cc.Vec3",
  2066. "x": 1,
  2067. "y": 1,
  2068. "z": 1
  2069. },
  2070. "_mobility": 0,
  2071. "_layer": 33554432,
  2072. "_euler": {
  2073. "__type__": "cc.Vec3",
  2074. "x": 0,
  2075. "y": 0,
  2076. "z": 0
  2077. },
  2078. "_id": ""
  2079. },
  2080. {
  2081. "__type__": "cc.UITransform",
  2082. "_name": "",
  2083. "_objFlags": 0,
  2084. "__editorExtras__": {},
  2085. "node": {
  2086. "__id__": 86
  2087. },
  2088. "_enabled": true,
  2089. "__prefab": {
  2090. "__id__": 88
  2091. },
  2092. "_contentSize": {
  2093. "__type__": "cc.Size",
  2094. "width": 59.615234375,
  2095. "height": 35.5
  2096. },
  2097. "_anchorPoint": {
  2098. "__type__": "cc.Vec2",
  2099. "x": 0.5,
  2100. "y": 0.5
  2101. },
  2102. "_id": ""
  2103. },
  2104. {
  2105. "__type__": "cc.CompPrefabInfo",
  2106. "fileId": "e2Is8acexOtZGfpRQw5KBk"
  2107. },
  2108. {
  2109. "__type__": "cc.Label",
  2110. "_name": "",
  2111. "_objFlags": 0,
  2112. "__editorExtras__": {},
  2113. "node": {
  2114. "__id__": 86
  2115. },
  2116. "_enabled": true,
  2117. "__prefab": {
  2118. "__id__": 90
  2119. },
  2120. "_customMaterial": null,
  2121. "_srcBlendFactor": 2,
  2122. "_dstBlendFactor": 4,
  2123. "_color": {
  2124. "__type__": "cc.Color",
  2125. "r": 255,
  2126. "g": 255,
  2127. "b": 255,
  2128. "a": 255
  2129. },
  2130. "_string": "x100",
  2131. "_horizontalAlign": 1,
  2132. "_verticalAlign": 1,
  2133. "_actualFontSize": 25,
  2134. "_fontSize": 25,
  2135. "_fontFamily": "Arial",
  2136. "_lineHeight": 25,
  2137. "_overflow": 0,
  2138. "_enableWrapText": true,
  2139. "_font": null,
  2140. "_isSystemFontUsed": true,
  2141. "_spacingX": 0,
  2142. "_isItalic": false,
  2143. "_isBold": true,
  2144. "_isUnderline": false,
  2145. "_underlineHeight": 2,
  2146. "_cacheMode": 0,
  2147. "_enableOutline": true,
  2148. "_outlineColor": {
  2149. "__type__": "cc.Color",
  2150. "r": 0,
  2151. "g": 0,
  2152. "b": 0,
  2153. "a": 255
  2154. },
  2155. "_outlineWidth": 2,
  2156. "_enableShadow": false,
  2157. "_shadowColor": {
  2158. "__type__": "cc.Color",
  2159. "r": 0,
  2160. "g": 0,
  2161. "b": 0,
  2162. "a": 255
  2163. },
  2164. "_shadowOffset": {
  2165. "__type__": "cc.Vec2",
  2166. "x": 2,
  2167. "y": 2
  2168. },
  2169. "_shadowBlur": 2,
  2170. "_id": ""
  2171. },
  2172. {
  2173. "__type__": "cc.CompPrefabInfo",
  2174. "fileId": "fd4VT6vvFKRZZAbv4tD/Ex"
  2175. },
  2176. {
  2177. "__type__": "cc.PrefabInfo",
  2178. "root": {
  2179. "__id__": 1
  2180. },
  2181. "asset": {
  2182. "__id__": 0
  2183. },
  2184. "fileId": "73S2kIXf9GDpFYG09yCEWP",
  2185. "instance": null,
  2186. "targetOverrides": null,
  2187. "nestedPrefabInstanceRoots": null
  2188. },
  2189. {
  2190. "__type__": "cc.UITransform",
  2191. "_name": "",
  2192. "_objFlags": 0,
  2193. "__editorExtras__": {},
  2194. "node": {
  2195. "__id__": 1
  2196. },
  2197. "_enabled": true,
  2198. "__prefab": {
  2199. "__id__": 93
  2200. },
  2201. "_contentSize": {
  2202. "__type__": "cc.Size",
  2203. "width": 180,
  2204. "height": 180
  2205. },
  2206. "_anchorPoint": {
  2207. "__type__": "cc.Vec2",
  2208. "x": 0.5,
  2209. "y": 0.5
  2210. },
  2211. "_id": ""
  2212. },
  2213. {
  2214. "__type__": "cc.CompPrefabInfo",
  2215. "fileId": "13QcSc/dhFTrHji7c+Dhug"
  2216. },
  2217. {
  2218. "__type__": "cc.Sprite",
  2219. "_name": "",
  2220. "_objFlags": 0,
  2221. "__editorExtras__": {},
  2222. "node": {
  2223. "__id__": 1
  2224. },
  2225. "_enabled": false,
  2226. "__prefab": {
  2227. "__id__": 95
  2228. },
  2229. "_customMaterial": null,
  2230. "_srcBlendFactor": 2,
  2231. "_dstBlendFactor": 4,
  2232. "_color": {
  2233. "__type__": "cc.Color",
  2234. "r": 255,
  2235. "g": 255,
  2236. "b": 255,
  2237. "a": 255
  2238. },
  2239. "_spriteFrame": {
  2240. "__uuid__": "bbe820c4-7f04-4ad9-9c8d-675e35be8595@f9941",
  2241. "__expectedType__": "cc.SpriteFrame"
  2242. },
  2243. "_type": 1,
  2244. "_fillType": 0,
  2245. "_sizeMode": 0,
  2246. "_fillCenter": {
  2247. "__type__": "cc.Vec2",
  2248. "x": 0,
  2249. "y": 0
  2250. },
  2251. "_fillStart": 0,
  2252. "_fillRange": 0,
  2253. "_isTrimmedMode": true,
  2254. "_useGrayscale": false,
  2255. "_atlas": null,
  2256. "_id": ""
  2257. },
  2258. {
  2259. "__type__": "cc.CompPrefabInfo",
  2260. "fileId": "76mZlcNRpCrq7N6pNAq1hO"
  2261. },
  2262. {
  2263. "__type__": "fa27eAxmp1DEZfKoAiV170t",
  2264. "_name": "",
  2265. "_objFlags": 0,
  2266. "__editorExtras__": {},
  2267. "node": {
  2268. "__id__": 1
  2269. },
  2270. "_enabled": true,
  2271. "__prefab": {
  2272. "__id__": 97
  2273. },
  2274. "_id": ""
  2275. },
  2276. {
  2277. "__type__": "cc.CompPrefabInfo",
  2278. "fileId": "0cwSN4mJNG9KHQiYmgoyot"
  2279. },
  2280. {
  2281. "__type__": "cc.PrefabInfo",
  2282. "root": {
  2283. "__id__": 1
  2284. },
  2285. "asset": {
  2286. "__id__": 0
  2287. },
  2288. "fileId": "18uGariFVEU4qTD4eEFXhh",
  2289. "instance": null,
  2290. "targetOverrides": null
  2291. }
  2292. ]