element_6.prefab 33 KB

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