sign.prefab 34 KB

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