cashRebate.prefab 34 KB

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