Opplvdai.prefab 32 KB

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