lvdai.prefab 32 KB

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