50d06a62-c5f5-4006-bedd-31269825be06.json 32 KB

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