sign.prefab 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "sign",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 43
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [
  29. {
  30. "__id__": 49
  31. },
  32. {
  33. "__id__": 50
  34. },
  35. {
  36. "__id__": 51
  37. },
  38. {
  39. "__id__": 53
  40. }
  41. ],
  42. "_prefab": {
  43. "__id__": 54
  44. },
  45. "_opacity": 255,
  46. "_color": {
  47. "__type__": "cc.Color",
  48. "r": 255,
  49. "g": 255,
  50. "b": 255,
  51. "a": 255
  52. },
  53. "_contentSize": {
  54. "__type__": "cc.Size",
  55. "width": 750,
  56. "height": 1334
  57. },
  58. "_anchorPoint": {
  59. "__type__": "cc.Vec2",
  60. "x": 0.5,
  61. "y": 0.5
  62. },
  63. "_trs": {
  64. "__type__": "TypedArray",
  65. "ctor": "Float64Array",
  66. "array": [
  67. 375,
  68. 667,
  69. 0,
  70. 0,
  71. 0,
  72. 0,
  73. 1,
  74. 1,
  75. 1,
  76. 1
  77. ]
  78. },
  79. "_eulerAngles": {
  80. "__type__": "cc.Vec3",
  81. "x": 0,
  82. "y": 0,
  83. "z": 0
  84. },
  85. "_skewX": 0,
  86. "_skewY": 0,
  87. "_is3DNode": false,
  88. "_groupIndex": 0,
  89. "groupIndex": 0,
  90. "_id": ""
  91. },
  92. {
  93. "__type__": "cc.Node",
  94. "_name": "动画节点",
  95. "_objFlags": 0,
  96. "_parent": {
  97. "__id__": 1
  98. },
  99. "_children": [
  100. {
  101. "__id__": 3
  102. },
  103. {
  104. "__id__": 6
  105. },
  106. {
  107. "__id__": 15
  108. },
  109. {
  110. "__id__": 21
  111. },
  112. {
  113. "__id__": 24
  114. },
  115. {
  116. "__id__": 27
  117. }
  118. ],
  119. "_active": true,
  120. "_components": [
  121. {
  122. "__id__": 41
  123. }
  124. ],
  125. "_prefab": {
  126. "__id__": 42
  127. },
  128. "_opacity": 255,
  129. "_color": {
  130. "__type__": "cc.Color",
  131. "r": 255,
  132. "g": 255,
  133. "b": 255,
  134. "a": 255
  135. },
  136. "_contentSize": {
  137. "__type__": "cc.Size",
  138. "width": 750,
  139. "height": 1334
  140. },
  141. "_anchorPoint": {
  142. "__type__": "cc.Vec2",
  143. "x": 0.5,
  144. "y": 0.5
  145. },
  146. "_trs": {
  147. "__type__": "TypedArray",
  148. "ctor": "Float64Array",
  149. "array": [
  150. 0,
  151. 0,
  152. 0,
  153. 0,
  154. 0,
  155. 0,
  156. 1,
  157. 1,
  158. 1,
  159. 1
  160. ]
  161. },
  162. "_eulerAngles": {
  163. "__type__": "cc.Vec3",
  164. "x": 0,
  165. "y": 0,
  166. "z": 0
  167. },
  168. "_skewX": 0,
  169. "_skewY": 0,
  170. "_is3DNode": false,
  171. "_groupIndex": 0,
  172. "groupIndex": 0,
  173. "_id": ""
  174. },
  175. {
  176. "__type__": "cc.Node",
  177. "_name": "背景板",
  178. "_objFlags": 0,
  179. "_parent": {
  180. "__id__": 2
  181. },
  182. "_children": [],
  183. "_active": true,
  184. "_components": [
  185. {
  186. "__id__": 4
  187. }
  188. ],
  189. "_prefab": {
  190. "__id__": 5
  191. },
  192. "_opacity": 255,
  193. "_color": {
  194. "__type__": "cc.Color",
  195. "r": 255,
  196. "g": 255,
  197. "b": 255,
  198. "a": 255
  199. },
  200. "_contentSize": {
  201. "__type__": "cc.Size",
  202. "width": 656,
  203. "height": 717
  204. },
  205. "_anchorPoint": {
  206. "__type__": "cc.Vec2",
  207. "x": 0.5,
  208. "y": 0.5
  209. },
  210. "_trs": {
  211. "__type__": "TypedArray",
  212. "ctor": "Float64Array",
  213. "array": [
  214. 0,
  215. 152.918,
  216. 0,
  217. 0,
  218. 0,
  219. 0,
  220. 1,
  221. 1,
  222. 1,
  223. 1
  224. ]
  225. },
  226. "_eulerAngles": {
  227. "__type__": "cc.Vec3",
  228. "x": 0,
  229. "y": 0,
  230. "z": 0
  231. },
  232. "_skewX": 0,
  233. "_skewY": 0,
  234. "_is3DNode": false,
  235. "_groupIndex": 0,
  236. "groupIndex": 0,
  237. "_id": ""
  238. },
  239. {
  240. "__type__": "cc.Sprite",
  241. "_name": "",
  242. "_objFlags": 0,
  243. "node": {
  244. "__id__": 3
  245. },
  246. "_enabled": true,
  247. "_materials": [
  248. {
  249. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  250. }
  251. ],
  252. "_srcBlendFactor": 770,
  253. "_dstBlendFactor": 771,
  254. "_spriteFrame": {
  255. "__uuid__": "a989151b-72b7-473f-be09-0356d18bb79b"
  256. },
  257. "_type": 0,
  258. "_sizeMode": 1,
  259. "_fillType": 0,
  260. "_fillCenter": {
  261. "__type__": "cc.Vec2",
  262. "x": 0,
  263. "y": 0
  264. },
  265. "_fillStart": 0,
  266. "_fillRange": 0,
  267. "_isTrimmedMode": true,
  268. "_atlas": null,
  269. "_id": ""
  270. },
  271. {
  272. "__type__": "cc.PrefabInfo",
  273. "root": {
  274. "__id__": 1
  275. },
  276. "asset": {
  277. "__uuid__": "336fd143-f8e6-438c-bc88-e4fdf40e9791"
  278. },
  279. "fileId": "beueVIB7RHDq869+Lq2loa",
  280. "sync": false
  281. },
  282. {
  283. "__type__": "cc.Node",
  284. "_name": "滚动视图",
  285. "_objFlags": 0,
  286. "_parent": {
  287. "__id__": 2
  288. },
  289. "_children": [
  290. {
  291. "__id__": 7
  292. }
  293. ],
  294. "_active": true,
  295. "_components": [
  296. {
  297. "__id__": 12
  298. },
  299. {
  300. "__id__": 13
  301. }
  302. ],
  303. "_prefab": {
  304. "__id__": 14
  305. },
  306. "_opacity": 255,
  307. "_color": {
  308. "__type__": "cc.Color",
  309. "r": 255,
  310. "g": 255,
  311. "b": 255,
  312. "a": 255
  313. },
  314. "_contentSize": {
  315. "__type__": "cc.Size",
  316. "width": 600,
  317. "height": 570
  318. },
  319. "_anchorPoint": {
  320. "__type__": "cc.Vec2",
  321. "x": 0.5,
  322. "y": 0.5
  323. },
  324. "_trs": {
  325. "__type__": "TypedArray",
  326. "ctor": "Float64Array",
  327. "array": [
  328. 0,
  329. 147.955,
  330. 0,
  331. 0,
  332. 0,
  333. 0,
  334. 1,
  335. 1,
  336. 1,
  337. 1
  338. ]
  339. },
  340. "_eulerAngles": {
  341. "__type__": "cc.Vec3",
  342. "x": 0,
  343. "y": 0,
  344. "z": 0
  345. },
  346. "_skewX": 0,
  347. "_skewY": 0,
  348. "_is3DNode": false,
  349. "_groupIndex": 0,
  350. "groupIndex": 0,
  351. "_id": ""
  352. },
  353. {
  354. "__type__": "cc.Node",
  355. "_name": "view",
  356. "_objFlags": 0,
  357. "_parent": {
  358. "__id__": 6
  359. },
  360. "_children": [
  361. {
  362. "__id__": 8
  363. }
  364. ],
  365. "_active": true,
  366. "_components": [
  367. {
  368. "__id__": 10
  369. }
  370. ],
  371. "_prefab": {
  372. "__id__": 11
  373. },
  374. "_opacity": 255,
  375. "_color": {
  376. "__type__": "cc.Color",
  377. "r": 255,
  378. "g": 255,
  379. "b": 255,
  380. "a": 255
  381. },
  382. "_contentSize": {
  383. "__type__": "cc.Size",
  384. "width": 600,
  385. "height": 570
  386. },
  387. "_anchorPoint": {
  388. "__type__": "cc.Vec2",
  389. "x": 0.5,
  390. "y": 0.5
  391. },
  392. "_trs": {
  393. "__type__": "TypedArray",
  394. "ctor": "Float64Array",
  395. "array": [
  396. 0,
  397. 0,
  398. 0,
  399. 0,
  400. 0,
  401. 0,
  402. 1,
  403. 1,
  404. 1,
  405. 1
  406. ]
  407. },
  408. "_eulerAngles": {
  409. "__type__": "cc.Vec3",
  410. "x": 0,
  411. "y": 0,
  412. "z": 0
  413. },
  414. "_skewX": 0,
  415. "_skewY": 0,
  416. "_is3DNode": false,
  417. "_groupIndex": 0,
  418. "groupIndex": 0,
  419. "_id": ""
  420. },
  421. {
  422. "__type__": "cc.Node",
  423. "_name": "content",
  424. "_objFlags": 0,
  425. "_parent": {
  426. "__id__": 7
  427. },
  428. "_children": [],
  429. "_active": true,
  430. "_components": [],
  431. "_prefab": {
  432. "__id__": 9
  433. },
  434. "_opacity": 255,
  435. "_color": {
  436. "__type__": "cc.Color",
  437. "r": 255,
  438. "g": 255,
  439. "b": 255,
  440. "a": 255
  441. },
  442. "_contentSize": {
  443. "__type__": "cc.Size",
  444. "width": 600,
  445. "height": 570
  446. },
  447. "_anchorPoint": {
  448. "__type__": "cc.Vec2",
  449. "x": 0.5,
  450. "y": 1
  451. },
  452. "_trs": {
  453. "__type__": "TypedArray",
  454. "ctor": "Float64Array",
  455. "array": [
  456. 0,
  457. 285,
  458. 0,
  459. 0,
  460. 0,
  461. 0,
  462. 1,
  463. 1,
  464. 1,
  465. 1
  466. ]
  467. },
  468. "_eulerAngles": {
  469. "__type__": "cc.Vec3",
  470. "x": 0,
  471. "y": 0,
  472. "z": 0
  473. },
  474. "_skewX": 0,
  475. "_skewY": 0,
  476. "_is3DNode": false,
  477. "_groupIndex": 0,
  478. "groupIndex": 0,
  479. "_id": ""
  480. },
  481. {
  482. "__type__": "cc.PrefabInfo",
  483. "root": {
  484. "__id__": 1
  485. },
  486. "asset": {
  487. "__uuid__": "336fd143-f8e6-438c-bc88-e4fdf40e9791"
  488. },
  489. "fileId": "3ftrRQebdDMLvxRZUU5HN8",
  490. "sync": false
  491. },
  492. {
  493. "__type__": "cc.Mask",
  494. "_name": "",
  495. "_objFlags": 0,
  496. "node": {
  497. "__id__": 7
  498. },
  499. "_enabled": true,
  500. "_materials": [
  501. {
  502. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  503. }
  504. ],
  505. "_spriteFrame": null,
  506. "_type": 0,
  507. "_segments": 64,
  508. "_N$alphaThreshold": 0,
  509. "_N$inverted": false,
  510. "_id": ""
  511. },
  512. {
  513. "__type__": "cc.PrefabInfo",
  514. "root": {
  515. "__id__": 1
  516. },
  517. "asset": {
  518. "__uuid__": "336fd143-f8e6-438c-bc88-e4fdf40e9791"
  519. },
  520. "fileId": "f6gBdRJjtNQYP3ruhe0IF2",
  521. "sync": false
  522. },
  523. {
  524. "__type__": "cc.ScrollView",
  525. "_name": "",
  526. "_objFlags": 0,
  527. "node": {
  528. "__id__": 6
  529. },
  530. "_enabled": true,
  531. "horizontal": false,
  532. "vertical": true,
  533. "inertia": true,
  534. "brake": 0.75,
  535. "elastic": true,
  536. "bounceDuration": 0.23,
  537. "scrollEvents": [],
  538. "cancelInnerEvents": false,
  539. "_N$content": {
  540. "__id__": 8
  541. },
  542. "content": {
  543. "__id__": 8
  544. },
  545. "_N$horizontalScrollBar": null,
  546. "_N$verticalScrollBar": null,
  547. "_id": ""
  548. },
  549. {
  550. "__type__": "9a31drXM+9NCKYkF9D78zlF",
  551. "_name": "",
  552. "_objFlags": 0,
  553. "node": {
  554. "__id__": 6
  555. },
  556. "_enabled": true,
  557. "pre_item": [
  558. {
  559. "__uuid__": "29472b23-b80c-40b6-a145-952ea6a7a8cc"
  560. }
  561. ],
  562. "scr_item": [
  563. "SignItem"
  564. ],
  565. "itemInterval": 0,
  566. "_id": ""
  567. },
  568. {
  569. "__type__": "cc.PrefabInfo",
  570. "root": {
  571. "__id__": 1
  572. },
  573. "asset": {
  574. "__uuid__": "336fd143-f8e6-438c-bc88-e4fdf40e9791"
  575. },
  576. "fileId": "fbD7KlDfhIoYMGJW1LVslM",
  577. "sync": false
  578. },
  579. {
  580. "__type__": "cc.Node",
  581. "_name": "标题版",
  582. "_objFlags": 0,
  583. "_parent": {
  584. "__id__": 2
  585. },
  586. "_children": [
  587. {
  588. "__id__": 16
  589. }
  590. ],
  591. "_active": true,
  592. "_components": [
  593. {
  594. "__id__": 19
  595. }
  596. ],
  597. "_prefab": {
  598. "__id__": 20
  599. },
  600. "_opacity": 255,
  601. "_color": {
  602. "__type__": "cc.Color",
  603. "r": 255,
  604. "g": 255,
  605. "b": 255,
  606. "a": 255
  607. },
  608. "_contentSize": {
  609. "__type__": "cc.Size",
  610. "width": 528,
  611. "height": 123
  612. },
  613. "_anchorPoint": {
  614. "__type__": "cc.Vec2",
  615. "x": 0.5,
  616. "y": 0.5
  617. },
  618. "_trs": {
  619. "__type__": "TypedArray",
  620. "ctor": "Float64Array",
  621. "array": [
  622. 0,
  623. 487.453,
  624. 0,
  625. 0,
  626. 0,
  627. 0,
  628. 1,
  629. 1,
  630. 1,
  631. 1
  632. ]
  633. },
  634. "_eulerAngles": {
  635. "__type__": "cc.Vec3",
  636. "x": 0,
  637. "y": 0,
  638. "z": 0
  639. },
  640. "_skewX": 0,
  641. "_skewY": 0,
  642. "_is3DNode": false,
  643. "_groupIndex": 0,
  644. "groupIndex": 0,
  645. "_id": ""
  646. },
  647. {
  648. "__type__": "cc.Node",
  649. "_name": "标题",
  650. "_objFlags": 0,
  651. "_parent": {
  652. "__id__": 15
  653. },
  654. "_children": [],
  655. "_active": true,
  656. "_components": [
  657. {
  658. "__id__": 17
  659. }
  660. ],
  661. "_prefab": {
  662. "__id__": 18
  663. },
  664. "_opacity": 255,
  665. "_color": {
  666. "__type__": "cc.Color",
  667. "r": 255,
  668. "g": 255,
  669. "b": 255,
  670. "a": 255
  671. },
  672. "_contentSize": {
  673. "__type__": "cc.Size",
  674. "width": 313,
  675. "height": 96
  676. },
  677. "_anchorPoint": {
  678. "__type__": "cc.Vec2",
  679. "x": 0.5,
  680. "y": 0.5
  681. },
  682. "_trs": {
  683. "__type__": "TypedArray",
  684. "ctor": "Float64Array",
  685. "array": [
  686. 0,
  687. 12.524,
  688. 0,
  689. 0,
  690. 0,
  691. 0,
  692. 1,
  693. 1,
  694. 1,
  695. 1
  696. ]
  697. },
  698. "_eulerAngles": {
  699. "__type__": "cc.Vec3",
  700. "x": 0,
  701. "y": 0,
  702. "z": 0
  703. },
  704. "_skewX": 0,
  705. "_skewY": 0,
  706. "_is3DNode": false,
  707. "_groupIndex": 0,
  708. "groupIndex": 0,
  709. "_id": ""
  710. },
  711. {
  712. "__type__": "cc.Sprite",
  713. "_name": "",
  714. "_objFlags": 0,
  715. "node": {
  716. "__id__": 16
  717. },
  718. "_enabled": true,
  719. "_materials": [
  720. {
  721. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  722. }
  723. ],
  724. "_srcBlendFactor": 770,
  725. "_dstBlendFactor": 771,
  726. "_spriteFrame": {
  727. "__uuid__": "35dbf5d1-3dd4-4a0b-808f-2948c08f52e1"
  728. },
  729. "_type": 0,
  730. "_sizeMode": 1,
  731. "_fillType": 0,
  732. "_fillCenter": {
  733. "__type__": "cc.Vec2",
  734. "x": 0,
  735. "y": 0
  736. },
  737. "_fillStart": 0,
  738. "_fillRange": 0,
  739. "_isTrimmedMode": true,
  740. "_atlas": null,
  741. "_id": ""
  742. },
  743. {
  744. "__type__": "cc.PrefabInfo",
  745. "root": {
  746. "__id__": 1
  747. },
  748. "asset": {
  749. "__uuid__": "336fd143-f8e6-438c-bc88-e4fdf40e9791"
  750. },
  751. "fileId": "cdahULvRZN27nPtLFVKKh9",
  752. "sync": false
  753. },
  754. {
  755. "__type__": "cc.Sprite",
  756. "_name": "",
  757. "_objFlags": 0,
  758. "node": {
  759. "__id__": 15
  760. },
  761. "_enabled": true,
  762. "_materials": [
  763. {
  764. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  765. }
  766. ],
  767. "_srcBlendFactor": 770,
  768. "_dstBlendFactor": 771,
  769. "_spriteFrame": {
  770. "__uuid__": "736f4c4a-46e2-4f12-a2c5-e27cab0e63ff"
  771. },
  772. "_type": 0,
  773. "_sizeMode": 1,
  774. "_fillType": 0,
  775. "_fillCenter": {
  776. "__type__": "cc.Vec2",
  777. "x": 0,
  778. "y": 0
  779. },
  780. "_fillStart": 0,
  781. "_fillRange": 0,
  782. "_isTrimmedMode": true,
  783. "_atlas": null,
  784. "_id": ""
  785. },
  786. {
  787. "__type__": "cc.PrefabInfo",
  788. "root": {
  789. "__id__": 1
  790. },
  791. "asset": {
  792. "__uuid__": "336fd143-f8e6-438c-bc88-e4fdf40e9791"
  793. },
  794. "fileId": "e3g7V5/+RN67+4qMmU8i5G",
  795. "sync": false
  796. },
  797. {
  798. "__type__": "cc.Node",
  799. "_name": "熊猫",
  800. "_objFlags": 0,
  801. "_parent": {
  802. "__id__": 2
  803. },
  804. "_children": [],
  805. "_active": false,
  806. "_components": [
  807. {
  808. "__id__": 22
  809. }
  810. ],
  811. "_prefab": {
  812. "__id__": 23
  813. },
  814. "_opacity": 255,
  815. "_color": {
  816. "__type__": "cc.Color",
  817. "r": 255,
  818. "g": 255,
  819. "b": 255,
  820. "a": 255
  821. },
  822. "_contentSize": {
  823. "__type__": "cc.Size",
  824. "width": 167,
  825. "height": 213
  826. },
  827. "_anchorPoint": {
  828. "__type__": "cc.Vec2",
  829. "x": 0.39,
  830. "y": 0
  831. },
  832. "_trs": {
  833. "__type__": "TypedArray",
  834. "ctor": "Float64Array",
  835. "array": [
  836. 295.698,
  837. -264.966,
  838. 0,
  839. 0,
  840. 0,
  841. 0,
  842. 1,
  843. 1,
  844. 1,
  845. 1
  846. ]
  847. },
  848. "_eulerAngles": {
  849. "__type__": "cc.Vec3",
  850. "x": 0,
  851. "y": 0,
  852. "z": 0
  853. },
  854. "_skewX": 0,
  855. "_skewY": 0,
  856. "_is3DNode": false,
  857. "_groupIndex": 0,
  858. "groupIndex": 0,
  859. "_id": ""
  860. },
  861. {
  862. "__type__": "cc.Sprite",
  863. "_name": "",
  864. "_objFlags": 0,
  865. "node": {
  866. "__id__": 21
  867. },
  868. "_enabled": true,
  869. "_materials": [
  870. {
  871. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  872. }
  873. ],
  874. "_srcBlendFactor": 770,
  875. "_dstBlendFactor": 771,
  876. "_spriteFrame": {
  877. "__uuid__": "ee58b804-bbf7-4964-b0d8-32ac0a6bbee4"
  878. },
  879. "_type": 0,
  880. "_sizeMode": 1,
  881. "_fillType": 0,
  882. "_fillCenter": {
  883. "__type__": "cc.Vec2",
  884. "x": 0,
  885. "y": 0
  886. },
  887. "_fillStart": 0,
  888. "_fillRange": 0,
  889. "_isTrimmedMode": true,
  890. "_atlas": null,
  891. "_id": ""
  892. },
  893. {
  894. "__type__": "cc.PrefabInfo",
  895. "root": {
  896. "__id__": 1
  897. },
  898. "asset": {
  899. "__uuid__": "336fd143-f8e6-438c-bc88-e4fdf40e9791"
  900. },
  901. "fileId": "48/78AGXhG25RfH7wQMUxa",
  902. "sync": false
  903. },
  904. {
  905. "__type__": "cc.Node",
  906. "_name": "熊猫",
  907. "_objFlags": 0,
  908. "_parent": {
  909. "__id__": 2
  910. },
  911. "_children": [],
  912. "_active": true,
  913. "_components": [
  914. {
  915. "__id__": 25
  916. }
  917. ],
  918. "_prefab": {
  919. "__id__": 26
  920. },
  921. "_opacity": 255,
  922. "_color": {
  923. "__type__": "cc.Color",
  924. "r": 255,
  925. "g": 255,
  926. "b": 255,
  927. "a": 255
  928. },
  929. "_contentSize": {
  930. "__type__": "cc.Size",
  931. "width": 1067.8,
  932. "height": 691.36
  933. },
  934. "_anchorPoint": {
  935. "__type__": "cc.Vec2",
  936. "x": 0.39,
  937. "y": 0
  938. },
  939. "_trs": {
  940. "__type__": "TypedArray",
  941. "ctor": "Float64Array",
  942. "array": [
  943. 295.698,
  944. -266.571,
  945. 0,
  946. 0,
  947. 0,
  948. 0,
  949. 1,
  950. 0.4,
  951. 0.4,
  952. 1
  953. ]
  954. },
  955. "_eulerAngles": {
  956. "__type__": "cc.Vec3",
  957. "x": 0,
  958. "y": 0,
  959. "z": 0
  960. },
  961. "_skewX": 0,
  962. "_skewY": 0,
  963. "_is3DNode": false,
  964. "_groupIndex": 0,
  965. "groupIndex": 0,
  966. "_id": ""
  967. },
  968. {
  969. "__type__": "sp.Skeleton",
  970. "_name": "",
  971. "_objFlags": 0,
  972. "node": {
  973. "__id__": 24
  974. },
  975. "_enabled": true,
  976. "_materials": [
  977. {
  978. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  979. }
  980. ],
  981. "paused": false,
  982. "defaultSkin": "default",
  983. "defaultAnimation": "ue_2",
  984. "_preCacheMode": 0,
  985. "_cacheMode": 0,
  986. "loop": true,
  987. "premultipliedAlpha": true,
  988. "timeScale": 1,
  989. "_accTime": 0,
  990. "_playCount": 0,
  991. "_frameCache": null,
  992. "_curFrame": null,
  993. "_skeletonCache": null,
  994. "_animationName": "ue_2",
  995. "_animationQueue": [],
  996. "_headAniInfo": null,
  997. "_playTimes": 0,
  998. "_isAniComplete": true,
  999. "_N$skeletonData": {
  1000. "__uuid__": "8de08dc2-a439-4a3c-b667-a56bec3c0f5d"
  1001. },
  1002. "_N$_defaultCacheMode": 0,
  1003. "_N$debugSlots": false,
  1004. "_N$debugBones": false,
  1005. "_N$debugMesh": false,
  1006. "_N$useTint": false,
  1007. "_N$enableBatch": false,
  1008. "_id": ""
  1009. },
  1010. {
  1011. "__type__": "cc.PrefabInfo",
  1012. "root": {
  1013. "__id__": 1
  1014. },
  1015. "asset": {
  1016. "__uuid__": "336fd143-f8e6-438c-bc88-e4fdf40e9791"
  1017. },
  1018. "fileId": "e2EUqd0uNOtqjmnhosXrMU",
  1019. "sync": false
  1020. },
  1021. {
  1022. "__type__": "cc.Node",
  1023. "_name": "按钮_签到",
  1024. "_objFlags": 0,
  1025. "_parent": {
  1026. "__id__": 2
  1027. },
  1028. "_children": [
  1029. {
  1030. "__id__": 28
  1031. },
  1032. {
  1033. "__id__": 31
  1034. }
  1035. ],
  1036. "_active": true,
  1037. "_components": [
  1038. {
  1039. "__id__": 35
  1040. },
  1041. {
  1042. "__id__": 36
  1043. },
  1044. {
  1045. "__id__": 37
  1046. },
  1047. {
  1048. "__id__": 39
  1049. }
  1050. ],
  1051. "_prefab": {
  1052. "__id__": 40
  1053. },
  1054. "_opacity": 255,
  1055. "_color": {
  1056. "__type__": "cc.Color",
  1057. "r": 255,
  1058. "g": 255,
  1059. "b": 255,
  1060. "a": 255
  1061. },
  1062. "_contentSize": {
  1063. "__type__": "cc.Size",
  1064. "width": 328,
  1065. "height": 137
  1066. },
  1067. "_anchorPoint": {
  1068. "__type__": "cc.Vec2",
  1069. "x": 0.5,
  1070. "y": 0.5
  1071. },
  1072. "_trs": {
  1073. "__type__": "TypedArray",
  1074. "ctor": "Float64Array",
  1075. "array": [
  1076. 0,
  1077. -319.038,
  1078. 0,
  1079. 0,
  1080. 0,
  1081. 0,
  1082. 1,
  1083. 1,
  1084. 1,
  1085. 1
  1086. ]
  1087. },
  1088. "_eulerAngles": {
  1089. "__type__": "cc.Vec3",
  1090. "x": 0,
  1091. "y": 0,
  1092. "z": 0
  1093. },
  1094. "_skewX": 0,
  1095. "_skewY": 0,
  1096. "_is3DNode": false,
  1097. "_groupIndex": 0,
  1098. "groupIndex": 0,
  1099. "_id": ""
  1100. },
  1101. {
  1102. "__type__": "cc.Node",
  1103. "_name": "视频图标",
  1104. "_objFlags": 0,
  1105. "_parent": {
  1106. "__id__": 27
  1107. },
  1108. "_children": [],
  1109. "_active": true,
  1110. "_components": [
  1111. {
  1112. "__id__": 29
  1113. }
  1114. ],
  1115. "_prefab": {
  1116. "__id__": 30
  1117. },
  1118. "_opacity": 255,
  1119. "_color": {
  1120. "__type__": "cc.Color",
  1121. "r": 255,
  1122. "g": 255,
  1123. "b": 255,
  1124. "a": 255
  1125. },
  1126. "_contentSize": {
  1127. "__type__": "cc.Size",
  1128. "width": 42,
  1129. "height": 44
  1130. },
  1131. "_anchorPoint": {
  1132. "__type__": "cc.Vec2",
  1133. "x": 0.5,
  1134. "y": 0.5
  1135. },
  1136. "_trs": {
  1137. "__type__": "TypedArray",
  1138. "ctor": "Float64Array",
  1139. "array": [
  1140. -68.755,
  1141. 8.98,
  1142. 0,
  1143. 0,
  1144. 0,
  1145. 0,
  1146. 1,
  1147. 1,
  1148. 1,
  1149. 1
  1150. ]
  1151. },
  1152. "_eulerAngles": {
  1153. "__type__": "cc.Vec3",
  1154. "x": 0,
  1155. "y": 0,
  1156. "z": 0
  1157. },
  1158. "_skewX": 0,
  1159. "_skewY": 0,
  1160. "_is3DNode": false,
  1161. "_groupIndex": 0,
  1162. "groupIndex": 0,
  1163. "_id": ""
  1164. },
  1165. {
  1166. "__type__": "cc.Sprite",
  1167. "_name": "",
  1168. "_objFlags": 0,
  1169. "node": {
  1170. "__id__": 28
  1171. },
  1172. "_enabled": true,
  1173. "_materials": [
  1174. {
  1175. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1176. }
  1177. ],
  1178. "_srcBlendFactor": 770,
  1179. "_dstBlendFactor": 771,
  1180. "_spriteFrame": {
  1181. "__uuid__": "3d40207d-8f58-4680-a0a1-1ca79f6a646c"
  1182. },
  1183. "_type": 0,
  1184. "_sizeMode": 1,
  1185. "_fillType": 0,
  1186. "_fillCenter": {
  1187. "__type__": "cc.Vec2",
  1188. "x": 0,
  1189. "y": 0
  1190. },
  1191. "_fillStart": 0,
  1192. "_fillRange": 0,
  1193. "_isTrimmedMode": true,
  1194. "_atlas": null,
  1195. "_id": ""
  1196. },
  1197. {
  1198. "__type__": "cc.PrefabInfo",
  1199. "root": {
  1200. "__id__": 1
  1201. },
  1202. "asset": {
  1203. "__uuid__": "336fd143-f8e6-438c-bc88-e4fdf40e9791"
  1204. },
  1205. "fileId": "84brVkywNDVaLSA0QknbJM",
  1206. "sync": false
  1207. },
  1208. {
  1209. "__type__": "cc.Node",
  1210. "_name": "按钮描述",
  1211. "_objFlags": 0,
  1212. "_parent": {
  1213. "__id__": 27
  1214. },
  1215. "_children": [],
  1216. "_active": true,
  1217. "_components": [
  1218. {
  1219. "__id__": 32
  1220. },
  1221. {
  1222. "__id__": 33
  1223. }
  1224. ],
  1225. "_prefab": {
  1226. "__id__": 34
  1227. },
  1228. "_opacity": 255,
  1229. "_color": {
  1230. "__type__": "cc.Color",
  1231. "r": 255,
  1232. "g": 255,
  1233. "b": 255,
  1234. "a": 255
  1235. },
  1236. "_contentSize": {
  1237. "__type__": "cc.Size",
  1238. "width": 84,
  1239. "height": 54.4
  1240. },
  1241. "_anchorPoint": {
  1242. "__type__": "cc.Vec2",
  1243. "x": 0.5,
  1244. "y": 0.5
  1245. },
  1246. "_trs": {
  1247. "__type__": "TypedArray",
  1248. "ctor": "Float64Array",
  1249. "array": [
  1250. 19.672,
  1251. 11.088,
  1252. 0,
  1253. 0,
  1254. 0,
  1255. 0,
  1256. 1,
  1257. 1,
  1258. 1,
  1259. 1
  1260. ]
  1261. },
  1262. "_eulerAngles": {
  1263. "__type__": "cc.Vec3",
  1264. "x": 0,
  1265. "y": 0,
  1266. "z": 0
  1267. },
  1268. "_skewX": 0,
  1269. "_skewY": 0,
  1270. "_is3DNode": false,
  1271. "_groupIndex": 0,
  1272. "groupIndex": 0,
  1273. "_id": ""
  1274. },
  1275. {
  1276. "__type__": "cc.Label",
  1277. "_name": "",
  1278. "_objFlags": 0,
  1279. "node": {
  1280. "__id__": 31
  1281. },
  1282. "_enabled": true,
  1283. "_materials": [
  1284. {
  1285. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1286. }
  1287. ],
  1288. "_srcBlendFactor": 770,
  1289. "_dstBlendFactor": 771,
  1290. "_string": "签到",
  1291. "_N$string": "签到",
  1292. "_fontSize": 40,
  1293. "_lineHeight": 40,
  1294. "_enableWrapText": true,
  1295. "_N$file": {
  1296. "__uuid__": "0bc2f1e8-1dd4-45ba-8f7e-36c47dde4152"
  1297. },
  1298. "_isSystemFontUsed": false,
  1299. "_spacingX": 0,
  1300. "_batchAsBitmap": false,
  1301. "_styleFlags": 0,
  1302. "_underlineHeight": 0,
  1303. "_N$horizontalAlign": 1,
  1304. "_N$verticalAlign": 1,
  1305. "_N$fontFamily": "Arial",
  1306. "_N$overflow": 0,
  1307. "_N$cacheMode": 0,
  1308. "_id": ""
  1309. },
  1310. {
  1311. "__type__": "cc.LabelOutline",
  1312. "_name": "",
  1313. "_objFlags": 0,
  1314. "node": {
  1315. "__id__": 31
  1316. },
  1317. "_enabled": true,
  1318. "_color": {
  1319. "__type__": "cc.Color",
  1320. "r": 13,
  1321. "g": 107,
  1322. "b": 0,
  1323. "a": 255
  1324. },
  1325. "_width": 2,
  1326. "_id": ""
  1327. },
  1328. {
  1329. "__type__": "cc.PrefabInfo",
  1330. "root": {
  1331. "__id__": 1
  1332. },
  1333. "asset": {
  1334. "__uuid__": "336fd143-f8e6-438c-bc88-e4fdf40e9791"
  1335. },
  1336. "fileId": "decGIMIDdAjqxTTzB3H1mk",
  1337. "sync": false
  1338. },
  1339. {
  1340. "__type__": "cc.Sprite",
  1341. "_name": "",
  1342. "_objFlags": 0,
  1343. "node": {
  1344. "__id__": 27
  1345. },
  1346. "_enabled": true,
  1347. "_materials": [
  1348. {
  1349. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1350. }
  1351. ],
  1352. "_srcBlendFactor": 770,
  1353. "_dstBlendFactor": 771,
  1354. "_spriteFrame": {
  1355. "__uuid__": "c3f3ce70-5592-4b5a-bb79-363c0338d77f"
  1356. },
  1357. "_type": 0,
  1358. "_sizeMode": 1,
  1359. "_fillType": 0,
  1360. "_fillCenter": {
  1361. "__type__": "cc.Vec2",
  1362. "x": 0,
  1363. "y": 0
  1364. },
  1365. "_fillStart": 0,
  1366. "_fillRange": 0,
  1367. "_isTrimmedMode": true,
  1368. "_atlas": null,
  1369. "_id": ""
  1370. },
  1371. {
  1372. "__type__": "cc.Animation",
  1373. "_name": "",
  1374. "_objFlags": 0,
  1375. "node": {
  1376. "__id__": 27
  1377. },
  1378. "_enabled": true,
  1379. "_defaultClip": {
  1380. "__uuid__": "1c7cfdae-7b6c-46a5-9085-2fa8aa684ac7"
  1381. },
  1382. "_clips": [
  1383. {
  1384. "__uuid__": "1c7cfdae-7b6c-46a5-9085-2fa8aa684ac7"
  1385. }
  1386. ],
  1387. "playOnLoad": false,
  1388. "_id": ""
  1389. },
  1390. {
  1391. "__type__": "cc.Button",
  1392. "_name": "",
  1393. "_objFlags": 0,
  1394. "node": {
  1395. "__id__": 27
  1396. },
  1397. "_enabled": true,
  1398. "_normalMaterial": {
  1399. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1400. },
  1401. "_grayMaterial": {
  1402. "__uuid__": "3a7bb79f-32fd-422e-ada2-96f518fed422"
  1403. },
  1404. "duration": 0.1,
  1405. "zoomScale": 1.2,
  1406. "clickEvents": [
  1407. {
  1408. "__id__": 38
  1409. }
  1410. ],
  1411. "_N$interactable": true,
  1412. "_N$enableAutoGrayEffect": false,
  1413. "_N$transition": 0,
  1414. "transition": 0,
  1415. "_N$normalColor": {
  1416. "__type__": "cc.Color",
  1417. "r": 255,
  1418. "g": 255,
  1419. "b": 255,
  1420. "a": 255
  1421. },
  1422. "_N$pressedColor": {
  1423. "__type__": "cc.Color",
  1424. "r": 211,
  1425. "g": 211,
  1426. "b": 211,
  1427. "a": 255
  1428. },
  1429. "pressedColor": {
  1430. "__type__": "cc.Color",
  1431. "r": 211,
  1432. "g": 211,
  1433. "b": 211,
  1434. "a": 255
  1435. },
  1436. "_N$hoverColor": {
  1437. "__type__": "cc.Color",
  1438. "r": 255,
  1439. "g": 255,
  1440. "b": 255,
  1441. "a": 255
  1442. },
  1443. "hoverColor": {
  1444. "__type__": "cc.Color",
  1445. "r": 255,
  1446. "g": 255,
  1447. "b": 255,
  1448. "a": 255
  1449. },
  1450. "_N$disabledColor": {
  1451. "__type__": "cc.Color",
  1452. "r": 124,
  1453. "g": 124,
  1454. "b": 124,
  1455. "a": 255
  1456. },
  1457. "_N$normalSprite": null,
  1458. "_N$pressedSprite": null,
  1459. "pressedSprite": null,
  1460. "_N$hoverSprite": null,
  1461. "hoverSprite": null,
  1462. "_N$disabledSprite": null,
  1463. "_N$target": {
  1464. "__id__": 27
  1465. },
  1466. "_id": ""
  1467. },
  1468. {
  1469. "__type__": "cc.ClickEvent",
  1470. "target": {
  1471. "__id__": 1
  1472. },
  1473. "component": "",
  1474. "_componentId": "92c1epESLhJSLrId9Dkn6Wd",
  1475. "handler": "clickReceiveReward",
  1476. "customEventData": ""
  1477. },
  1478. {
  1479. "__type__": "f67a9SEPlBL8rHHpVX6g1ZW",
  1480. "_name": "",
  1481. "_objFlags": 0,
  1482. "node": {
  1483. "__id__": 27
  1484. },
  1485. "_enabled": true,
  1486. "normal": {
  1487. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1488. },
  1489. "gray": {
  1490. "__uuid__": "3a7bb79f-32fd-422e-ada2-96f518fed422"
  1491. },
  1492. "grayState": false,
  1493. "_id": ""
  1494. },
  1495. {
  1496. "__type__": "cc.PrefabInfo",
  1497. "root": {
  1498. "__id__": 1
  1499. },
  1500. "asset": {
  1501. "__uuid__": "336fd143-f8e6-438c-bc88-e4fdf40e9791"
  1502. },
  1503. "fileId": "e9mvSUMgNMQr5UQA6xbHF0",
  1504. "sync": false
  1505. },
  1506. {
  1507. "__type__": "cc.Widget",
  1508. "_name": "",
  1509. "_objFlags": 0,
  1510. "node": {
  1511. "__id__": 2
  1512. },
  1513. "_enabled": true,
  1514. "alignMode": 1,
  1515. "_target": null,
  1516. "_alignFlags": 45,
  1517. "_left": 0,
  1518. "_right": 0,
  1519. "_top": 0,
  1520. "_bottom": 0,
  1521. "_verticalCenter": 0,
  1522. "_horizontalCenter": 0,
  1523. "_isAbsLeft": true,
  1524. "_isAbsRight": true,
  1525. "_isAbsTop": true,
  1526. "_isAbsBottom": true,
  1527. "_isAbsHorizontalCenter": true,
  1528. "_isAbsVerticalCenter": true,
  1529. "_originalWidth": 0,
  1530. "_originalHeight": 0,
  1531. "_id": ""
  1532. },
  1533. {
  1534. "__type__": "cc.PrefabInfo",
  1535. "root": {
  1536. "__id__": 1
  1537. },
  1538. "asset": {
  1539. "__uuid__": "336fd143-f8e6-438c-bc88-e4fdf40e9791"
  1540. },
  1541. "fileId": "94yiGj0RFACpXt5xGEvfHf",
  1542. "sync": false
  1543. },
  1544. {
  1545. "__type__": "cc.Node",
  1546. "_name": "关闭按钮",
  1547. "_objFlags": 0,
  1548. "_parent": {
  1549. "__id__": 1
  1550. },
  1551. "_children": [],
  1552. "_active": true,
  1553. "_components": [
  1554. {
  1555. "__id__": 44
  1556. },
  1557. {
  1558. "__id__": 45
  1559. },
  1560. {
  1561. "__id__": 46
  1562. }
  1563. ],
  1564. "_prefab": {
  1565. "__id__": 48
  1566. },
  1567. "_opacity": 255,
  1568. "_color": {
  1569. "__type__": "cc.Color",
  1570. "r": 255,
  1571. "g": 255,
  1572. "b": 255,
  1573. "a": 255
  1574. },
  1575. "_contentSize": {
  1576. "__type__": "cc.Size",
  1577. "width": 88,
  1578. "height": 88
  1579. },
  1580. "_anchorPoint": {
  1581. "__type__": "cc.Vec2",
  1582. "x": 0.5,
  1583. "y": 0.5
  1584. },
  1585. "_trs": {
  1586. "__type__": "TypedArray",
  1587. "ctor": "Float64Array",
  1588. "array": [
  1589. 303.19,
  1590. 577.215,
  1591. 0,
  1592. 0,
  1593. 0,
  1594. 0,
  1595. 1,
  1596. 1,
  1597. 1,
  1598. 0
  1599. ]
  1600. },
  1601. "_eulerAngles": {
  1602. "__type__": "cc.Vec3",
  1603. "x": 0,
  1604. "y": 0,
  1605. "z": 0
  1606. },
  1607. "_skewX": 0,
  1608. "_skewY": 0,
  1609. "_is3DNode": false,
  1610. "_groupIndex": 0,
  1611. "groupIndex": 0,
  1612. "_id": ""
  1613. },
  1614. {
  1615. "__type__": "cc.Sprite",
  1616. "_name": "",
  1617. "_objFlags": 0,
  1618. "node": {
  1619. "__id__": 43
  1620. },
  1621. "_enabled": true,
  1622. "_materials": [
  1623. {
  1624. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1625. }
  1626. ],
  1627. "_srcBlendFactor": 770,
  1628. "_dstBlendFactor": 771,
  1629. "_spriteFrame": {
  1630. "__uuid__": "af2a7472-1f78-414a-8307-5ac0edead809"
  1631. },
  1632. "_type": 0,
  1633. "_sizeMode": 1,
  1634. "_fillType": 0,
  1635. "_fillCenter": {
  1636. "__type__": "cc.Vec2",
  1637. "x": 0,
  1638. "y": 0
  1639. },
  1640. "_fillStart": 0,
  1641. "_fillRange": 0,
  1642. "_isTrimmedMode": true,
  1643. "_atlas": null,
  1644. "_id": ""
  1645. },
  1646. {
  1647. "__type__": "cc.Button",
  1648. "_name": "",
  1649. "_objFlags": 0,
  1650. "node": {
  1651. "__id__": 43
  1652. },
  1653. "_enabled": true,
  1654. "_normalMaterial": null,
  1655. "_grayMaterial": null,
  1656. "duration": 0.1,
  1657. "zoomScale": 1.2,
  1658. "clickEvents": [],
  1659. "_N$interactable": true,
  1660. "_N$enableAutoGrayEffect": false,
  1661. "_N$transition": 3,
  1662. "transition": 3,
  1663. "_N$normalColor": {
  1664. "__type__": "cc.Color",
  1665. "r": 255,
  1666. "g": 255,
  1667. "b": 255,
  1668. "a": 255
  1669. },
  1670. "_N$pressedColor": {
  1671. "__type__": "cc.Color",
  1672. "r": 211,
  1673. "g": 211,
  1674. "b": 211,
  1675. "a": 255
  1676. },
  1677. "pressedColor": {
  1678. "__type__": "cc.Color",
  1679. "r": 211,
  1680. "g": 211,
  1681. "b": 211,
  1682. "a": 255
  1683. },
  1684. "_N$hoverColor": {
  1685. "__type__": "cc.Color",
  1686. "r": 255,
  1687. "g": 255,
  1688. "b": 255,
  1689. "a": 255
  1690. },
  1691. "hoverColor": {
  1692. "__type__": "cc.Color",
  1693. "r": 255,
  1694. "g": 255,
  1695. "b": 255,
  1696. "a": 255
  1697. },
  1698. "_N$disabledColor": {
  1699. "__type__": "cc.Color",
  1700. "r": 124,
  1701. "g": 124,
  1702. "b": 124,
  1703. "a": 255
  1704. },
  1705. "_N$normalSprite": null,
  1706. "_N$pressedSprite": null,
  1707. "pressedSprite": null,
  1708. "_N$hoverSprite": null,
  1709. "hoverSprite": null,
  1710. "_N$disabledSprite": null,
  1711. "_N$target": null,
  1712. "_id": ""
  1713. },
  1714. {
  1715. "__type__": "cdc50kCRVVBa5gcp4XXxVO+",
  1716. "_name": "",
  1717. "_objFlags": 0,
  1718. "node": {
  1719. "__id__": 43
  1720. },
  1721. "_enabled": true,
  1722. "node_panel": {
  1723. "__id__": 1
  1724. },
  1725. "transition_type": 0,
  1726. "onComplete": [
  1727. {
  1728. "__id__": 47
  1729. }
  1730. ],
  1731. "_id": ""
  1732. },
  1733. {
  1734. "__type__": "cc.ClickEvent",
  1735. "target": {
  1736. "__id__": 1
  1737. },
  1738. "component": "",
  1739. "_componentId": "92c1epESLhJSLrId9Dkn6Wd",
  1740. "handler": "onClickClose",
  1741. "customEventData": ""
  1742. },
  1743. {
  1744. "__type__": "cc.PrefabInfo",
  1745. "root": {
  1746. "__id__": 1
  1747. },
  1748. "asset": {
  1749. "__uuid__": "336fd143-f8e6-438c-bc88-e4fdf40e9791"
  1750. },
  1751. "fileId": "168YVy5dRGxbnkVFwgdXzm",
  1752. "sync": false
  1753. },
  1754. {
  1755. "__type__": "cc.Widget",
  1756. "_name": "",
  1757. "_objFlags": 0,
  1758. "node": {
  1759. "__id__": 1
  1760. },
  1761. "_enabled": true,
  1762. "alignMode": 1,
  1763. "_target": null,
  1764. "_alignFlags": 45,
  1765. "_left": 0,
  1766. "_right": 0,
  1767. "_top": 0,
  1768. "_bottom": 0,
  1769. "_verticalCenter": 0,
  1770. "_horizontalCenter": 0,
  1771. "_isAbsLeft": true,
  1772. "_isAbsRight": true,
  1773. "_isAbsTop": true,
  1774. "_isAbsBottom": true,
  1775. "_isAbsHorizontalCenter": true,
  1776. "_isAbsVerticalCenter": true,
  1777. "_originalWidth": 0,
  1778. "_originalHeight": 0,
  1779. "_id": ""
  1780. },
  1781. {
  1782. "__type__": "92c1epESLhJSLrId9Dkn6Wd",
  1783. "_name": "",
  1784. "_objFlags": 0,
  1785. "node": {
  1786. "__id__": 1
  1787. },
  1788. "_enabled": true,
  1789. "scroll_view": {
  1790. "__id__": 12
  1791. },
  1792. "anim_btn": {
  1793. "__id__": 36
  1794. },
  1795. "_id": ""
  1796. },
  1797. {
  1798. "__type__": "58495/rJOBNGoxELFSp8G2a",
  1799. "_name": "",
  1800. "_objFlags": 0,
  1801. "node": {
  1802. "__id__": 1
  1803. },
  1804. "_enabled": true,
  1805. "color": {
  1806. "__type__": "cc.Color",
  1807. "r": 0,
  1808. "g": 0,
  1809. "b": 0,
  1810. "a": 230
  1811. },
  1812. "design_block_node": {
  1813. "__id__": 3
  1814. },
  1815. "bClickClose": true,
  1816. "onComplete": [
  1817. {
  1818. "__id__": 52
  1819. }
  1820. ],
  1821. "_id": ""
  1822. },
  1823. {
  1824. "__type__": "cc.ClickEvent",
  1825. "target": {
  1826. "__id__": 1
  1827. },
  1828. "component": "",
  1829. "_componentId": "92c1epESLhJSLrId9Dkn6Wd",
  1830. "handler": "onClickClose",
  1831. "customEventData": ""
  1832. },
  1833. {
  1834. "__type__": "ac053zwqaRD6IJmTlQWmefZ",
  1835. "_name": "",
  1836. "_objFlags": 0,
  1837. "node": {
  1838. "__id__": 1
  1839. },
  1840. "_enabled": true,
  1841. "effect_par": {
  1842. "__id__": 2
  1843. },
  1844. "open_effect": 1,
  1845. "close_effect": 1,
  1846. "close_toPoint": "",
  1847. "_id": ""
  1848. },
  1849. {
  1850. "__type__": "cc.PrefabInfo",
  1851. "root": {
  1852. "__id__": 1
  1853. },
  1854. "asset": {
  1855. "__uuid__": "336fd143-f8e6-438c-bc88-e4fdf40e9791"
  1856. },
  1857. "fileId": "",
  1858. "sync": false
  1859. }
  1860. ]