element_8.prefab 32 KB

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