sign_total_reward_item.prefab 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "sign_total_reward_item",
  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": "sign_total_reward_item",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 36
  26. },
  27. {
  28. "__id__": 42
  29. }
  30. ],
  31. "_active": true,
  32. "_components": [
  33. {
  34. "__id__": 76
  35. },
  36. {
  37. "__id__": 78
  38. },
  39. {
  40. "__id__": 80
  41. }
  42. ],
  43. "_prefab": {
  44. "__id__": 82
  45. },
  46. "_lpos": {
  47. "__type__": "cc.Vec3",
  48. "x": 0,
  49. "y": 0,
  50. "z": 0
  51. },
  52. "_lrot": {
  53. "__type__": "cc.Quat",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0,
  57. "w": 1
  58. },
  59. "_lscale": {
  60. "__type__": "cc.Vec3",
  61. "x": 1,
  62. "y": 1,
  63. "z": 1
  64. },
  65. "_mobility": 0,
  66. "_layer": 33554432,
  67. "_euler": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_id": ""
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_name": "img_bg",
  78. "_objFlags": 0,
  79. "__editorExtras__": {},
  80. "_parent": {
  81. "__id__": 1
  82. },
  83. "_children": [
  84. {
  85. "__id__": 3
  86. },
  87. {
  88. "__id__": 9
  89. },
  90. {
  91. "__id__": 15
  92. }
  93. ],
  94. "_active": true,
  95. "_components": [
  96. {
  97. "__id__": 29
  98. },
  99. {
  100. "__id__": 31
  101. },
  102. {
  103. "__id__": 33
  104. }
  105. ],
  106. "_prefab": {
  107. "__id__": 35
  108. },
  109. "_lpos": {
  110. "__type__": "cc.Vec3",
  111. "x": 0,
  112. "y": 48,
  113. "z": 0
  114. },
  115. "_lrot": {
  116. "__type__": "cc.Quat",
  117. "x": 0,
  118. "y": 0,
  119. "z": 0,
  120. "w": 1
  121. },
  122. "_lscale": {
  123. "__type__": "cc.Vec3",
  124. "x": 1,
  125. "y": 1,
  126. "z": 1
  127. },
  128. "_mobility": 0,
  129. "_layer": 33554432,
  130. "_euler": {
  131. "__type__": "cc.Vec3",
  132. "x": 0,
  133. "y": 0,
  134. "z": 0
  135. },
  136. "_id": ""
  137. },
  138. {
  139. "__type__": "cc.Node",
  140. "_name": "img_icon",
  141. "_objFlags": 0,
  142. "__editorExtras__": {},
  143. "_parent": {
  144. "__id__": 2
  145. },
  146. "_children": [],
  147. "_active": true,
  148. "_components": [
  149. {
  150. "__id__": 4
  151. },
  152. {
  153. "__id__": 6
  154. }
  155. ],
  156. "_prefab": {
  157. "__id__": 8
  158. },
  159. "_lpos": {
  160. "__type__": "cc.Vec3",
  161. "x": 0,
  162. "y": 0,
  163. "z": 0
  164. },
  165. "_lrot": {
  166. "__type__": "cc.Quat",
  167. "x": 0,
  168. "y": 0,
  169. "z": 0,
  170. "w": 1
  171. },
  172. "_lscale": {
  173. "__type__": "cc.Vec3",
  174. "x": 1,
  175. "y": 1,
  176. "z": 1
  177. },
  178. "_mobility": 0,
  179. "_layer": 33554432,
  180. "_euler": {
  181. "__type__": "cc.Vec3",
  182. "x": 0,
  183. "y": 0,
  184. "z": 0
  185. },
  186. "_id": ""
  187. },
  188. {
  189. "__type__": "cc.UITransform",
  190. "_name": "",
  191. "_objFlags": 0,
  192. "__editorExtras__": {},
  193. "node": {
  194. "__id__": 3
  195. },
  196. "_enabled": true,
  197. "__prefab": {
  198. "__id__": 5
  199. },
  200. "_contentSize": {
  201. "__type__": "cc.Size",
  202. "width": 60,
  203. "height": 60
  204. },
  205. "_anchorPoint": {
  206. "__type__": "cc.Vec2",
  207. "x": 0.5,
  208. "y": 0.5
  209. },
  210. "_id": ""
  211. },
  212. {
  213. "__type__": "cc.CompPrefabInfo",
  214. "fileId": "e0SfMpY8hCRJCjIr2kUFPx"
  215. },
  216. {
  217. "__type__": "cc.Sprite",
  218. "_name": "",
  219. "_objFlags": 0,
  220. "__editorExtras__": {},
  221. "node": {
  222. "__id__": 3
  223. },
  224. "_enabled": true,
  225. "__prefab": {
  226. "__id__": 7
  227. },
  228. "_customMaterial": null,
  229. "_srcBlendFactor": 2,
  230. "_dstBlendFactor": 4,
  231. "_color": {
  232. "__type__": "cc.Color",
  233. "r": 255,
  234. "g": 255,
  235. "b": 255,
  236. "a": 255
  237. },
  238. "_spriteFrame": null,
  239. "_type": 0,
  240. "_fillType": 0,
  241. "_sizeMode": 0,
  242. "_fillCenter": {
  243. "__type__": "cc.Vec2",
  244. "x": 0,
  245. "y": 0
  246. },
  247. "_fillStart": 0,
  248. "_fillRange": 0,
  249. "_isTrimmedMode": true,
  250. "_useGrayscale": false,
  251. "_atlas": null,
  252. "_id": ""
  253. },
  254. {
  255. "__type__": "cc.CompPrefabInfo",
  256. "fileId": "59IU5jBWREgI5mSg/pWvym"
  257. },
  258. {
  259. "__type__": "cc.PrefabInfo",
  260. "root": {
  261. "__id__": 1
  262. },
  263. "asset": {
  264. "__id__": 0
  265. },
  266. "fileId": "040Iu3aN9E8qr8waLDwQhh",
  267. "instance": null,
  268. "targetOverrides": null,
  269. "nestedPrefabInstanceRoots": null
  270. },
  271. {
  272. "__type__": "cc.Node",
  273. "_name": "lab_count",
  274. "_objFlags": 0,
  275. "__editorExtras__": {},
  276. "_parent": {
  277. "__id__": 2
  278. },
  279. "_children": [],
  280. "_active": true,
  281. "_components": [
  282. {
  283. "__id__": 10
  284. },
  285. {
  286. "__id__": 12
  287. }
  288. ],
  289. "_prefab": {
  290. "__id__": 14
  291. },
  292. "_lpos": {
  293. "__type__": "cc.Vec3",
  294. "x": 18.562000000000012,
  295. "y": -40.99800000000005,
  296. "z": 0
  297. },
  298. "_lrot": {
  299. "__type__": "cc.Quat",
  300. "x": 0,
  301. "y": 0,
  302. "z": 0,
  303. "w": 1
  304. },
  305. "_lscale": {
  306. "__type__": "cc.Vec3",
  307. "x": 1,
  308. "y": 1,
  309. "z": 1
  310. },
  311. "_mobility": 0,
  312. "_layer": 33554432,
  313. "_euler": {
  314. "__type__": "cc.Vec3",
  315. "x": 0,
  316. "y": 0,
  317. "z": 0
  318. },
  319. "_id": ""
  320. },
  321. {
  322. "__type__": "cc.UITransform",
  323. "_name": "",
  324. "_objFlags": 0,
  325. "__editorExtras__": {},
  326. "node": {
  327. "__id__": 9
  328. },
  329. "_enabled": true,
  330. "__prefab": {
  331. "__id__": 11
  332. },
  333. "_contentSize": {
  334. "__type__": "cc.Size",
  335. "width": 80,
  336. "height": 35
  337. },
  338. "_anchorPoint": {
  339. "__type__": "cc.Vec2",
  340. "x": 0.5,
  341. "y": 0.5
  342. },
  343. "_id": ""
  344. },
  345. {
  346. "__type__": "cc.CompPrefabInfo",
  347. "fileId": "29+JOUkE9HKoGhqqe60HCE"
  348. },
  349. {
  350. "__type__": "cc.Label",
  351. "_name": "",
  352. "_objFlags": 0,
  353. "__editorExtras__": {},
  354. "node": {
  355. "__id__": 9
  356. },
  357. "_enabled": true,
  358. "__prefab": {
  359. "__id__": 13
  360. },
  361. "_customMaterial": null,
  362. "_srcBlendFactor": 2,
  363. "_dstBlendFactor": 4,
  364. "_color": {
  365. "__type__": "cc.Color",
  366. "r": 254,
  367. "g": 254,
  368. "b": 254,
  369. "a": 255
  370. },
  371. "_string": "x2",
  372. "_horizontalAlign": 2,
  373. "_verticalAlign": 1,
  374. "_actualFontSize": 30,
  375. "_fontSize": 30,
  376. "_fontFamily": "Arial",
  377. "_lineHeight": 30,
  378. "_overflow": 1,
  379. "_enableWrapText": false,
  380. "_font": null,
  381. "_isSystemFontUsed": true,
  382. "_spacingX": 0,
  383. "_isItalic": true,
  384. "_isBold": true,
  385. "_isUnderline": false,
  386. "_underlineHeight": 2,
  387. "_cacheMode": 0,
  388. "_enableOutline": true,
  389. "_outlineColor": {
  390. "__type__": "cc.Color",
  391. "r": 0,
  392. "g": 0,
  393. "b": 0,
  394. "a": 255
  395. },
  396. "_outlineWidth": 2,
  397. "_enableShadow": false,
  398. "_shadowColor": {
  399. "__type__": "cc.Color",
  400. "r": 0,
  401. "g": 0,
  402. "b": 0,
  403. "a": 255
  404. },
  405. "_shadowOffset": {
  406. "__type__": "cc.Vec2",
  407. "x": 1,
  408. "y": 1
  409. },
  410. "_shadowBlur": 1,
  411. "_id": ""
  412. },
  413. {
  414. "__type__": "cc.CompPrefabInfo",
  415. "fileId": "02+MpOxHRC3JUBut9rIFpc"
  416. },
  417. {
  418. "__type__": "cc.PrefabInfo",
  419. "root": {
  420. "__id__": 1
  421. },
  422. "asset": {
  423. "__id__": 0
  424. },
  425. "fileId": "54jdtBPC1Ggbw8brdBeVek",
  426. "instance": null,
  427. "targetOverrides": null,
  428. "nestedPrefabInstanceRoots": null
  429. },
  430. {
  431. "__type__": "cc.Node",
  432. "_name": "img_mask",
  433. "_objFlags": 0,
  434. "__editorExtras__": {},
  435. "_parent": {
  436. "__id__": 2
  437. },
  438. "_children": [
  439. {
  440. "__id__": 16
  441. }
  442. ],
  443. "_active": false,
  444. "_components": [
  445. {
  446. "__id__": 22
  447. },
  448. {
  449. "__id__": 24
  450. },
  451. {
  452. "__id__": 26
  453. }
  454. ],
  455. "_prefab": {
  456. "__id__": 28
  457. },
  458. "_lpos": {
  459. "__type__": "cc.Vec3",
  460. "x": 0,
  461. "y": 0,
  462. "z": 0
  463. },
  464. "_lrot": {
  465. "__type__": "cc.Quat",
  466. "x": 0,
  467. "y": 0,
  468. "z": 0,
  469. "w": 1
  470. },
  471. "_lscale": {
  472. "__type__": "cc.Vec3",
  473. "x": 1,
  474. "y": 1,
  475. "z": 1
  476. },
  477. "_mobility": 0,
  478. "_layer": 33554432,
  479. "_euler": {
  480. "__type__": "cc.Vec3",
  481. "x": 0,
  482. "y": 0,
  483. "z": 0
  484. },
  485. "_id": ""
  486. },
  487. {
  488. "__type__": "cc.Node",
  489. "_name": "sign_duihao",
  490. "_objFlags": 0,
  491. "__editorExtras__": {},
  492. "_parent": {
  493. "__id__": 15
  494. },
  495. "_children": [],
  496. "_active": true,
  497. "_components": [
  498. {
  499. "__id__": 17
  500. },
  501. {
  502. "__id__": 19
  503. }
  504. ],
  505. "_prefab": {
  506. "__id__": 21
  507. },
  508. "_lpos": {
  509. "__type__": "cc.Vec3",
  510. "x": 0,
  511. "y": 0,
  512. "z": 0
  513. },
  514. "_lrot": {
  515. "__type__": "cc.Quat",
  516. "x": 0,
  517. "y": 0,
  518. "z": 0,
  519. "w": 1
  520. },
  521. "_lscale": {
  522. "__type__": "cc.Vec3",
  523. "x": 0.7,
  524. "y": 0.7,
  525. "z": 1
  526. },
  527. "_mobility": 0,
  528. "_layer": 33554432,
  529. "_euler": {
  530. "__type__": "cc.Vec3",
  531. "x": 0,
  532. "y": 0,
  533. "z": 0
  534. },
  535. "_id": ""
  536. },
  537. {
  538. "__type__": "cc.UITransform",
  539. "_name": "",
  540. "_objFlags": 0,
  541. "__editorExtras__": {},
  542. "node": {
  543. "__id__": 16
  544. },
  545. "_enabled": true,
  546. "__prefab": {
  547. "__id__": 18
  548. },
  549. "_contentSize": {
  550. "__type__": "cc.Size",
  551. "width": 135,
  552. "height": 122
  553. },
  554. "_anchorPoint": {
  555. "__type__": "cc.Vec2",
  556. "x": 0.5,
  557. "y": 0.5
  558. },
  559. "_id": ""
  560. },
  561. {
  562. "__type__": "cc.CompPrefabInfo",
  563. "fileId": "71cBe71e1KoLzsMPkEaeiC"
  564. },
  565. {
  566. "__type__": "cc.Sprite",
  567. "_name": "",
  568. "_objFlags": 0,
  569. "__editorExtras__": {},
  570. "node": {
  571. "__id__": 16
  572. },
  573. "_enabled": true,
  574. "__prefab": {
  575. "__id__": 20
  576. },
  577. "_customMaterial": null,
  578. "_srcBlendFactor": 2,
  579. "_dstBlendFactor": 4,
  580. "_color": {
  581. "__type__": "cc.Color",
  582. "r": 255,
  583. "g": 255,
  584. "b": 255,
  585. "a": 255
  586. },
  587. "_spriteFrame": {
  588. "__uuid__": "5d8c54ea-a3fe-4612-bdbf-2de1861ede51@f9941",
  589. "__expectedType__": "cc.SpriteFrame"
  590. },
  591. "_type": 0,
  592. "_fillType": 0,
  593. "_sizeMode": 1,
  594. "_fillCenter": {
  595. "__type__": "cc.Vec2",
  596. "x": 0,
  597. "y": 0
  598. },
  599. "_fillStart": 0,
  600. "_fillRange": 0,
  601. "_isTrimmedMode": true,
  602. "_useGrayscale": false,
  603. "_atlas": null,
  604. "_id": ""
  605. },
  606. {
  607. "__type__": "cc.CompPrefabInfo",
  608. "fileId": "59WVV24JdJ0JtHvnq1/Aga"
  609. },
  610. {
  611. "__type__": "cc.PrefabInfo",
  612. "root": {
  613. "__id__": 1
  614. },
  615. "asset": {
  616. "__id__": 0
  617. },
  618. "fileId": "0382ijNZpA45FtcjK24ZJf",
  619. "instance": null,
  620. "targetOverrides": null,
  621. "nestedPrefabInstanceRoots": null
  622. },
  623. {
  624. "__type__": "cc.UITransform",
  625. "_name": "",
  626. "_objFlags": 0,
  627. "__editorExtras__": {},
  628. "node": {
  629. "__id__": 15
  630. },
  631. "_enabled": true,
  632. "__prefab": {
  633. "__id__": 23
  634. },
  635. "_contentSize": {
  636. "__type__": "cc.Size",
  637. "width": 112,
  638. "height": 110
  639. },
  640. "_anchorPoint": {
  641. "__type__": "cc.Vec2",
  642. "x": 0.5,
  643. "y": 0.5
  644. },
  645. "_id": ""
  646. },
  647. {
  648. "__type__": "cc.CompPrefabInfo",
  649. "fileId": "25HWQmU7ZB5ZlkFRR8LrLy"
  650. },
  651. {
  652. "__type__": "cc.Sprite",
  653. "_name": "",
  654. "_objFlags": 0,
  655. "__editorExtras__": {},
  656. "node": {
  657. "__id__": 15
  658. },
  659. "_enabled": true,
  660. "__prefab": {
  661. "__id__": 25
  662. },
  663. "_customMaterial": null,
  664. "_srcBlendFactor": 2,
  665. "_dstBlendFactor": 4,
  666. "_color": {
  667. "__type__": "cc.Color",
  668. "r": 255,
  669. "g": 255,
  670. "b": 255,
  671. "a": 255
  672. },
  673. "_spriteFrame": {
  674. "__uuid__": "428e37a5-777d-47e5-853e-4cee7e715805@f9941",
  675. "__expectedType__": "cc.SpriteFrame"
  676. },
  677. "_type": 0,
  678. "_fillType": 0,
  679. "_sizeMode": 0,
  680. "_fillCenter": {
  681. "__type__": "cc.Vec2",
  682. "x": 0,
  683. "y": 0
  684. },
  685. "_fillStart": 0,
  686. "_fillRange": 0,
  687. "_isTrimmedMode": true,
  688. "_useGrayscale": false,
  689. "_atlas": null,
  690. "_id": ""
  691. },
  692. {
  693. "__type__": "cc.CompPrefabInfo",
  694. "fileId": "86peNX9CVKAIoXnMRyZhY/"
  695. },
  696. {
  697. "__type__": "cc.Widget",
  698. "_name": "",
  699. "_objFlags": 0,
  700. "__editorExtras__": {},
  701. "node": {
  702. "__id__": 15
  703. },
  704. "_enabled": true,
  705. "__prefab": {
  706. "__id__": 27
  707. },
  708. "_alignFlags": 45,
  709. "_target": null,
  710. "_left": 0,
  711. "_right": 0,
  712. "_top": 0,
  713. "_bottom": 0,
  714. "_horizontalCenter": 0,
  715. "_verticalCenter": 0,
  716. "_isAbsLeft": true,
  717. "_isAbsRight": true,
  718. "_isAbsTop": true,
  719. "_isAbsBottom": true,
  720. "_isAbsHorizontalCenter": true,
  721. "_isAbsVerticalCenter": true,
  722. "_originalWidth": 1080,
  723. "_originalHeight": 1919,
  724. "_alignMode": 2,
  725. "_lockFlags": 0,
  726. "_id": ""
  727. },
  728. {
  729. "__type__": "cc.CompPrefabInfo",
  730. "fileId": "25XDO2/SFG5Zgpm2bxqT5t"
  731. },
  732. {
  733. "__type__": "cc.PrefabInfo",
  734. "root": {
  735. "__id__": 1
  736. },
  737. "asset": {
  738. "__id__": 0
  739. },
  740. "fileId": "3cIyvEd/NPLbJiM2xC84b/",
  741. "instance": null,
  742. "targetOverrides": null,
  743. "nestedPrefabInstanceRoots": null
  744. },
  745. {
  746. "__type__": "cc.UITransform",
  747. "_name": "",
  748. "_objFlags": 0,
  749. "__editorExtras__": {},
  750. "node": {
  751. "__id__": 2
  752. },
  753. "_enabled": true,
  754. "__prefab": {
  755. "__id__": 30
  756. },
  757. "_contentSize": {
  758. "__type__": "cc.Size",
  759. "width": 132,
  760. "height": 130
  761. },
  762. "_anchorPoint": {
  763. "__type__": "cc.Vec2",
  764. "x": 0.5,
  765. "y": 0.5
  766. },
  767. "_id": ""
  768. },
  769. {
  770. "__type__": "cc.CompPrefabInfo",
  771. "fileId": "53No7u/sNBFIJxZu11rIew"
  772. },
  773. {
  774. "__type__": "cc.Sprite",
  775. "_name": "",
  776. "_objFlags": 0,
  777. "__editorExtras__": {},
  778. "node": {
  779. "__id__": 2
  780. },
  781. "_enabled": true,
  782. "__prefab": {
  783. "__id__": 32
  784. },
  785. "_customMaterial": null,
  786. "_srcBlendFactor": 2,
  787. "_dstBlendFactor": 4,
  788. "_color": {
  789. "__type__": "cc.Color",
  790. "r": 255,
  791. "g": 255,
  792. "b": 255,
  793. "a": 255
  794. },
  795. "_spriteFrame": {
  796. "__uuid__": "82d19427-6e64-4ddb-b163-67f1fb30372b@f9941",
  797. "__expectedType__": "cc.SpriteFrame"
  798. },
  799. "_type": 0,
  800. "_fillType": 0,
  801. "_sizeMode": 1,
  802. "_fillCenter": {
  803. "__type__": "cc.Vec2",
  804. "x": 0,
  805. "y": 0
  806. },
  807. "_fillStart": 0,
  808. "_fillRange": 0,
  809. "_isTrimmedMode": true,
  810. "_useGrayscale": false,
  811. "_atlas": null,
  812. "_id": ""
  813. },
  814. {
  815. "__type__": "cc.CompPrefabInfo",
  816. "fileId": "bcAkulRM9OKIXuTbCZAZ6Y"
  817. },
  818. {
  819. "__type__": "cc.Button",
  820. "_name": "",
  821. "_objFlags": 0,
  822. "__editorExtras__": {},
  823. "node": {
  824. "__id__": 2
  825. },
  826. "_enabled": true,
  827. "__prefab": {
  828. "__id__": 34
  829. },
  830. "clickEvents": [],
  831. "_interactable": true,
  832. "_transition": 3,
  833. "_normalColor": {
  834. "__type__": "cc.Color",
  835. "r": 255,
  836. "g": 255,
  837. "b": 255,
  838. "a": 255
  839. },
  840. "_hoverColor": {
  841. "__type__": "cc.Color",
  842. "r": 211,
  843. "g": 211,
  844. "b": 211,
  845. "a": 255
  846. },
  847. "_pressedColor": {
  848. "__type__": "cc.Color",
  849. "r": 255,
  850. "g": 255,
  851. "b": 255,
  852. "a": 255
  853. },
  854. "_disabledColor": {
  855. "__type__": "cc.Color",
  856. "r": 124,
  857. "g": 124,
  858. "b": 124,
  859. "a": 255
  860. },
  861. "_normalSprite": null,
  862. "_hoverSprite": null,
  863. "_pressedSprite": null,
  864. "_disabledSprite": null,
  865. "_duration": 0.1,
  866. "_zoomScale": 0.9,
  867. "_target": null,
  868. "_id": ""
  869. },
  870. {
  871. "__type__": "cc.CompPrefabInfo",
  872. "fileId": "a7m9dv9rpA9an2ySqudKtz"
  873. },
  874. {
  875. "__type__": "cc.PrefabInfo",
  876. "root": {
  877. "__id__": 1
  878. },
  879. "asset": {
  880. "__id__": 0
  881. },
  882. "fileId": "ffXV2YkhVIQLweVZlZYFUK",
  883. "instance": null,
  884. "targetOverrides": null,
  885. "nestedPrefabInstanceRoots": null
  886. },
  887. {
  888. "__type__": "cc.Node",
  889. "_name": "lab_name",
  890. "_objFlags": 0,
  891. "__editorExtras__": {},
  892. "_parent": {
  893. "__id__": 1
  894. },
  895. "_children": [],
  896. "_active": true,
  897. "_components": [
  898. {
  899. "__id__": 37
  900. },
  901. {
  902. "__id__": 39
  903. }
  904. ],
  905. "_prefab": {
  906. "__id__": 41
  907. },
  908. "_lpos": {
  909. "__type__": "cc.Vec3",
  910. "x": 0,
  911. "y": -43.793,
  912. "z": 0
  913. },
  914. "_lrot": {
  915. "__type__": "cc.Quat",
  916. "x": 0,
  917. "y": 0,
  918. "z": 0,
  919. "w": 1
  920. },
  921. "_lscale": {
  922. "__type__": "cc.Vec3",
  923. "x": 1,
  924. "y": 1,
  925. "z": 1
  926. },
  927. "_mobility": 0,
  928. "_layer": 33554432,
  929. "_euler": {
  930. "__type__": "cc.Vec3",
  931. "x": 0,
  932. "y": 0,
  933. "z": 0
  934. },
  935. "_id": ""
  936. },
  937. {
  938. "__type__": "cc.UITransform",
  939. "_name": "",
  940. "_objFlags": 0,
  941. "__editorExtras__": {},
  942. "node": {
  943. "__id__": 36
  944. },
  945. "_enabled": true,
  946. "__prefab": {
  947. "__id__": 38
  948. },
  949. "_contentSize": {
  950. "__type__": "cc.Size",
  951. "width": 180,
  952. "height": 30
  953. },
  954. "_anchorPoint": {
  955. "__type__": "cc.Vec2",
  956. "x": 0.5,
  957. "y": 0.5
  958. },
  959. "_id": ""
  960. },
  961. {
  962. "__type__": "cc.CompPrefabInfo",
  963. "fileId": "d8M6PCIdFC7JRfUI8JfOGJ"
  964. },
  965. {
  966. "__type__": "cc.Label",
  967. "_name": "",
  968. "_objFlags": 0,
  969. "__editorExtras__": {},
  970. "node": {
  971. "__id__": 36
  972. },
  973. "_enabled": true,
  974. "__prefab": {
  975. "__id__": 40
  976. },
  977. "_customMaterial": null,
  978. "_srcBlendFactor": 2,
  979. "_dstBlendFactor": 4,
  980. "_color": {
  981. "__type__": "cc.Color",
  982. "r": 31,
  983. "g": 81,
  984. "b": 174,
  985. "a": 255
  986. },
  987. "_string": "专属碎片碎片片",
  988. "_horizontalAlign": 1,
  989. "_verticalAlign": 1,
  990. "_actualFontSize": 25,
  991. "_fontSize": 25,
  992. "_fontFamily": "Arial",
  993. "_lineHeight": 25,
  994. "_overflow": 1,
  995. "_enableWrapText": false,
  996. "_font": null,
  997. "_isSystemFontUsed": true,
  998. "_spacingX": 0,
  999. "_isItalic": true,
  1000. "_isBold": true,
  1001. "_isUnderline": false,
  1002. "_underlineHeight": 2,
  1003. "_cacheMode": 0,
  1004. "_enableOutline": false,
  1005. "_outlineColor": {
  1006. "__type__": "cc.Color",
  1007. "r": 0,
  1008. "g": 0,
  1009. "b": 0,
  1010. "a": 255
  1011. },
  1012. "_outlineWidth": 2,
  1013. "_enableShadow": false,
  1014. "_shadowColor": {
  1015. "__type__": "cc.Color",
  1016. "r": 0,
  1017. "g": 0,
  1018. "b": 0,
  1019. "a": 255
  1020. },
  1021. "_shadowOffset": {
  1022. "__type__": "cc.Vec2",
  1023. "x": 2,
  1024. "y": 2
  1025. },
  1026. "_shadowBlur": 2,
  1027. "_id": ""
  1028. },
  1029. {
  1030. "__type__": "cc.CompPrefabInfo",
  1031. "fileId": "5f3IFkLt9GpK0BjEoTwpKo"
  1032. },
  1033. {
  1034. "__type__": "cc.PrefabInfo",
  1035. "root": {
  1036. "__id__": 1
  1037. },
  1038. "asset": {
  1039. "__id__": 0
  1040. },
  1041. "fileId": "beyKN/odpInoNeOqrcQ4bq",
  1042. "instance": null,
  1043. "targetOverrides": null,
  1044. "nestedPrefabInstanceRoots": null
  1045. },
  1046. {
  1047. "__type__": "cc.Node",
  1048. "_name": "Node",
  1049. "_objFlags": 0,
  1050. "__editorExtras__": {},
  1051. "_parent": {
  1052. "__id__": 1
  1053. },
  1054. "_children": [
  1055. {
  1056. "__id__": 43
  1057. },
  1058. {
  1059. "__id__": 51
  1060. },
  1061. {
  1062. "__id__": 59
  1063. }
  1064. ],
  1065. "_active": true,
  1066. "_components": [
  1067. {
  1068. "__id__": 71
  1069. },
  1070. {
  1071. "__id__": 73
  1072. }
  1073. ],
  1074. "_prefab": {
  1075. "__id__": 75
  1076. },
  1077. "_lpos": {
  1078. "__type__": "cc.Vec3",
  1079. "x": 0,
  1080. "y": -100,
  1081. "z": 0
  1082. },
  1083. "_lrot": {
  1084. "__type__": "cc.Quat",
  1085. "x": 0,
  1086. "y": 0,
  1087. "z": 0,
  1088. "w": 1
  1089. },
  1090. "_lscale": {
  1091. "__type__": "cc.Vec3",
  1092. "x": 1,
  1093. "y": 1,
  1094. "z": 1
  1095. },
  1096. "_mobility": 0,
  1097. "_layer": 33554432,
  1098. "_euler": {
  1099. "__type__": "cc.Vec3",
  1100. "x": 0,
  1101. "y": 0,
  1102. "z": 0
  1103. },
  1104. "_id": ""
  1105. },
  1106. {
  1107. "__type__": "cc.Node",
  1108. "_name": "img_left_line",
  1109. "_objFlags": 0,
  1110. "__editorExtras__": {},
  1111. "_parent": {
  1112. "__id__": 42
  1113. },
  1114. "_children": [],
  1115. "_active": true,
  1116. "_components": [
  1117. {
  1118. "__id__": 44
  1119. },
  1120. {
  1121. "__id__": 46
  1122. },
  1123. {
  1124. "__id__": 48
  1125. }
  1126. ],
  1127. "_prefab": {
  1128. "__id__": 50
  1129. },
  1130. "_lpos": {
  1131. "__type__": "cc.Vec3",
  1132. "x": -45,
  1133. "y": 0,
  1134. "z": 0
  1135. },
  1136. "_lrot": {
  1137. "__type__": "cc.Quat",
  1138. "x": 0,
  1139. "y": 0,
  1140. "z": 0,
  1141. "w": 1
  1142. },
  1143. "_lscale": {
  1144. "__type__": "cc.Vec3",
  1145. "x": 1,
  1146. "y": 1,
  1147. "z": 1
  1148. },
  1149. "_mobility": 0,
  1150. "_layer": 33554432,
  1151. "_euler": {
  1152. "__type__": "cc.Vec3",
  1153. "x": 0,
  1154. "y": 0,
  1155. "z": 0
  1156. },
  1157. "_id": ""
  1158. },
  1159. {
  1160. "__type__": "cc.UITransform",
  1161. "_name": "",
  1162. "_objFlags": 0,
  1163. "__editorExtras__": {},
  1164. "node": {
  1165. "__id__": 43
  1166. },
  1167. "_enabled": true,
  1168. "__prefab": {
  1169. "__id__": 45
  1170. },
  1171. "_contentSize": {
  1172. "__type__": "cc.Size",
  1173. "width": 90,
  1174. "height": 13
  1175. },
  1176. "_anchorPoint": {
  1177. "__type__": "cc.Vec2",
  1178. "x": 0.5,
  1179. "y": 0.5
  1180. },
  1181. "_id": ""
  1182. },
  1183. {
  1184. "__type__": "cc.CompPrefabInfo",
  1185. "fileId": "4fU0udxMlNx5IQTC7nfPAx"
  1186. },
  1187. {
  1188. "__type__": "cc.Sprite",
  1189. "_name": "",
  1190. "_objFlags": 0,
  1191. "__editorExtras__": {},
  1192. "node": {
  1193. "__id__": 43
  1194. },
  1195. "_enabled": true,
  1196. "__prefab": {
  1197. "__id__": 47
  1198. },
  1199. "_customMaterial": null,
  1200. "_srcBlendFactor": 2,
  1201. "_dstBlendFactor": 4,
  1202. "_color": {
  1203. "__type__": "cc.Color",
  1204. "r": 255,
  1205. "g": 255,
  1206. "b": 255,
  1207. "a": 255
  1208. },
  1209. "_spriteFrame": {
  1210. "__uuid__": "cf748ba8-77a1-4dd1-b807-221cd028d8b2@f9941",
  1211. "__expectedType__": "cc.SpriteFrame"
  1212. },
  1213. "_type": 0,
  1214. "_fillType": 0,
  1215. "_sizeMode": 0,
  1216. "_fillCenter": {
  1217. "__type__": "cc.Vec2",
  1218. "x": 0,
  1219. "y": 0
  1220. },
  1221. "_fillStart": 0,
  1222. "_fillRange": 0,
  1223. "_isTrimmedMode": true,
  1224. "_useGrayscale": false,
  1225. "_atlas": null,
  1226. "_id": ""
  1227. },
  1228. {
  1229. "__type__": "cc.CompPrefabInfo",
  1230. "fileId": "3d3W/P2PFATLNEs4E6Qovi"
  1231. },
  1232. {
  1233. "__type__": "cc.Widget",
  1234. "_name": "",
  1235. "_objFlags": 0,
  1236. "__editorExtras__": {},
  1237. "node": {
  1238. "__id__": 43
  1239. },
  1240. "_enabled": true,
  1241. "__prefab": {
  1242. "__id__": 49
  1243. },
  1244. "_alignFlags": 8,
  1245. "_target": null,
  1246. "_left": 0,
  1247. "_right": 0,
  1248. "_top": 0,
  1249. "_bottom": 0,
  1250. "_horizontalCenter": 0,
  1251. "_verticalCenter": 0,
  1252. "_isAbsLeft": true,
  1253. "_isAbsRight": true,
  1254. "_isAbsTop": true,
  1255. "_isAbsBottom": true,
  1256. "_isAbsHorizontalCenter": true,
  1257. "_isAbsVerticalCenter": true,
  1258. "_originalWidth": 0,
  1259. "_originalHeight": 0,
  1260. "_alignMode": 2,
  1261. "_lockFlags": 0,
  1262. "_id": ""
  1263. },
  1264. {
  1265. "__type__": "cc.CompPrefabInfo",
  1266. "fileId": "11DQ1TcUdKCIgQ4MVusHUx"
  1267. },
  1268. {
  1269. "__type__": "cc.PrefabInfo",
  1270. "root": {
  1271. "__id__": 1
  1272. },
  1273. "asset": {
  1274. "__id__": 0
  1275. },
  1276. "fileId": "b0jMWZh6NG5Kg+JlffXwc3",
  1277. "instance": null,
  1278. "targetOverrides": null,
  1279. "nestedPrefabInstanceRoots": null
  1280. },
  1281. {
  1282. "__type__": "cc.Node",
  1283. "_name": "img_right_line",
  1284. "_objFlags": 0,
  1285. "__editorExtras__": {},
  1286. "_parent": {
  1287. "__id__": 42
  1288. },
  1289. "_children": [],
  1290. "_active": true,
  1291. "_components": [
  1292. {
  1293. "__id__": 52
  1294. },
  1295. {
  1296. "__id__": 54
  1297. },
  1298. {
  1299. "__id__": 56
  1300. }
  1301. ],
  1302. "_prefab": {
  1303. "__id__": 58
  1304. },
  1305. "_lpos": {
  1306. "__type__": "cc.Vec3",
  1307. "x": 45,
  1308. "y": 0,
  1309. "z": 0
  1310. },
  1311. "_lrot": {
  1312. "__type__": "cc.Quat",
  1313. "x": 0,
  1314. "y": 0,
  1315. "z": 0,
  1316. "w": 1
  1317. },
  1318. "_lscale": {
  1319. "__type__": "cc.Vec3",
  1320. "x": 1,
  1321. "y": 1,
  1322. "z": 1
  1323. },
  1324. "_mobility": 0,
  1325. "_layer": 33554432,
  1326. "_euler": {
  1327. "__type__": "cc.Vec3",
  1328. "x": 0,
  1329. "y": 0,
  1330. "z": 0
  1331. },
  1332. "_id": ""
  1333. },
  1334. {
  1335. "__type__": "cc.UITransform",
  1336. "_name": "",
  1337. "_objFlags": 0,
  1338. "__editorExtras__": {},
  1339. "node": {
  1340. "__id__": 51
  1341. },
  1342. "_enabled": true,
  1343. "__prefab": {
  1344. "__id__": 53
  1345. },
  1346. "_contentSize": {
  1347. "__type__": "cc.Size",
  1348. "width": 90,
  1349. "height": 13
  1350. },
  1351. "_anchorPoint": {
  1352. "__type__": "cc.Vec2",
  1353. "x": 0.5,
  1354. "y": 0.5
  1355. },
  1356. "_id": ""
  1357. },
  1358. {
  1359. "__type__": "cc.CompPrefabInfo",
  1360. "fileId": "c8bSqT0p5HZaQcO8VxmTjA"
  1361. },
  1362. {
  1363. "__type__": "cc.Sprite",
  1364. "_name": "",
  1365. "_objFlags": 0,
  1366. "__editorExtras__": {},
  1367. "node": {
  1368. "__id__": 51
  1369. },
  1370. "_enabled": true,
  1371. "__prefab": {
  1372. "__id__": 55
  1373. },
  1374. "_customMaterial": null,
  1375. "_srcBlendFactor": 2,
  1376. "_dstBlendFactor": 4,
  1377. "_color": {
  1378. "__type__": "cc.Color",
  1379. "r": 255,
  1380. "g": 255,
  1381. "b": 255,
  1382. "a": 255
  1383. },
  1384. "_spriteFrame": {
  1385. "__uuid__": "cf748ba8-77a1-4dd1-b807-221cd028d8b2@f9941",
  1386. "__expectedType__": "cc.SpriteFrame"
  1387. },
  1388. "_type": 0,
  1389. "_fillType": 0,
  1390. "_sizeMode": 0,
  1391. "_fillCenter": {
  1392. "__type__": "cc.Vec2",
  1393. "x": 0,
  1394. "y": 0
  1395. },
  1396. "_fillStart": 0,
  1397. "_fillRange": 0,
  1398. "_isTrimmedMode": true,
  1399. "_useGrayscale": false,
  1400. "_atlas": null,
  1401. "_id": ""
  1402. },
  1403. {
  1404. "__type__": "cc.CompPrefabInfo",
  1405. "fileId": "baiwD1mxREc66mgzRh003x"
  1406. },
  1407. {
  1408. "__type__": "cc.Widget",
  1409. "_name": "",
  1410. "_objFlags": 0,
  1411. "__editorExtras__": {},
  1412. "node": {
  1413. "__id__": 51
  1414. },
  1415. "_enabled": true,
  1416. "__prefab": {
  1417. "__id__": 57
  1418. },
  1419. "_alignFlags": 32,
  1420. "_target": null,
  1421. "_left": 0,
  1422. "_right": 0,
  1423. "_top": 0,
  1424. "_bottom": 0,
  1425. "_horizontalCenter": 0,
  1426. "_verticalCenter": 0,
  1427. "_isAbsLeft": true,
  1428. "_isAbsRight": true,
  1429. "_isAbsTop": true,
  1430. "_isAbsBottom": true,
  1431. "_isAbsHorizontalCenter": true,
  1432. "_isAbsVerticalCenter": true,
  1433. "_originalWidth": 0,
  1434. "_originalHeight": 0,
  1435. "_alignMode": 2,
  1436. "_lockFlags": 0,
  1437. "_id": ""
  1438. },
  1439. {
  1440. "__type__": "cc.CompPrefabInfo",
  1441. "fileId": "8eoWzQZrVNXKruvkxpAD7A"
  1442. },
  1443. {
  1444. "__type__": "cc.PrefabInfo",
  1445. "root": {
  1446. "__id__": 1
  1447. },
  1448. "asset": {
  1449. "__id__": 0
  1450. },
  1451. "fileId": "9exRNQ4zpOv67Q1AkNIQz6",
  1452. "instance": null,
  1453. "targetOverrides": null,
  1454. "nestedPrefabInstanceRoots": null
  1455. },
  1456. {
  1457. "__type__": "cc.Node",
  1458. "_name": "img_dot",
  1459. "_objFlags": 0,
  1460. "__editorExtras__": {},
  1461. "_parent": {
  1462. "__id__": 42
  1463. },
  1464. "_children": [
  1465. {
  1466. "__id__": 60
  1467. }
  1468. ],
  1469. "_active": true,
  1470. "_components": [
  1471. {
  1472. "__id__": 66
  1473. },
  1474. {
  1475. "__id__": 68
  1476. }
  1477. ],
  1478. "_prefab": {
  1479. "__id__": 70
  1480. },
  1481. "_lpos": {
  1482. "__type__": "cc.Vec3",
  1483. "x": 0,
  1484. "y": 0,
  1485. "z": 0
  1486. },
  1487. "_lrot": {
  1488. "__type__": "cc.Quat",
  1489. "x": 0,
  1490. "y": 0,
  1491. "z": 0,
  1492. "w": 1
  1493. },
  1494. "_lscale": {
  1495. "__type__": "cc.Vec3",
  1496. "x": 1,
  1497. "y": 1,
  1498. "z": 1
  1499. },
  1500. "_mobility": 0,
  1501. "_layer": 33554432,
  1502. "_euler": {
  1503. "__type__": "cc.Vec3",
  1504. "x": 0,
  1505. "y": 0,
  1506. "z": 0
  1507. },
  1508. "_id": ""
  1509. },
  1510. {
  1511. "__type__": "cc.Node",
  1512. "_name": "lab_days",
  1513. "_objFlags": 0,
  1514. "__editorExtras__": {},
  1515. "_parent": {
  1516. "__id__": 59
  1517. },
  1518. "_children": [],
  1519. "_active": true,
  1520. "_components": [
  1521. {
  1522. "__id__": 61
  1523. },
  1524. {
  1525. "__id__": 63
  1526. }
  1527. ],
  1528. "_prefab": {
  1529. "__id__": 65
  1530. },
  1531. "_lpos": {
  1532. "__type__": "cc.Vec3",
  1533. "x": 0,
  1534. "y": 0,
  1535. "z": 0
  1536. },
  1537. "_lrot": {
  1538. "__type__": "cc.Quat",
  1539. "x": 0,
  1540. "y": 0,
  1541. "z": 0,
  1542. "w": 1
  1543. },
  1544. "_lscale": {
  1545. "__type__": "cc.Vec3",
  1546. "x": 1,
  1547. "y": 1,
  1548. "z": 1
  1549. },
  1550. "_mobility": 0,
  1551. "_layer": 33554432,
  1552. "_euler": {
  1553. "__type__": "cc.Vec3",
  1554. "x": 0,
  1555. "y": 0,
  1556. "z": 0
  1557. },
  1558. "_id": ""
  1559. },
  1560. {
  1561. "__type__": "cc.UITransform",
  1562. "_name": "",
  1563. "_objFlags": 0,
  1564. "__editorExtras__": {},
  1565. "node": {
  1566. "__id__": 60
  1567. },
  1568. "_enabled": true,
  1569. "__prefab": {
  1570. "__id__": 62
  1571. },
  1572. "_contentSize": {
  1573. "__type__": "cc.Size",
  1574. "width": 19.46533203125,
  1575. "height": 44.1
  1576. },
  1577. "_anchorPoint": {
  1578. "__type__": "cc.Vec2",
  1579. "x": 0.5,
  1580. "y": 0.5
  1581. },
  1582. "_id": ""
  1583. },
  1584. {
  1585. "__type__": "cc.CompPrefabInfo",
  1586. "fileId": "9ep5AJz8pHOLzn1kpapaH/"
  1587. },
  1588. {
  1589. "__type__": "cc.Label",
  1590. "_name": "",
  1591. "_objFlags": 0,
  1592. "__editorExtras__": {},
  1593. "node": {
  1594. "__id__": 60
  1595. },
  1596. "_enabled": true,
  1597. "__prefab": {
  1598. "__id__": 64
  1599. },
  1600. "_customMaterial": null,
  1601. "_srcBlendFactor": 2,
  1602. "_dstBlendFactor": 4,
  1603. "_color": {
  1604. "__type__": "cc.Color",
  1605. "r": 255,
  1606. "g": 255,
  1607. "b": 255,
  1608. "a": 255
  1609. },
  1610. "_string": "5",
  1611. "_horizontalAlign": 1,
  1612. "_verticalAlign": 1,
  1613. "_actualFontSize": 35,
  1614. "_fontSize": 35,
  1615. "_fontFamily": "Arial",
  1616. "_lineHeight": 35,
  1617. "_overflow": 0,
  1618. "_enableWrapText": false,
  1619. "_font": null,
  1620. "_isSystemFontUsed": true,
  1621. "_spacingX": 0,
  1622. "_isItalic": false,
  1623. "_isBold": false,
  1624. "_isUnderline": false,
  1625. "_underlineHeight": 2,
  1626. "_cacheMode": 0,
  1627. "_enableOutline": false,
  1628. "_outlineColor": {
  1629. "__type__": "cc.Color",
  1630. "r": 0,
  1631. "g": 0,
  1632. "b": 0,
  1633. "a": 255
  1634. },
  1635. "_outlineWidth": 2,
  1636. "_enableShadow": false,
  1637. "_shadowColor": {
  1638. "__type__": "cc.Color",
  1639. "r": 0,
  1640. "g": 0,
  1641. "b": 0,
  1642. "a": 255
  1643. },
  1644. "_shadowOffset": {
  1645. "__type__": "cc.Vec2",
  1646. "x": 2,
  1647. "y": 2
  1648. },
  1649. "_shadowBlur": 2,
  1650. "_id": ""
  1651. },
  1652. {
  1653. "__type__": "cc.CompPrefabInfo",
  1654. "fileId": "47ByVPa9tG8I0v235axLGB"
  1655. },
  1656. {
  1657. "__type__": "cc.PrefabInfo",
  1658. "root": {
  1659. "__id__": 1
  1660. },
  1661. "asset": {
  1662. "__id__": 0
  1663. },
  1664. "fileId": "5b8DRS3jJCgYLnz0YsLvao",
  1665. "instance": null,
  1666. "targetOverrides": null,
  1667. "nestedPrefabInstanceRoots": null
  1668. },
  1669. {
  1670. "__type__": "cc.UITransform",
  1671. "_name": "",
  1672. "_objFlags": 0,
  1673. "__editorExtras__": {},
  1674. "node": {
  1675. "__id__": 59
  1676. },
  1677. "_enabled": true,
  1678. "__prefab": {
  1679. "__id__": 67
  1680. },
  1681. "_contentSize": {
  1682. "__type__": "cc.Size",
  1683. "width": 48,
  1684. "height": 47
  1685. },
  1686. "_anchorPoint": {
  1687. "__type__": "cc.Vec2",
  1688. "x": 0.5,
  1689. "y": 0.5
  1690. },
  1691. "_id": ""
  1692. },
  1693. {
  1694. "__type__": "cc.CompPrefabInfo",
  1695. "fileId": "d9sXamUyNHjYfOh0bwdnEY"
  1696. },
  1697. {
  1698. "__type__": "cc.Sprite",
  1699. "_name": "",
  1700. "_objFlags": 0,
  1701. "__editorExtras__": {},
  1702. "node": {
  1703. "__id__": 59
  1704. },
  1705. "_enabled": true,
  1706. "__prefab": {
  1707. "__id__": 69
  1708. },
  1709. "_customMaterial": null,
  1710. "_srcBlendFactor": 2,
  1711. "_dstBlendFactor": 4,
  1712. "_color": {
  1713. "__type__": "cc.Color",
  1714. "r": 255,
  1715. "g": 255,
  1716. "b": 255,
  1717. "a": 255
  1718. },
  1719. "_spriteFrame": {
  1720. "__uuid__": "2a437256-ef7e-43cf-bc64-4696f19290bb@f9941",
  1721. "__expectedType__": "cc.SpriteFrame"
  1722. },
  1723. "_type": 0,
  1724. "_fillType": 0,
  1725. "_sizeMode": 1,
  1726. "_fillCenter": {
  1727. "__type__": "cc.Vec2",
  1728. "x": 0,
  1729. "y": 0
  1730. },
  1731. "_fillStart": 0,
  1732. "_fillRange": 0,
  1733. "_isTrimmedMode": true,
  1734. "_useGrayscale": false,
  1735. "_atlas": null,
  1736. "_id": ""
  1737. },
  1738. {
  1739. "__type__": "cc.CompPrefabInfo",
  1740. "fileId": "85yveFMCtOPYS/tpy8V2eA"
  1741. },
  1742. {
  1743. "__type__": "cc.PrefabInfo",
  1744. "root": {
  1745. "__id__": 1
  1746. },
  1747. "asset": {
  1748. "__id__": 0
  1749. },
  1750. "fileId": "d08RORALBC6q04jDyLHRG1",
  1751. "instance": null,
  1752. "targetOverrides": null,
  1753. "nestedPrefabInstanceRoots": null
  1754. },
  1755. {
  1756. "__type__": "cc.UITransform",
  1757. "_name": "",
  1758. "_objFlags": 0,
  1759. "__editorExtras__": {},
  1760. "node": {
  1761. "__id__": 42
  1762. },
  1763. "_enabled": true,
  1764. "__prefab": {
  1765. "__id__": 72
  1766. },
  1767. "_contentSize": {
  1768. "__type__": "cc.Size",
  1769. "width": 180,
  1770. "height": 50
  1771. },
  1772. "_anchorPoint": {
  1773. "__type__": "cc.Vec2",
  1774. "x": 0.5,
  1775. "y": 0.5
  1776. },
  1777. "_id": ""
  1778. },
  1779. {
  1780. "__type__": "cc.CompPrefabInfo",
  1781. "fileId": "3bMMhLEP1C4IOAOxo5DE35"
  1782. },
  1783. {
  1784. "__type__": "cc.Widget",
  1785. "_name": "",
  1786. "_objFlags": 0,
  1787. "__editorExtras__": {},
  1788. "node": {
  1789. "__id__": 42
  1790. },
  1791. "_enabled": true,
  1792. "__prefab": {
  1793. "__id__": 74
  1794. },
  1795. "_alignFlags": 40,
  1796. "_target": null,
  1797. "_left": 0,
  1798. "_right": 0,
  1799. "_top": 0,
  1800. "_bottom": 0,
  1801. "_horizontalCenter": 0,
  1802. "_verticalCenter": 0,
  1803. "_isAbsLeft": true,
  1804. "_isAbsRight": true,
  1805. "_isAbsTop": true,
  1806. "_isAbsBottom": true,
  1807. "_isAbsHorizontalCenter": true,
  1808. "_isAbsVerticalCenter": true,
  1809. "_originalWidth": 200,
  1810. "_originalHeight": 0,
  1811. "_alignMode": 2,
  1812. "_lockFlags": 0,
  1813. "_id": ""
  1814. },
  1815. {
  1816. "__type__": "cc.CompPrefabInfo",
  1817. "fileId": "87CTuM97JC1J1PQCGGWLuz"
  1818. },
  1819. {
  1820. "__type__": "cc.PrefabInfo",
  1821. "root": {
  1822. "__id__": 1
  1823. },
  1824. "asset": {
  1825. "__id__": 0
  1826. },
  1827. "fileId": "869iGSzzRPnZsT41izDupb",
  1828. "instance": null,
  1829. "targetOverrides": null,
  1830. "nestedPrefabInstanceRoots": null
  1831. },
  1832. {
  1833. "__type__": "cc.UITransform",
  1834. "_name": "",
  1835. "_objFlags": 0,
  1836. "__editorExtras__": {},
  1837. "node": {
  1838. "__id__": 1
  1839. },
  1840. "_enabled": true,
  1841. "__prefab": {
  1842. "__id__": 77
  1843. },
  1844. "_contentSize": {
  1845. "__type__": "cc.Size",
  1846. "width": 180,
  1847. "height": 250
  1848. },
  1849. "_anchorPoint": {
  1850. "__type__": "cc.Vec2",
  1851. "x": 0.5,
  1852. "y": 0.5
  1853. },
  1854. "_id": ""
  1855. },
  1856. {
  1857. "__type__": "cc.CompPrefabInfo",
  1858. "fileId": "7cx67FFlhCpr4lk/yWolsL"
  1859. },
  1860. {
  1861. "__type__": "cc.Sprite",
  1862. "_name": "",
  1863. "_objFlags": 0,
  1864. "__editorExtras__": {},
  1865. "node": {
  1866. "__id__": 1
  1867. },
  1868. "_enabled": false,
  1869. "__prefab": {
  1870. "__id__": 79
  1871. },
  1872. "_customMaterial": null,
  1873. "_srcBlendFactor": 2,
  1874. "_dstBlendFactor": 4,
  1875. "_color": {
  1876. "__type__": "cc.Color",
  1877. "r": 255,
  1878. "g": 255,
  1879. "b": 255,
  1880. "a": 255
  1881. },
  1882. "_spriteFrame": {
  1883. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  1884. "__expectedType__": "cc.SpriteFrame"
  1885. },
  1886. "_type": 1,
  1887. "_fillType": 0,
  1888. "_sizeMode": 0,
  1889. "_fillCenter": {
  1890. "__type__": "cc.Vec2",
  1891. "x": 0,
  1892. "y": 0
  1893. },
  1894. "_fillStart": 0,
  1895. "_fillRange": 0,
  1896. "_isTrimmedMode": true,
  1897. "_useGrayscale": false,
  1898. "_atlas": null,
  1899. "_id": ""
  1900. },
  1901. {
  1902. "__type__": "cc.CompPrefabInfo",
  1903. "fileId": "aafJwlBTBAcpfRyOIPnSRG"
  1904. },
  1905. {
  1906. "__type__": "85168CUiqxLUp5yAUkSDd2e",
  1907. "_name": "",
  1908. "_objFlags": 0,
  1909. "__editorExtras__": {},
  1910. "node": {
  1911. "__id__": 1
  1912. },
  1913. "_enabled": true,
  1914. "__prefab": {
  1915. "__id__": 81
  1916. },
  1917. "img_bg": {
  1918. "__id__": 2
  1919. },
  1920. "img_icon": {
  1921. "__id__": 3
  1922. },
  1923. "lab_count": {
  1924. "__id__": 9
  1925. },
  1926. "lab_name": {
  1927. "__id__": 36
  1928. },
  1929. "img_mask": {
  1930. "__id__": 15
  1931. },
  1932. "img_dot": {
  1933. "__id__": 59
  1934. },
  1935. "lab_days": {
  1936. "__id__": 60
  1937. },
  1938. "img_left_line": {
  1939. "__id__": 43
  1940. },
  1941. "img_right_line": {
  1942. "__id__": 51
  1943. },
  1944. "sf_item_default": {
  1945. "__uuid__": "82d19427-6e64-4ddb-b163-67f1fb30372b@f9941",
  1946. "__expectedType__": "cc.SpriteFrame"
  1947. },
  1948. "sf_item_current": {
  1949. "__uuid__": "bae3d895-0755-4cb6-ac1f-64767b90b57d@f9941",
  1950. "__expectedType__": "cc.SpriteFrame"
  1951. },
  1952. "sf_dot_default": {
  1953. "__uuid__": "2a437256-ef7e-43cf-bc64-4696f19290bb@f9941",
  1954. "__expectedType__": "cc.SpriteFrame"
  1955. },
  1956. "sf_dot_current": {
  1957. "__uuid__": "f27845fb-95c7-440b-bd77-df54fcdf00f7@f9941",
  1958. "__expectedType__": "cc.SpriteFrame"
  1959. },
  1960. "sf_line_default": {
  1961. "__uuid__": "cf748ba8-77a1-4dd1-b807-221cd028d8b2@f9941",
  1962. "__expectedType__": "cc.SpriteFrame"
  1963. },
  1964. "sf_line_current": {
  1965. "__uuid__": "7ef985e3-eb16-40f0-b989-edd6317515bb@f9941",
  1966. "__expectedType__": "cc.SpriteFrame"
  1967. },
  1968. "_id": ""
  1969. },
  1970. {
  1971. "__type__": "cc.CompPrefabInfo",
  1972. "fileId": "2fznq9InRGnIaVJGzx+y/Q"
  1973. },
  1974. {
  1975. "__type__": "cc.PrefabInfo",
  1976. "root": {
  1977. "__id__": 1
  1978. },
  1979. "asset": {
  1980. "__id__": 0
  1981. },
  1982. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  1983. "instance": null,
  1984. "targetOverrides": null
  1985. }
  1986. ]