slotNTigerRule.prefab 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151
  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": "slotNTigerRule",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. },
  26. {
  27. "__id__": 39
  28. },
  29. {
  30. "__id__": 54
  31. }
  32. ],
  33. "_active": true,
  34. "_components": [
  35. {
  36. "__id__": 58
  37. },
  38. {
  39. "__id__": 59
  40. }
  41. ],
  42. "_prefab": {
  43. "__id__": 60
  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. -1000,
  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": "spr_bg",
  95. "_objFlags": 0,
  96. "_parent": {
  97. "__id__": 1
  98. },
  99. "_children": [],
  100. "_active": true,
  101. "_components": [
  102. {
  103. "__id__": 3
  104. },
  105. {
  106. "__id__": 4
  107. }
  108. ],
  109. "_prefab": {
  110. "__id__": 5
  111. },
  112. "_opacity": 255,
  113. "_color": {
  114. "__type__": "cc.Color",
  115. "r": 40,
  116. "g": 40,
  117. "b": 52,
  118. "a": 255
  119. },
  120. "_contentSize": {
  121. "__type__": "cc.Size",
  122. "width": 750,
  123. "height": 1334
  124. },
  125. "_anchorPoint": {
  126. "__type__": "cc.Vec2",
  127. "x": 0.5,
  128. "y": 0.5
  129. },
  130. "_trs": {
  131. "__type__": "TypedArray",
  132. "ctor": "Float64Array",
  133. "array": [
  134. 0,
  135. 0,
  136. 0,
  137. 0,
  138. 0,
  139. 0,
  140. 1,
  141. 1,
  142. 1,
  143. 1
  144. ]
  145. },
  146. "_eulerAngles": {
  147. "__type__": "cc.Vec3",
  148. "x": 0,
  149. "y": 0,
  150. "z": 0
  151. },
  152. "_skewX": 0,
  153. "_skewY": 0,
  154. "_is3DNode": false,
  155. "_groupIndex": 0,
  156. "groupIndex": 0,
  157. "_id": ""
  158. },
  159. {
  160. "__type__": "cc.Sprite",
  161. "_name": "",
  162. "_objFlags": 0,
  163. "node": {
  164. "__id__": 2
  165. },
  166. "_enabled": true,
  167. "_materials": [
  168. {
  169. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  170. }
  171. ],
  172. "_srcBlendFactor": 770,
  173. "_dstBlendFactor": 771,
  174. "_spriteFrame": {
  175. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  176. },
  177. "_type": 0,
  178. "_sizeMode": 0,
  179. "_fillType": 0,
  180. "_fillCenter": {
  181. "__type__": "cc.Vec2",
  182. "x": 0,
  183. "y": 0
  184. },
  185. "_fillStart": 0,
  186. "_fillRange": 0,
  187. "_isTrimmedMode": true,
  188. "_atlas": null,
  189. "_id": ""
  190. },
  191. {
  192. "__type__": "cc.Widget",
  193. "_name": "",
  194. "_objFlags": 0,
  195. "node": {
  196. "__id__": 2
  197. },
  198. "_enabled": true,
  199. "alignMode": 1,
  200. "_target": null,
  201. "_alignFlags": 45,
  202. "_left": 0,
  203. "_right": 0,
  204. "_top": 0,
  205. "_bottom": 0,
  206. "_verticalCenter": 0,
  207. "_horizontalCenter": 0,
  208. "_isAbsLeft": true,
  209. "_isAbsRight": true,
  210. "_isAbsTop": true,
  211. "_isAbsBottom": true,
  212. "_isAbsHorizontalCenter": true,
  213. "_isAbsVerticalCenter": true,
  214. "_originalWidth": 100,
  215. "_originalHeight": 100,
  216. "_id": ""
  217. },
  218. {
  219. "__type__": "cc.PrefabInfo",
  220. "root": {
  221. "__id__": 1
  222. },
  223. "asset": {
  224. "__id__": 0
  225. },
  226. "fileId": "33NletaKlNjbrCdk0QUU70",
  227. "sync": false
  228. },
  229. {
  230. "__type__": "cc.Node",
  231. "_name": "New ScrollView",
  232. "_objFlags": 0,
  233. "_parent": {
  234. "__id__": 1
  235. },
  236. "_children": [
  237. {
  238. "__id__": 7
  239. }
  240. ],
  241. "_active": true,
  242. "_components": [
  243. {
  244. "__id__": 36
  245. },
  246. {
  247. "__id__": 37
  248. }
  249. ],
  250. "_prefab": {
  251. "__id__": 38
  252. },
  253. "_opacity": 255,
  254. "_color": {
  255. "__type__": "cc.Color",
  256. "r": 255,
  257. "g": 255,
  258. "b": 255,
  259. "a": 255
  260. },
  261. "_contentSize": {
  262. "__type__": "cc.Size",
  263. "width": 750,
  264. "height": 1214
  265. },
  266. "_anchorPoint": {
  267. "__type__": "cc.Vec2",
  268. "x": 0.5,
  269. "y": 0.5
  270. },
  271. "_trs": {
  272. "__type__": "TypedArray",
  273. "ctor": "Float64Array",
  274. "array": [
  275. 0,
  276. -60,
  277. 0,
  278. 0,
  279. 0,
  280. 0,
  281. 1,
  282. 1,
  283. 1,
  284. 1
  285. ]
  286. },
  287. "_eulerAngles": {
  288. "__type__": "cc.Vec3",
  289. "x": 0,
  290. "y": 0,
  291. "z": 0
  292. },
  293. "_skewX": 0,
  294. "_skewY": 0,
  295. "_is3DNode": false,
  296. "_groupIndex": 0,
  297. "groupIndex": 0,
  298. "_id": ""
  299. },
  300. {
  301. "__type__": "cc.Node",
  302. "_name": "view",
  303. "_objFlags": 0,
  304. "_parent": {
  305. "__id__": 6
  306. },
  307. "_children": [
  308. {
  309. "__id__": 8
  310. }
  311. ],
  312. "_active": true,
  313. "_components": [
  314. {
  315. "__id__": 33
  316. },
  317. {
  318. "__id__": 34
  319. }
  320. ],
  321. "_prefab": {
  322. "__id__": 35
  323. },
  324. "_opacity": 255,
  325. "_color": {
  326. "__type__": "cc.Color",
  327. "r": 255,
  328. "g": 255,
  329. "b": 255,
  330. "a": 255
  331. },
  332. "_contentSize": {
  333. "__type__": "cc.Size",
  334. "width": 750,
  335. "height": 1224
  336. },
  337. "_anchorPoint": {
  338. "__type__": "cc.Vec2",
  339. "x": 0.5,
  340. "y": 0.5
  341. },
  342. "_trs": {
  343. "__type__": "TypedArray",
  344. "ctor": "Float64Array",
  345. "array": [
  346. 0,
  347. 0,
  348. 0,
  349. 0,
  350. 0,
  351. 0,
  352. 1,
  353. 1,
  354. 1,
  355. 1
  356. ]
  357. },
  358. "_eulerAngles": {
  359. "__type__": "cc.Vec3",
  360. "x": 0,
  361. "y": 0,
  362. "z": 0
  363. },
  364. "_skewX": 0,
  365. "_skewY": 0,
  366. "_is3DNode": false,
  367. "_groupIndex": 0,
  368. "groupIndex": 0,
  369. "_id": ""
  370. },
  371. {
  372. "__type__": "cc.Node",
  373. "_name": "content",
  374. "_objFlags": 0,
  375. "_parent": {
  376. "__id__": 7
  377. },
  378. "_children": [
  379. {
  380. "__id__": 9
  381. },
  382. {
  383. "__id__": 12
  384. },
  385. {
  386. "__id__": 15
  387. },
  388. {
  389. "__id__": 18
  390. },
  391. {
  392. "__id__": 21
  393. },
  394. {
  395. "__id__": 24
  396. },
  397. {
  398. "__id__": 27
  399. }
  400. ],
  401. "_active": true,
  402. "_components": [
  403. {
  404. "__id__": 30
  405. },
  406. {
  407. "__id__": 31
  408. }
  409. ],
  410. "_prefab": {
  411. "__id__": 32
  412. },
  413. "_opacity": 255,
  414. "_color": {
  415. "__type__": "cc.Color",
  416. "r": 255,
  417. "g": 255,
  418. "b": 255,
  419. "a": 255
  420. },
  421. "_contentSize": {
  422. "__type__": "cc.Size",
  423. "width": 750,
  424. "height": 4141
  425. },
  426. "_anchorPoint": {
  427. "__type__": "cc.Vec2",
  428. "x": 0.5,
  429. "y": 1
  430. },
  431. "_trs": {
  432. "__type__": "TypedArray",
  433. "ctor": "Float64Array",
  434. "array": [
  435. 0,
  436. 609.6169999999997,
  437. 0,
  438. 0,
  439. 0,
  440. 0,
  441. 1,
  442. 1,
  443. 1,
  444. 1
  445. ]
  446. },
  447. "_eulerAngles": {
  448. "__type__": "cc.Vec3",
  449. "x": 0,
  450. "y": 0,
  451. "z": 0
  452. },
  453. "_skewX": 0,
  454. "_skewY": 0,
  455. "_is3DNode": false,
  456. "_groupIndex": 0,
  457. "groupIndex": 0,
  458. "_id": ""
  459. },
  460. {
  461. "__type__": "cc.Node",
  462. "_name": "spr_rule0",
  463. "_objFlags": 0,
  464. "_parent": {
  465. "__id__": 8
  466. },
  467. "_children": [],
  468. "_active": true,
  469. "_components": [
  470. {
  471. "__id__": 10
  472. }
  473. ],
  474. "_prefab": {
  475. "__id__": 11
  476. },
  477. "_opacity": 255,
  478. "_color": {
  479. "__type__": "cc.Color",
  480. "r": 255,
  481. "g": 255,
  482. "b": 255,
  483. "a": 255
  484. },
  485. "_contentSize": {
  486. "__type__": "cc.Size",
  487. "width": 750,
  488. "height": 1001
  489. },
  490. "_anchorPoint": {
  491. "__type__": "cc.Vec2",
  492. "x": 0.5,
  493. "y": 0.5
  494. },
  495. "_trs": {
  496. "__type__": "TypedArray",
  497. "ctor": "Float64Array",
  498. "array": [
  499. 0,
  500. -500.5,
  501. 0,
  502. 0,
  503. 0,
  504. 0,
  505. 1,
  506. 1,
  507. 1,
  508. 1
  509. ]
  510. },
  511. "_eulerAngles": {
  512. "__type__": "cc.Vec3",
  513. "x": 0,
  514. "y": 0,
  515. "z": 0
  516. },
  517. "_skewX": 0,
  518. "_skewY": 0,
  519. "_is3DNode": false,
  520. "_groupIndex": 0,
  521. "groupIndex": 0,
  522. "_id": ""
  523. },
  524. {
  525. "__type__": "cc.Sprite",
  526. "_name": "",
  527. "_objFlags": 0,
  528. "node": {
  529. "__id__": 9
  530. },
  531. "_enabled": true,
  532. "_materials": [
  533. {
  534. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  535. }
  536. ],
  537. "_srcBlendFactor": 770,
  538. "_dstBlendFactor": 771,
  539. "_spriteFrame": {
  540. "__uuid__": "1ea4bb6f--436-3-47-6c-9-1b0-1760d5cb4b4e"
  541. },
  542. "_type": 0,
  543. "_sizeMode": 1,
  544. "_fillType": 0,
  545. "_fillCenter": {
  546. "__type__": "cc.Vec2",
  547. "x": 0,
  548. "y": 0
  549. },
  550. "_fillStart": 0,
  551. "_fillRange": 0,
  552. "_isTrimmedMode": true,
  553. "_atlas": null,
  554. "_id": ""
  555. },
  556. {
  557. "__type__": "cc.PrefabInfo",
  558. "root": {
  559. "__id__": 1
  560. },
  561. "asset": {
  562. "__id__": 0
  563. },
  564. "fileId": "c2M+5syIlM4rHtVQLf+FeV",
  565. "sync": false
  566. },
  567. {
  568. "__type__": "cc.Node",
  569. "_name": "spr_line",
  570. "_objFlags": 0,
  571. "_parent": {
  572. "__id__": 8
  573. },
  574. "_children": [],
  575. "_active": true,
  576. "_components": [
  577. {
  578. "__id__": 13
  579. }
  580. ],
  581. "_prefab": {
  582. "__id__": 14
  583. },
  584. "_opacity": 255,
  585. "_color": {
  586. "__type__": "cc.Color",
  587. "r": 255,
  588. "g": 255,
  589. "b": 255,
  590. "a": 255
  591. },
  592. "_contentSize": {
  593. "__type__": "cc.Size",
  594. "width": 665,
  595. "height": 2
  596. },
  597. "_anchorPoint": {
  598. "__type__": "cc.Vec2",
  599. "x": 0.5,
  600. "y": 0.5
  601. },
  602. "_trs": {
  603. "__type__": "TypedArray",
  604. "ctor": "Float64Array",
  605. "array": [
  606. 0,
  607. -997,
  608. 0,
  609. 0,
  610. 0,
  611. 0,
  612. 1,
  613. 1,
  614. 1,
  615. 1
  616. ]
  617. },
  618. "_eulerAngles": {
  619. "__type__": "cc.Vec3",
  620. "x": 0,
  621. "y": 0,
  622. "z": 0
  623. },
  624. "_skewX": 0,
  625. "_skewY": 0,
  626. "_is3DNode": false,
  627. "_groupIndex": 0,
  628. "groupIndex": 0,
  629. "_id": ""
  630. },
  631. {
  632. "__type__": "cc.Sprite",
  633. "_name": "",
  634. "_objFlags": 0,
  635. "node": {
  636. "__id__": 12
  637. },
  638. "_enabled": true,
  639. "_materials": [
  640. {
  641. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  642. }
  643. ],
  644. "_srcBlendFactor": 770,
  645. "_dstBlendFactor": 771,
  646. "_spriteFrame": {
  647. "__uuid__": "ae3f08fd--a7c-4-4a-af-a-789-78645f7990c9"
  648. },
  649. "_type": 0,
  650. "_sizeMode": 1,
  651. "_fillType": 0,
  652. "_fillCenter": {
  653. "__type__": "cc.Vec2",
  654. "x": 0,
  655. "y": 0
  656. },
  657. "_fillStart": 0,
  658. "_fillRange": 0,
  659. "_isTrimmedMode": true,
  660. "_atlas": null,
  661. "_id": ""
  662. },
  663. {
  664. "__type__": "cc.PrefabInfo",
  665. "root": {
  666. "__id__": 1
  667. },
  668. "asset": {
  669. "__id__": 0
  670. },
  671. "fileId": "9atjOBxqRErLa1dMRkqCOq",
  672. "sync": false
  673. },
  674. {
  675. "__type__": "cc.Node",
  676. "_name": "spr_rule1",
  677. "_objFlags": 0,
  678. "_parent": {
  679. "__id__": 8
  680. },
  681. "_children": [],
  682. "_active": true,
  683. "_components": [
  684. {
  685. "__id__": 16
  686. }
  687. ],
  688. "_prefab": {
  689. "__id__": 17
  690. },
  691. "_opacity": 255,
  692. "_color": {
  693. "__type__": "cc.Color",
  694. "r": 255,
  695. "g": 255,
  696. "b": 255,
  697. "a": 255
  698. },
  699. "_contentSize": {
  700. "__type__": "cc.Size",
  701. "width": 750,
  702. "height": 1107
  703. },
  704. "_anchorPoint": {
  705. "__type__": "cc.Vec2",
  706. "x": 0.5,
  707. "y": 0.5
  708. },
  709. "_trs": {
  710. "__type__": "TypedArray",
  711. "ctor": "Float64Array",
  712. "array": [
  713. 0,
  714. -1546.5,
  715. 0,
  716. 0,
  717. 0,
  718. 0,
  719. 1,
  720. 1,
  721. 1,
  722. 1
  723. ]
  724. },
  725. "_eulerAngles": {
  726. "__type__": "cc.Vec3",
  727. "x": 0,
  728. "y": 0,
  729. "z": 0
  730. },
  731. "_skewX": 0,
  732. "_skewY": 0,
  733. "_is3DNode": false,
  734. "_groupIndex": 0,
  735. "groupIndex": 0,
  736. "_id": ""
  737. },
  738. {
  739. "__type__": "cc.Sprite",
  740. "_name": "",
  741. "_objFlags": 0,
  742. "node": {
  743. "__id__": 15
  744. },
  745. "_enabled": true,
  746. "_materials": [
  747. {
  748. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  749. }
  750. ],
  751. "_srcBlendFactor": 770,
  752. "_dstBlendFactor": 771,
  753. "_spriteFrame": {
  754. "__uuid__": "23ce18be--d56-2-42-ed-b-c85-6ab539a80c7a"
  755. },
  756. "_type": 0,
  757. "_sizeMode": 1,
  758. "_fillType": 0,
  759. "_fillCenter": {
  760. "__type__": "cc.Vec2",
  761. "x": 0,
  762. "y": 0
  763. },
  764. "_fillStart": 0,
  765. "_fillRange": 0,
  766. "_isTrimmedMode": true,
  767. "_atlas": null,
  768. "_id": ""
  769. },
  770. {
  771. "__type__": "cc.PrefabInfo",
  772. "root": {
  773. "__id__": 1
  774. },
  775. "asset": {
  776. "__id__": 0
  777. },
  778. "fileId": "e3ck2DfkZIUapGWEqCbI9J",
  779. "sync": false
  780. },
  781. {
  782. "__type__": "cc.Node",
  783. "_name": "spr_line",
  784. "_objFlags": 0,
  785. "_parent": {
  786. "__id__": 8
  787. },
  788. "_children": [],
  789. "_active": true,
  790. "_components": [
  791. {
  792. "__id__": 19
  793. }
  794. ],
  795. "_prefab": {
  796. "__id__": 20
  797. },
  798. "_opacity": 255,
  799. "_color": {
  800. "__type__": "cc.Color",
  801. "r": 255,
  802. "g": 255,
  803. "b": 255,
  804. "a": 255
  805. },
  806. "_contentSize": {
  807. "__type__": "cc.Size",
  808. "width": 665,
  809. "height": 2
  810. },
  811. "_anchorPoint": {
  812. "__type__": "cc.Vec2",
  813. "x": 0.5,
  814. "y": 0.5
  815. },
  816. "_trs": {
  817. "__type__": "TypedArray",
  818. "ctor": "Float64Array",
  819. "array": [
  820. 0,
  821. -2096,
  822. 0,
  823. 0,
  824. 0,
  825. 0,
  826. 1,
  827. 1,
  828. 1,
  829. 1
  830. ]
  831. },
  832. "_eulerAngles": {
  833. "__type__": "cc.Vec3",
  834. "x": 0,
  835. "y": 0,
  836. "z": 0
  837. },
  838. "_skewX": 0,
  839. "_skewY": 0,
  840. "_is3DNode": false,
  841. "_groupIndex": 0,
  842. "groupIndex": 0,
  843. "_id": ""
  844. },
  845. {
  846. "__type__": "cc.Sprite",
  847. "_name": "",
  848. "_objFlags": 0,
  849. "node": {
  850. "__id__": 18
  851. },
  852. "_enabled": true,
  853. "_materials": [
  854. {
  855. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  856. }
  857. ],
  858. "_srcBlendFactor": 770,
  859. "_dstBlendFactor": 771,
  860. "_spriteFrame": {
  861. "__uuid__": "ae3f08fd--a7c-4-4a-af-a-789-78645f7990c9"
  862. },
  863. "_type": 0,
  864. "_sizeMode": 1,
  865. "_fillType": 0,
  866. "_fillCenter": {
  867. "__type__": "cc.Vec2",
  868. "x": 0,
  869. "y": 0
  870. },
  871. "_fillStart": 0,
  872. "_fillRange": 0,
  873. "_isTrimmedMode": true,
  874. "_atlas": null,
  875. "_id": ""
  876. },
  877. {
  878. "__type__": "cc.PrefabInfo",
  879. "root": {
  880. "__id__": 1
  881. },
  882. "asset": {
  883. "__id__": 0
  884. },
  885. "fileId": "42BYdpO8dBP7oZ0yoObjVY",
  886. "sync": false
  887. },
  888. {
  889. "__type__": "cc.Node",
  890. "_name": "spr_rule2",
  891. "_objFlags": 0,
  892. "_parent": {
  893. "__id__": 8
  894. },
  895. "_children": [],
  896. "_active": true,
  897. "_components": [
  898. {
  899. "__id__": 22
  900. }
  901. ],
  902. "_prefab": {
  903. "__id__": 23
  904. },
  905. "_opacity": 255,
  906. "_color": {
  907. "__type__": "cc.Color",
  908. "r": 255,
  909. "g": 255,
  910. "b": 255,
  911. "a": 255
  912. },
  913. "_contentSize": {
  914. "__type__": "cc.Size",
  915. "width": 750,
  916. "height": 1117
  917. },
  918. "_anchorPoint": {
  919. "__type__": "cc.Vec2",
  920. "x": 0.5,
  921. "y": 0.5
  922. },
  923. "_trs": {
  924. "__type__": "TypedArray",
  925. "ctor": "Float64Array",
  926. "array": [
  927. 0,
  928. -2650.5,
  929. 0,
  930. 0,
  931. 0,
  932. 0,
  933. 1,
  934. 1,
  935. 1,
  936. 1
  937. ]
  938. },
  939. "_eulerAngles": {
  940. "__type__": "cc.Vec3",
  941. "x": 0,
  942. "y": 0,
  943. "z": 0
  944. },
  945. "_skewX": 0,
  946. "_skewY": 0,
  947. "_is3DNode": false,
  948. "_groupIndex": 0,
  949. "groupIndex": 0,
  950. "_id": ""
  951. },
  952. {
  953. "__type__": "cc.Sprite",
  954. "_name": "",
  955. "_objFlags": 0,
  956. "node": {
  957. "__id__": 21
  958. },
  959. "_enabled": true,
  960. "_materials": [
  961. {
  962. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  963. }
  964. ],
  965. "_srcBlendFactor": 770,
  966. "_dstBlendFactor": 771,
  967. "_spriteFrame": {
  968. "__uuid__": "bf0e6869--a1b-3-41-d0-8-dbb-163fc190db57"
  969. },
  970. "_type": 0,
  971. "_sizeMode": 1,
  972. "_fillType": 0,
  973. "_fillCenter": {
  974. "__type__": "cc.Vec2",
  975. "x": 0,
  976. "y": 0
  977. },
  978. "_fillStart": 0,
  979. "_fillRange": 0,
  980. "_isTrimmedMode": true,
  981. "_atlas": null,
  982. "_id": ""
  983. },
  984. {
  985. "__type__": "cc.PrefabInfo",
  986. "root": {
  987. "__id__": 1
  988. },
  989. "asset": {
  990. "__id__": 0
  991. },
  992. "fileId": "e9O+mK5DBKrYOqtbzwy9uG",
  993. "sync": false
  994. },
  995. {
  996. "__type__": "cc.Node",
  997. "_name": "spr_line",
  998. "_objFlags": 0,
  999. "_parent": {
  1000. "__id__": 8
  1001. },
  1002. "_children": [],
  1003. "_active": true,
  1004. "_components": [
  1005. {
  1006. "__id__": 25
  1007. }
  1008. ],
  1009. "_prefab": {
  1010. "__id__": 26
  1011. },
  1012. "_opacity": 255,
  1013. "_color": {
  1014. "__type__": "cc.Color",
  1015. "r": 255,
  1016. "g": 255,
  1017. "b": 255,
  1018. "a": 255
  1019. },
  1020. "_contentSize": {
  1021. "__type__": "cc.Size",
  1022. "width": 665,
  1023. "height": 2
  1024. },
  1025. "_anchorPoint": {
  1026. "__type__": "cc.Vec2",
  1027. "x": 0.5,
  1028. "y": 0.5
  1029. },
  1030. "_trs": {
  1031. "__type__": "TypedArray",
  1032. "ctor": "Float64Array",
  1033. "array": [
  1034. 0,
  1035. -3205,
  1036. 0,
  1037. 0,
  1038. 0,
  1039. 0,
  1040. 1,
  1041. 1,
  1042. 1,
  1043. 1
  1044. ]
  1045. },
  1046. "_eulerAngles": {
  1047. "__type__": "cc.Vec3",
  1048. "x": 0,
  1049. "y": 0,
  1050. "z": 0
  1051. },
  1052. "_skewX": 0,
  1053. "_skewY": 0,
  1054. "_is3DNode": false,
  1055. "_groupIndex": 0,
  1056. "groupIndex": 0,
  1057. "_id": ""
  1058. },
  1059. {
  1060. "__type__": "cc.Sprite",
  1061. "_name": "",
  1062. "_objFlags": 0,
  1063. "node": {
  1064. "__id__": 24
  1065. },
  1066. "_enabled": true,
  1067. "_materials": [
  1068. {
  1069. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1070. }
  1071. ],
  1072. "_srcBlendFactor": 770,
  1073. "_dstBlendFactor": 771,
  1074. "_spriteFrame": {
  1075. "__uuid__": "ae3f08fd--a7c-4-4a-af-a-789-78645f7990c9"
  1076. },
  1077. "_type": 0,
  1078. "_sizeMode": 1,
  1079. "_fillType": 0,
  1080. "_fillCenter": {
  1081. "__type__": "cc.Vec2",
  1082. "x": 0,
  1083. "y": 0
  1084. },
  1085. "_fillStart": 0,
  1086. "_fillRange": 0,
  1087. "_isTrimmedMode": true,
  1088. "_atlas": null,
  1089. "_id": ""
  1090. },
  1091. {
  1092. "__type__": "cc.PrefabInfo",
  1093. "root": {
  1094. "__id__": 1
  1095. },
  1096. "asset": {
  1097. "__id__": 0
  1098. },
  1099. "fileId": "7ebZiQGIxAg42hoXMdpaS3",
  1100. "sync": false
  1101. },
  1102. {
  1103. "__type__": "cc.Node",
  1104. "_name": "spr_rule3",
  1105. "_objFlags": 0,
  1106. "_parent": {
  1107. "__id__": 8
  1108. },
  1109. "_children": [],
  1110. "_active": true,
  1111. "_components": [
  1112. {
  1113. "__id__": 28
  1114. }
  1115. ],
  1116. "_prefab": {
  1117. "__id__": 29
  1118. },
  1119. "_opacity": 255,
  1120. "_color": {
  1121. "__type__": "cc.Color",
  1122. "r": 255,
  1123. "g": 255,
  1124. "b": 255,
  1125. "a": 255
  1126. },
  1127. "_contentSize": {
  1128. "__type__": "cc.Size",
  1129. "width": 750,
  1130. "height": 940
  1131. },
  1132. "_anchorPoint": {
  1133. "__type__": "cc.Vec2",
  1134. "x": 0.5,
  1135. "y": 0.5
  1136. },
  1137. "_trs": {
  1138. "__type__": "TypedArray",
  1139. "ctor": "Float64Array",
  1140. "array": [
  1141. 0,
  1142. -3671,
  1143. 0,
  1144. 0,
  1145. 0,
  1146. 0,
  1147. 1,
  1148. 1,
  1149. 1,
  1150. 1
  1151. ]
  1152. },
  1153. "_eulerAngles": {
  1154. "__type__": "cc.Vec3",
  1155. "x": 0,
  1156. "y": 0,
  1157. "z": 0
  1158. },
  1159. "_skewX": 0,
  1160. "_skewY": 0,
  1161. "_is3DNode": false,
  1162. "_groupIndex": 0,
  1163. "groupIndex": 0,
  1164. "_id": ""
  1165. },
  1166. {
  1167. "__type__": "cc.Sprite",
  1168. "_name": "",
  1169. "_objFlags": 0,
  1170. "node": {
  1171. "__id__": 27
  1172. },
  1173. "_enabled": true,
  1174. "_materials": [
  1175. {
  1176. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1177. }
  1178. ],
  1179. "_srcBlendFactor": 770,
  1180. "_dstBlendFactor": 771,
  1181. "_spriteFrame": {
  1182. "__uuid__": "dc465a7e--bb2-2-47-2b-a-769-3f4ad2dae21c"
  1183. },
  1184. "_type": 0,
  1185. "_sizeMode": 1,
  1186. "_fillType": 0,
  1187. "_fillCenter": {
  1188. "__type__": "cc.Vec2",
  1189. "x": 0,
  1190. "y": 0
  1191. },
  1192. "_fillStart": 0,
  1193. "_fillRange": 0,
  1194. "_isTrimmedMode": true,
  1195. "_atlas": null,
  1196. "_id": ""
  1197. },
  1198. {
  1199. "__type__": "cc.PrefabInfo",
  1200. "root": {
  1201. "__id__": 1
  1202. },
  1203. "asset": {
  1204. "__id__": 0
  1205. },
  1206. "fileId": "11IWkl+DJDxrmhcddgfCBB",
  1207. "sync": false
  1208. },
  1209. {
  1210. "__type__": "cc.Layout",
  1211. "_name": "",
  1212. "_objFlags": 0,
  1213. "node": {
  1214. "__id__": 8
  1215. },
  1216. "_enabled": true,
  1217. "_layoutSize": {
  1218. "__type__": "cc.Size",
  1219. "width": 750,
  1220. "height": 4141
  1221. },
  1222. "_resize": 1,
  1223. "_N$layoutType": 2,
  1224. "_N$cellSize": {
  1225. "__type__": "cc.Size",
  1226. "width": 40,
  1227. "height": 40
  1228. },
  1229. "_N$startAxis": 0,
  1230. "_N$paddingLeft": 0,
  1231. "_N$paddingRight": 0,
  1232. "_N$paddingTop": 0,
  1233. "_N$paddingBottom": 0,
  1234. "_N$spacingX": 0,
  1235. "_N$spacingY": -5,
  1236. "_N$verticalDirection": 1,
  1237. "_N$horizontalDirection": 0,
  1238. "_N$affectedByScale": false,
  1239. "_id": ""
  1240. },
  1241. {
  1242. "__type__": "cc.Widget",
  1243. "_name": "",
  1244. "_objFlags": 0,
  1245. "node": {
  1246. "__id__": 8
  1247. },
  1248. "_enabled": true,
  1249. "alignMode": 1,
  1250. "_target": null,
  1251. "_alignFlags": 45,
  1252. "_left": 0,
  1253. "_right": 0,
  1254. "_top": 2.383000000000152,
  1255. "_bottom": -2919.3830000000003,
  1256. "_verticalCenter": 0,
  1257. "_horizontalCenter": 0,
  1258. "_isAbsLeft": true,
  1259. "_isAbsRight": true,
  1260. "_isAbsTop": true,
  1261. "_isAbsBottom": true,
  1262. "_isAbsHorizontalCenter": true,
  1263. "_isAbsVerticalCenter": true,
  1264. "_originalWidth": 220,
  1265. "_originalHeight": 400,
  1266. "_id": ""
  1267. },
  1268. {
  1269. "__type__": "cc.PrefabInfo",
  1270. "root": {
  1271. "__id__": 1
  1272. },
  1273. "asset": {
  1274. "__id__": 0
  1275. },
  1276. "fileId": "98FtLCXHRDSY/wYSaup6cz",
  1277. "sync": false
  1278. },
  1279. {
  1280. "__type__": "cc.Mask",
  1281. "_name": "",
  1282. "_objFlags": 0,
  1283. "node": {
  1284. "__id__": 7
  1285. },
  1286. "_enabled": true,
  1287. "_materials": [
  1288. {
  1289. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1290. }
  1291. ],
  1292. "_spriteFrame": null,
  1293. "_type": 0,
  1294. "_segments": 64,
  1295. "_N$alphaThreshold": 0,
  1296. "_N$inverted": false,
  1297. "_id": ""
  1298. },
  1299. {
  1300. "__type__": "cc.Widget",
  1301. "_name": "",
  1302. "_objFlags": 0,
  1303. "node": {
  1304. "__id__": 7
  1305. },
  1306. "_enabled": true,
  1307. "alignMode": 1,
  1308. "_target": null,
  1309. "_alignFlags": 5,
  1310. "_left": 0,
  1311. "_right": 0,
  1312. "_top": -5,
  1313. "_bottom": -5,
  1314. "_verticalCenter": 0,
  1315. "_horizontalCenter": 0,
  1316. "_isAbsLeft": true,
  1317. "_isAbsRight": true,
  1318. "_isAbsTop": true,
  1319. "_isAbsBottom": true,
  1320. "_isAbsHorizontalCenter": true,
  1321. "_isAbsVerticalCenter": true,
  1322. "_originalWidth": 0,
  1323. "_originalHeight": 1150,
  1324. "_id": ""
  1325. },
  1326. {
  1327. "__type__": "cc.PrefabInfo",
  1328. "root": {
  1329. "__id__": 1
  1330. },
  1331. "asset": {
  1332. "__id__": 0
  1333. },
  1334. "fileId": "e2OCpBRwFFUbjRFOEz9YiA",
  1335. "sync": false
  1336. },
  1337. {
  1338. "__type__": "cc.ScrollView",
  1339. "_name": "",
  1340. "_objFlags": 0,
  1341. "node": {
  1342. "__id__": 6
  1343. },
  1344. "_enabled": true,
  1345. "horizontal": false,
  1346. "vertical": true,
  1347. "inertia": true,
  1348. "brake": 0.75,
  1349. "elastic": true,
  1350. "bounceDuration": 0.23,
  1351. "scrollEvents": [],
  1352. "cancelInnerEvents": true,
  1353. "_N$content": {
  1354. "__id__": 8
  1355. },
  1356. "content": {
  1357. "__id__": 8
  1358. },
  1359. "_N$horizontalScrollBar": null,
  1360. "_N$verticalScrollBar": null,
  1361. "_id": ""
  1362. },
  1363. {
  1364. "__type__": "cc.Widget",
  1365. "_name": "",
  1366. "_objFlags": 0,
  1367. "node": {
  1368. "__id__": 6
  1369. },
  1370. "_enabled": true,
  1371. "alignMode": 1,
  1372. "_target": {
  1373. "__id__": 1
  1374. },
  1375. "_alignFlags": 45,
  1376. "_left": 0,
  1377. "_right": 0,
  1378. "_top": 120,
  1379. "_bottom": 0,
  1380. "_verticalCenter": 0,
  1381. "_horizontalCenter": 0,
  1382. "_isAbsLeft": true,
  1383. "_isAbsRight": true,
  1384. "_isAbsTop": true,
  1385. "_isAbsBottom": true,
  1386. "_isAbsHorizontalCenter": true,
  1387. "_isAbsVerticalCenter": true,
  1388. "_originalWidth": 240,
  1389. "_originalHeight": 250,
  1390. "_id": ""
  1391. },
  1392. {
  1393. "__type__": "cc.PrefabInfo",
  1394. "root": {
  1395. "__id__": 1
  1396. },
  1397. "asset": {
  1398. "__id__": 0
  1399. },
  1400. "fileId": "99TCj36IdDxY5ItRYozc4I",
  1401. "sync": false
  1402. },
  1403. {
  1404. "__type__": "cc.Node",
  1405. "_name": "node_title",
  1406. "_objFlags": 0,
  1407. "_parent": {
  1408. "__id__": 1
  1409. },
  1410. "_children": [
  1411. {
  1412. "__id__": 40
  1413. },
  1414. {
  1415. "__id__": 44
  1416. }
  1417. ],
  1418. "_active": true,
  1419. "_components": [
  1420. {
  1421. "__id__": 52
  1422. }
  1423. ],
  1424. "_prefab": {
  1425. "__id__": 53
  1426. },
  1427. "_opacity": 255,
  1428. "_color": {
  1429. "__type__": "cc.Color",
  1430. "r": 41,
  1431. "g": 40,
  1432. "b": 54,
  1433. "a": 255
  1434. },
  1435. "_contentSize": {
  1436. "__type__": "cc.Size",
  1437. "width": 750,
  1438. "height": 120
  1439. },
  1440. "_anchorPoint": {
  1441. "__type__": "cc.Vec2",
  1442. "x": 0.5,
  1443. "y": 0.5
  1444. },
  1445. "_trs": {
  1446. "__type__": "TypedArray",
  1447. "ctor": "Float64Array",
  1448. "array": [
  1449. 0,
  1450. 607,
  1451. 0,
  1452. 0,
  1453. 0,
  1454. 0,
  1455. 1,
  1456. 1,
  1457. 1,
  1458. 1
  1459. ]
  1460. },
  1461. "_eulerAngles": {
  1462. "__type__": "cc.Vec3",
  1463. "x": 0,
  1464. "y": 0,
  1465. "z": 0
  1466. },
  1467. "_skewX": 0,
  1468. "_skewY": 0,
  1469. "_is3DNode": false,
  1470. "_groupIndex": 0,
  1471. "groupIndex": 0,
  1472. "_id": ""
  1473. },
  1474. {
  1475. "__type__": "cc.Node",
  1476. "_name": "lab_title",
  1477. "_objFlags": 0,
  1478. "_parent": {
  1479. "__id__": 39
  1480. },
  1481. "_children": [],
  1482. "_active": true,
  1483. "_components": [
  1484. {
  1485. "__id__": 41
  1486. },
  1487. {
  1488. "__id__": 42
  1489. }
  1490. ],
  1491. "_prefab": {
  1492. "__id__": 43
  1493. },
  1494. "_opacity": 255,
  1495. "_color": {
  1496. "__type__": "cc.Color",
  1497. "r": 255,
  1498. "g": 200,
  1499. "b": 36,
  1500. "a": 255
  1501. },
  1502. "_contentSize": {
  1503. "__type__": "cc.Size",
  1504. "width": 382.5,
  1505. "height": 50.4
  1506. },
  1507. "_anchorPoint": {
  1508. "__type__": "cc.Vec2",
  1509. "x": 0.5,
  1510. "y": 0.5
  1511. },
  1512. "_trs": {
  1513. "__type__": "TypedArray",
  1514. "ctor": "Float64Array",
  1515. "array": [
  1516. 0,
  1517. 3.552713678800501e-15,
  1518. 0,
  1519. 0,
  1520. 0,
  1521. 0,
  1522. 1,
  1523. 1,
  1524. 1,
  1525. 1
  1526. ]
  1527. },
  1528. "_eulerAngles": {
  1529. "__type__": "cc.Vec3",
  1530. "x": 0,
  1531. "y": 0,
  1532. "z": 0
  1533. },
  1534. "_skewX": 0,
  1535. "_skewY": 0,
  1536. "_is3DNode": false,
  1537. "_groupIndex": 0,
  1538. "groupIndex": 0,
  1539. "_id": ""
  1540. },
  1541. {
  1542. "__type__": "cc.Label",
  1543. "_name": "",
  1544. "_objFlags": 0,
  1545. "node": {
  1546. "__id__": 40
  1547. },
  1548. "_enabled": true,
  1549. "_materials": [
  1550. {
  1551. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1552. }
  1553. ],
  1554. "_srcBlendFactor": 770,
  1555. "_dstBlendFactor": 771,
  1556. "_string": "Tabel de pagamentos",
  1557. "_N$string": "Tabel de pagamentos",
  1558. "_fontSize": 40,
  1559. "_lineHeight": 40,
  1560. "_enableWrapText": true,
  1561. "_N$file": null,
  1562. "_isSystemFontUsed": true,
  1563. "_spacingX": 0,
  1564. "_batchAsBitmap": false,
  1565. "_styleFlags": 0,
  1566. "_underlineHeight": 0,
  1567. "_N$horizontalAlign": 1,
  1568. "_N$verticalAlign": 1,
  1569. "_N$fontFamily": "Arial",
  1570. "_N$overflow": 0,
  1571. "_N$cacheMode": 0,
  1572. "_id": ""
  1573. },
  1574. {
  1575. "__type__": "cc.Widget",
  1576. "_name": "",
  1577. "_objFlags": 0,
  1578. "node": {
  1579. "__id__": 40
  1580. },
  1581. "_enabled": true,
  1582. "alignMode": 1,
  1583. "_target": null,
  1584. "_alignFlags": 1,
  1585. "_left": 0,
  1586. "_right": 0,
  1587. "_top": 34.8,
  1588. "_bottom": 0,
  1589. "_verticalCenter": 0,
  1590. "_horizontalCenter": 0,
  1591. "_isAbsLeft": true,
  1592. "_isAbsRight": true,
  1593. "_isAbsTop": true,
  1594. "_isAbsBottom": true,
  1595. "_isAbsHorizontalCenter": true,
  1596. "_isAbsVerticalCenter": true,
  1597. "_originalWidth": 0,
  1598. "_originalHeight": 0,
  1599. "_id": ""
  1600. },
  1601. {
  1602. "__type__": "cc.PrefabInfo",
  1603. "root": {
  1604. "__id__": 1
  1605. },
  1606. "asset": {
  1607. "__id__": 0
  1608. },
  1609. "fileId": "8dZO90GBRDD5Mf8IibEaTj",
  1610. "sync": false
  1611. },
  1612. {
  1613. "__type__": "cc.Node",
  1614. "_name": "button_close",
  1615. "_objFlags": 0,
  1616. "_parent": {
  1617. "__id__": 39
  1618. },
  1619. "_children": [
  1620. {
  1621. "__id__": 45
  1622. }
  1623. ],
  1624. "_active": true,
  1625. "_components": [
  1626. {
  1627. "__id__": 48
  1628. },
  1629. {
  1630. "__id__": 50
  1631. }
  1632. ],
  1633. "_prefab": {
  1634. "__id__": 51
  1635. },
  1636. "_opacity": 255,
  1637. "_color": {
  1638. "__type__": "cc.Color",
  1639. "r": 255,
  1640. "g": 255,
  1641. "b": 255,
  1642. "a": 255
  1643. },
  1644. "_contentSize": {
  1645. "__type__": "cc.Size",
  1646. "width": 100,
  1647. "height": 100
  1648. },
  1649. "_anchorPoint": {
  1650. "__type__": "cc.Vec2",
  1651. "x": 0.5,
  1652. "y": 0.5
  1653. },
  1654. "_trs": {
  1655. "__type__": "TypedArray",
  1656. "ctor": "Float64Array",
  1657. "array": [
  1658. 326.257,
  1659. 0,
  1660. 0,
  1661. 0,
  1662. 0,
  1663. 0,
  1664. 1,
  1665. 1,
  1666. 1,
  1667. 0
  1668. ]
  1669. },
  1670. "_eulerAngles": {
  1671. "__type__": "cc.Vec3",
  1672. "x": 0,
  1673. "y": 0,
  1674. "z": 0
  1675. },
  1676. "_skewX": 0,
  1677. "_skewY": 0,
  1678. "_is3DNode": false,
  1679. "_groupIndex": 0,
  1680. "groupIndex": 0,
  1681. "_id": ""
  1682. },
  1683. {
  1684. "__type__": "cc.Node",
  1685. "_name": "button_close1",
  1686. "_objFlags": 512,
  1687. "_parent": {
  1688. "__id__": 44
  1689. },
  1690. "_children": [],
  1691. "_active": true,
  1692. "_components": [
  1693. {
  1694. "__id__": 46
  1695. }
  1696. ],
  1697. "_prefab": {
  1698. "__id__": 47
  1699. },
  1700. "_opacity": 255,
  1701. "_color": {
  1702. "__type__": "cc.Color",
  1703. "r": 255,
  1704. "g": 255,
  1705. "b": 255,
  1706. "a": 255
  1707. },
  1708. "_contentSize": {
  1709. "__type__": "cc.Size",
  1710. "width": 38,
  1711. "height": 38
  1712. },
  1713. "_anchorPoint": {
  1714. "__type__": "cc.Vec2",
  1715. "x": 0.5,
  1716. "y": 0.5
  1717. },
  1718. "_trs": {
  1719. "__type__": "TypedArray",
  1720. "ctor": "Float64Array",
  1721. "array": [
  1722. 0,
  1723. 0,
  1724. 0,
  1725. 0,
  1726. 0,
  1727. 0,
  1728. 1,
  1729. 1,
  1730. 1,
  1731. 0
  1732. ]
  1733. },
  1734. "_eulerAngles": {
  1735. "__type__": "cc.Vec3",
  1736. "x": 0,
  1737. "y": 0,
  1738. "z": 0
  1739. },
  1740. "_skewX": 0,
  1741. "_skewY": 0,
  1742. "_is3DNode": false,
  1743. "_groupIndex": 0,
  1744. "groupIndex": 0,
  1745. "_id": ""
  1746. },
  1747. {
  1748. "__type__": "cc.Sprite",
  1749. "_name": "",
  1750. "_objFlags": 0,
  1751. "node": {
  1752. "__id__": 45
  1753. },
  1754. "_enabled": true,
  1755. "_materials": [
  1756. {
  1757. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1758. }
  1759. ],
  1760. "_srcBlendFactor": 770,
  1761. "_dstBlendFactor": 771,
  1762. "_spriteFrame": {
  1763. "__uuid__": "5e98b971--25a-5-46-3b-b-816-fb9681991162"
  1764. },
  1765. "_type": 0,
  1766. "_sizeMode": 0,
  1767. "_fillType": 0,
  1768. "_fillCenter": {
  1769. "__type__": "cc.Vec2",
  1770. "x": 0,
  1771. "y": 0
  1772. },
  1773. "_fillStart": 0,
  1774. "_fillRange": 0,
  1775. "_isTrimmedMode": true,
  1776. "_atlas": null,
  1777. "_id": ""
  1778. },
  1779. {
  1780. "__type__": "cc.PrefabInfo",
  1781. "root": {
  1782. "__id__": 1
  1783. },
  1784. "asset": {
  1785. "__id__": 0
  1786. },
  1787. "fileId": "ddMggnKLRGfLa0XeXHNbS0",
  1788. "sync": false
  1789. },
  1790. {
  1791. "__type__": "cc.Button",
  1792. "_name": "",
  1793. "_objFlags": 0,
  1794. "node": {
  1795. "__id__": 44
  1796. },
  1797. "_enabled": true,
  1798. "_normalMaterial": {
  1799. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1800. },
  1801. "_grayMaterial": null,
  1802. "duration": 0.1,
  1803. "zoomScale": 0.9,
  1804. "clickEvents": [
  1805. {
  1806. "__id__": 49
  1807. }
  1808. ],
  1809. "_N$interactable": true,
  1810. "_N$enableAutoGrayEffect": false,
  1811. "_N$transition": 3,
  1812. "transition": 3,
  1813. "_N$normalColor": {
  1814. "__type__": "cc.Color",
  1815. "r": 230,
  1816. "g": 230,
  1817. "b": 230,
  1818. "a": 255
  1819. },
  1820. "_N$pressedColor": {
  1821. "__type__": "cc.Color",
  1822. "r": 200,
  1823. "g": 200,
  1824. "b": 200,
  1825. "a": 255
  1826. },
  1827. "pressedColor": {
  1828. "__type__": "cc.Color",
  1829. "r": 200,
  1830. "g": 200,
  1831. "b": 200,
  1832. "a": 255
  1833. },
  1834. "_N$hoverColor": {
  1835. "__type__": "cc.Color",
  1836. "r": 255,
  1837. "g": 255,
  1838. "b": 255,
  1839. "a": 255
  1840. },
  1841. "hoverColor": {
  1842. "__type__": "cc.Color",
  1843. "r": 255,
  1844. "g": 255,
  1845. "b": 255,
  1846. "a": 255
  1847. },
  1848. "_N$disabledColor": {
  1849. "__type__": "cc.Color",
  1850. "r": 120,
  1851. "g": 120,
  1852. "b": 120,
  1853. "a": 200
  1854. },
  1855. "_N$normalSprite": null,
  1856. "_N$pressedSprite": {
  1857. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1858. },
  1859. "pressedSprite": {
  1860. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1861. },
  1862. "_N$hoverSprite": {
  1863. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1864. },
  1865. "hoverSprite": {
  1866. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1867. },
  1868. "_N$disabledSprite": {
  1869. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1870. },
  1871. "_N$target": {
  1872. "__id__": 44
  1873. },
  1874. "_id": ""
  1875. },
  1876. {
  1877. "__type__": "cc.ClickEvent",
  1878. "target": {
  1879. "__id__": 1
  1880. },
  1881. "component": "",
  1882. "_componentId": "1f2a3a82--382-e-41-fb-8-dcd-dda051d40d93",
  1883. "handler": "close",
  1884. "customEventData": ""
  1885. },
  1886. {
  1887. "__type__": "cc.Widget",
  1888. "_name": "",
  1889. "_objFlags": 0,
  1890. "node": {
  1891. "__id__": 44
  1892. },
  1893. "_enabled": true,
  1894. "alignMode": 1,
  1895. "_target": null,
  1896. "_alignFlags": 33,
  1897. "_left": 0,
  1898. "_right": -1.257000000000005,
  1899. "_top": 10,
  1900. "_bottom": 0,
  1901. "_verticalCenter": 0,
  1902. "_horizontalCenter": 0,
  1903. "_isAbsLeft": true,
  1904. "_isAbsRight": true,
  1905. "_isAbsTop": true,
  1906. "_isAbsBottom": true,
  1907. "_isAbsHorizontalCenter": true,
  1908. "_isAbsVerticalCenter": true,
  1909. "_originalWidth": 0,
  1910. "_originalHeight": 0,
  1911. "_id": ""
  1912. },
  1913. {
  1914. "__type__": "cc.PrefabInfo",
  1915. "root": {
  1916. "__id__": 1
  1917. },
  1918. "asset": {
  1919. "__id__": 0
  1920. },
  1921. "fileId": "11laDjn4xD9JTXodeT09YA",
  1922. "sync": false
  1923. },
  1924. {
  1925. "__type__": "cc.Widget",
  1926. "_name": "",
  1927. "_objFlags": 0,
  1928. "node": {
  1929. "__id__": 39
  1930. },
  1931. "_enabled": true,
  1932. "alignMode": 1,
  1933. "_target": null,
  1934. "_alignFlags": 41,
  1935. "_left": 0,
  1936. "_right": 0,
  1937. "_top": 0,
  1938. "_bottom": 0,
  1939. "_verticalCenter": 0,
  1940. "_horizontalCenter": 0,
  1941. "_isAbsLeft": true,
  1942. "_isAbsRight": true,
  1943. "_isAbsTop": true,
  1944. "_isAbsBottom": true,
  1945. "_isAbsHorizontalCenter": true,
  1946. "_isAbsVerticalCenter": true,
  1947. "_originalWidth": 0,
  1948. "_originalHeight": 0,
  1949. "_id": ""
  1950. },
  1951. {
  1952. "__type__": "cc.PrefabInfo",
  1953. "root": {
  1954. "__id__": 1
  1955. },
  1956. "asset": {
  1957. "__id__": 0
  1958. },
  1959. "fileId": "d52LDi3oBEOryxIs1IEy9Y",
  1960. "sync": false
  1961. },
  1962. {
  1963. "__type__": "cc.Node",
  1964. "_name": "lab_version",
  1965. "_objFlags": 0,
  1966. "_parent": {
  1967. "__id__": 1
  1968. },
  1969. "_children": [],
  1970. "_active": true,
  1971. "_components": [
  1972. {
  1973. "__id__": 55
  1974. },
  1975. {
  1976. "__id__": 56
  1977. }
  1978. ],
  1979. "_prefab": {
  1980. "__id__": 57
  1981. },
  1982. "_opacity": 255,
  1983. "_color": {
  1984. "__type__": "cc.Color",
  1985. "r": 255,
  1986. "g": 255,
  1987. "b": 255,
  1988. "a": 255
  1989. },
  1990. "_contentSize": {
  1991. "__type__": "cc.Size",
  1992. "width": 0,
  1993. "height": 25.2
  1994. },
  1995. "_anchorPoint": {
  1996. "__type__": "cc.Vec2",
  1997. "x": 1,
  1998. "y": 0.5
  1999. },
  2000. "_trs": {
  2001. "__type__": "TypedArray",
  2002. "ctor": "Float64Array",
  2003. "array": [
  2004. 364.567,
  2005. -645.118,
  2006. 0,
  2007. 0,
  2008. 0,
  2009. 0,
  2010. 1,
  2011. 1,
  2012. 1,
  2013. 1
  2014. ]
  2015. },
  2016. "_eulerAngles": {
  2017. "__type__": "cc.Vec3",
  2018. "x": 0,
  2019. "y": 0,
  2020. "z": 0
  2021. },
  2022. "_skewX": 0,
  2023. "_skewY": 0,
  2024. "_is3DNode": false,
  2025. "_groupIndex": 0,
  2026. "groupIndex": 0,
  2027. "_id": ""
  2028. },
  2029. {
  2030. "__type__": "cc.Label",
  2031. "_name": "",
  2032. "_objFlags": 0,
  2033. "node": {
  2034. "__id__": 54
  2035. },
  2036. "_enabled": true,
  2037. "_materials": [
  2038. {
  2039. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2040. }
  2041. ],
  2042. "_srcBlendFactor": 770,
  2043. "_dstBlendFactor": 771,
  2044. "_string": "",
  2045. "_N$string": "",
  2046. "_fontSize": 20,
  2047. "_lineHeight": 20,
  2048. "_enableWrapText": true,
  2049. "_N$file": null,
  2050. "_isSystemFontUsed": true,
  2051. "_spacingX": 0,
  2052. "_batchAsBitmap": false,
  2053. "_styleFlags": 0,
  2054. "_underlineHeight": 0,
  2055. "_N$horizontalAlign": 1,
  2056. "_N$verticalAlign": 1,
  2057. "_N$fontFamily": "Arial",
  2058. "_N$overflow": 0,
  2059. "_N$cacheMode": 0,
  2060. "_id": ""
  2061. },
  2062. {
  2063. "__type__": "cc.Widget",
  2064. "_name": "",
  2065. "_objFlags": 0,
  2066. "node": {
  2067. "__id__": 54
  2068. },
  2069. "_enabled": true,
  2070. "alignMode": 1,
  2071. "_target": null,
  2072. "_alignFlags": 36,
  2073. "_left": 0,
  2074. "_right": 10.432999999999993,
  2075. "_top": 0,
  2076. "_bottom": 9.281999999999925,
  2077. "_verticalCenter": 0,
  2078. "_horizontalCenter": 0,
  2079. "_isAbsLeft": true,
  2080. "_isAbsRight": true,
  2081. "_isAbsTop": true,
  2082. "_isAbsBottom": true,
  2083. "_isAbsHorizontalCenter": true,
  2084. "_isAbsVerticalCenter": true,
  2085. "_originalWidth": 0,
  2086. "_originalHeight": 0,
  2087. "_id": ""
  2088. },
  2089. {
  2090. "__type__": "cc.PrefabInfo",
  2091. "root": {
  2092. "__id__": 1
  2093. },
  2094. "asset": {
  2095. "__id__": 0
  2096. },
  2097. "fileId": "2dS03lyg5JXolkUycIokZu",
  2098. "sync": false
  2099. },
  2100. {
  2101. "__type__": "cc.Widget",
  2102. "_name": "",
  2103. "_objFlags": 0,
  2104. "node": {
  2105. "__id__": 1
  2106. },
  2107. "_enabled": true,
  2108. "alignMode": 1,
  2109. "_target": null,
  2110. "_alignFlags": 45,
  2111. "_left": 0,
  2112. "_right": 0,
  2113. "_top": 1667,
  2114. "_bottom": -1667,
  2115. "_verticalCenter": 0,
  2116. "_horizontalCenter": 0,
  2117. "_isAbsLeft": true,
  2118. "_isAbsRight": true,
  2119. "_isAbsTop": true,
  2120. "_isAbsBottom": true,
  2121. "_isAbsHorizontalCenter": true,
  2122. "_isAbsVerticalCenter": true,
  2123. "_originalWidth": 0,
  2124. "_originalHeight": 0,
  2125. "_id": ""
  2126. },
  2127. {
  2128. "__type__": "1f2a3a82--382-e-41-fb-8-dcd-dda051d40d93",
  2129. "_name": "",
  2130. "_objFlags": 0,
  2131. "node": {
  2132. "__id__": 1
  2133. },
  2134. "_enabled": true,
  2135. "labVersion": {
  2136. "__id__": 55
  2137. },
  2138. "_id": ""
  2139. },
  2140. {
  2141. "__type__": "cc.PrefabInfo",
  2142. "root": {
  2143. "__id__": 1
  2144. },
  2145. "asset": {
  2146. "__id__": 0
  2147. },
  2148. "fileId": "",
  2149. "sync": false
  2150. }
  2151. ]