element_3.prefab 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "element_3",
  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_3",
  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__": 74
  59. },
  60. {
  61. "__id__": 82
  62. }
  63. ],
  64. "_active": true,
  65. "_components": [
  66. {
  67. "__id__": 90
  68. },
  69. {
  70. "__id__": 92
  71. },
  72. {
  73. "__id__": 94
  74. },
  75. {
  76. "__id__": 96
  77. }
  78. ],
  79. "_prefab": {
  80. "__id__": 98
  81. },
  82. "_lpos": {
  83. "__type__": "cc.Vec3",
  84. "x": 0,
  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": 149,
  176. "height": 121
  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__": "2236fc25-6228-4ea7-9ab7-06ceae1e9255@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": -37.29,
  271. "y": 0.419,
  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": 96.8,
  312. "height": 78.7
  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": "5dk5qIORJKfYzPMk5ZRHRW"
  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": "64YvFGU19MtK8kYK639FkQ"
  342. },
  343. {
  344. "__type__": "cc.PrefabInfo",
  345. "root": {
  346. "__id__": 1
  347. },
  348. "asset": {
  349. "__id__": 0
  350. },
  351. "fileId": "80hF5iJ0tBQIraT49sOQVO",
  352. "instance": null,
  353. "targetOverrides": null,
  354. "nestedPrefabInstanceRoots": null
  355. },
  356. {
  357. "__type__": "cc.Node",
  358. "_name": "block-001",
  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": -2.071,
  380. "y": 30.403,
  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": 100.9,
  421. "height": 78.7
  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": "3aL6/cd9xNqZgOO5GiyU85"
  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": "87wzWITCxO/KnMgZvc7dof"
  451. },
  452. {
  453. "__type__": "cc.PrefabInfo",
  454. "root": {
  455. "__id__": 1
  456. },
  457. "asset": {
  458. "__id__": 0
  459. },
  460. "fileId": "42j6HjgHJG8LbL14poScEp",
  461. "instance": null,
  462. "targetOverrides": null,
  463. "nestedPrefabInstanceRoots": null
  464. },
  465. {
  466. "__type__": "cc.Node",
  467. "_name": "block-002",
  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.769,
  489. "y": 36.577,
  490. "z": 0
  491. },
  492. "_lrot": {
  493. "__type__": "cc.Quat",
  494. "x": 0,
  495. "y": 0,
  496. "z": -0.36406414603064124,
  497. "w": 0.9313738763649
  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": -42.7
  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": 55.2,
  530. "height": 48.5
  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": "bd47NDpjNGv6iaQqoNLNZL"
  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": "1c1eHeaN9LE4ke7uDc0qGR"
  560. },
  561. {
  562. "__type__": "cc.PrefabInfo",
  563. "root": {
  564. "__id__": 1
  565. },
  566. "asset": {
  567. "__id__": 0
  568. },
  569. "fileId": "e7LYUaf2hJ+bQCUREefQyB",
  570. "instance": null,
  571. "targetOverrides": null,
  572. "nestedPrefabInstanceRoots": null
  573. },
  574. {
  575. "__type__": "cc.Node",
  576. "_name": "block-003",
  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": -53.812,
  598. "y": 40.308,
  599. "z": 0
  600. },
  601. "_lrot": {
  602. "__type__": "cc.Quat",
  603. "x": 0,
  604. "y": 0,
  605. "z": -0.36406414603064124,
  606. "w": 0.9313738763649
  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": -42.70000000000001
  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": 56.3,
  639. "height": 32.1
  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": "0b3UGnuohBF7pSQcMKxm8G"
  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": "71c7MCLQBGkb2iAuYxgKDQ"
  669. },
  670. {
  671. "__type__": "cc.PrefabInfo",
  672. "root": {
  673. "__id__": 1
  674. },
  675. "asset": {
  676. "__id__": 0
  677. },
  678. "fileId": "b1MTWVxuxERYSB+r21Kspv",
  679. "instance": null,
  680. "targetOverrides": null,
  681. "nestedPrefabInstanceRoots": null
  682. },
  683. {
  684. "__type__": "cc.Node",
  685. "_name": "block-004",
  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": -56.667,
  707. "y": -40.601,
  708. "z": 0
  709. },
  710. "_lrot": {
  711. "__type__": "cc.Quat",
  712. "x": 0,
  713. "y": 0,
  714. "z": -0.4154871756640993,
  715. "w": 0.9095990363114232
  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": -49.1
  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": 33.3,
  748. "height": 40
  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": "9acATfsMtBY79FFU8eJtvD"
  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": "d6O9X+IvFHuK2rHsJ2SuTF"
  778. },
  779. {
  780. "__type__": "cc.PrefabInfo",
  781. "root": {
  782. "__id__": 1
  783. },
  784. "asset": {
  785. "__id__": 0
  786. },
  787. "fileId": "d9tPnoNiVEJYOYVLLcSaiM",
  788. "instance": null,
  789. "targetOverrides": null,
  790. "nestedPrefabInstanceRoots": null
  791. },
  792. {
  793. "__type__": "cc.Node",
  794. "_name": "block-005",
  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": -18.116,
  816. "y": -41.79,
  817. "z": 0
  818. },
  819. "_lrot": {
  820. "__type__": "cc.Quat",
  821. "x": 0,
  822. "y": 0,
  823. "z": 0.4154871756640993,
  824. "w": 0.9095990363114232
  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": 49.1
  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": 34.9,
  857. "height": 36.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": "a0aSL17tpKxIKObWRwRbui"
  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": "4202eEO51BHIfq/k0JKgXL"
  887. },
  888. {
  889. "__type__": "cc.PrefabInfo",
  890. "root": {
  891. "__id__": 1
  892. },
  893. "asset": {
  894. "__id__": 0
  895. },
  896. "fileId": "19Znuku/tOv7scLiPwkP04",
  897. "instance": null,
  898. "targetOverrides": null,
  899. "nestedPrefabInstanceRoots": null
  900. },
  901. {
  902. "__type__": "cc.Node",
  903. "_name": "block-006",
  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": -37.153,
  925. "y": -48.215,
  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": 51.9,
  966. "height": 36
  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": "90YBNAslVHuopxtmsD1zkh"
  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": "642apcDH5BLIK7LISrmrAp"
  996. },
  997. {
  998. "__type__": "cc.PrefabInfo",
  999. "root": {
  1000. "__id__": 1
  1001. },
  1002. "asset": {
  1003. "__id__": 0
  1004. },
  1005. "fileId": "cclJRFuJxOGZPFnlMGE667",
  1006. "instance": null,
  1007. "targetOverrides": null,
  1008. "nestedPrefabInstanceRoots": null
  1009. },
  1010. {
  1011. "__type__": "cc.Node",
  1012. "_name": "block-007",
  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": 43.28,
  1034. "y": 30.077,
  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": 35.6,
  1075. "height": 72.9
  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": "8bA/zM6oxJ04+xnVLjQOvV"
  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": "69uniM+IVBRbEAzt7+8c19"
  1105. },
  1106. {
  1107. "__type__": "cc.PrefabInfo",
  1108. "root": {
  1109. "__id__": 1
  1110. },
  1111. "asset": {
  1112. "__id__": 0
  1113. },
  1114. "fileId": "23HaRUaSxI8rYBVnLv4mJW",
  1115. "instance": null,
  1116. "targetOverrides": null,
  1117. "nestedPrefabInstanceRoots": null
  1118. },
  1119. {
  1120. "__type__": "cc.Node",
  1121. "_name": "block-008",
  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": 53.513,
  1143. "y": 30.077,
  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": 31.1,
  1184. "height": 55.4
  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": "02NL0OGjlOdLwKLRddRo7G"
  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": "85wLQ65ZdL0YyXu1P5QzIY"
  1214. },
  1215. {
  1216. "__type__": "cc.PrefabInfo",
  1217. "root": {
  1218. "__id__": 1
  1219. },
  1220. "asset": {
  1221. "__id__": 0
  1222. },
  1223. "fileId": "0cU1UD20RD1I78bo6XxPqD",
  1224. "instance": null,
  1225. "targetOverrides": null,
  1226. "nestedPrefabInstanceRoots": null
  1227. },
  1228. {
  1229. "__type__": "cc.Node",
  1230. "_name": "block-009",
  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": 62.794,
  1252. "y": 30.077,
  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": 39.1,
  1293. "height": 28.1
  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": "b3MIVL6uxP/L0kMOaYoKDU"
  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": "eeMjpc2VdNZrkf4Vmvb6bS"
  1323. },
  1324. {
  1325. "__type__": "cc.PrefabInfo",
  1326. "root": {
  1327. "__id__": 1
  1328. },
  1329. "asset": {
  1330. "__id__": 0
  1331. },
  1332. "fileId": "4fWv2VkbFCsqFpGK2bD5ax",
  1333. "instance": null,
  1334. "targetOverrides": null,
  1335. "nestedPrefabInstanceRoots": null
  1336. },
  1337. {
  1338. "__type__": "cc.Node",
  1339. "_name": "block-010",
  1340. "_objFlags": 0,
  1341. "__editorExtras__": {},
  1342. "_parent": {
  1343. "__id__": 1
  1344. },
  1345. "_children": [],
  1346. "_active": true,
  1347. "_components": [
  1348. {
  1349. "__id__": 69
  1350. },
  1351. {
  1352. "__id__": 71
  1353. }
  1354. ],
  1355. "_prefab": {
  1356. "__id__": 73
  1357. },
  1358. "_lpos": {
  1359. "__type__": "cc.Vec3",
  1360. "x": 60.177,
  1361. "y": 30.077,
  1362. "z": 0
  1363. },
  1364. "_lrot": {
  1365. "__type__": "cc.Quat",
  1366. "x": 0,
  1367. "y": 0,
  1368. "z": 0,
  1369. "w": 1
  1370. },
  1371. "_lscale": {
  1372. "__type__": "cc.Vec3",
  1373. "x": 1,
  1374. "y": 1,
  1375. "z": 1
  1376. },
  1377. "_mobility": 0,
  1378. "_layer": 33554432,
  1379. "_euler": {
  1380. "__type__": "cc.Vec3",
  1381. "x": 0,
  1382. "y": 0,
  1383. "z": 0
  1384. },
  1385. "_id": ""
  1386. },
  1387. {
  1388. "__type__": "cc.UITransform",
  1389. "_name": "",
  1390. "_objFlags": 0,
  1391. "__editorExtras__": {},
  1392. "node": {
  1393. "__id__": 68
  1394. },
  1395. "_enabled": true,
  1396. "__prefab": {
  1397. "__id__": 70
  1398. },
  1399. "_contentSize": {
  1400. "__type__": "cc.Size",
  1401. "width": 33.8,
  1402. "height": 49.8
  1403. },
  1404. "_anchorPoint": {
  1405. "__type__": "cc.Vec2",
  1406. "x": 0.5,
  1407. "y": 0.5
  1408. },
  1409. "_id": ""
  1410. },
  1411. {
  1412. "__type__": "cc.CompPrefabInfo",
  1413. "fileId": "2bgf9wP39AG6siEvoj0bn2"
  1414. },
  1415. {
  1416. "__type__": "cc.BlockInputEvents",
  1417. "_name": "",
  1418. "_objFlags": 0,
  1419. "__editorExtras__": {},
  1420. "node": {
  1421. "__id__": 68
  1422. },
  1423. "_enabled": true,
  1424. "__prefab": {
  1425. "__id__": 72
  1426. },
  1427. "_id": ""
  1428. },
  1429. {
  1430. "__type__": "cc.CompPrefabInfo",
  1431. "fileId": "cfpqVspHtDarrK5/o5nfPO"
  1432. },
  1433. {
  1434. "__type__": "cc.PrefabInfo",
  1435. "root": {
  1436. "__id__": 1
  1437. },
  1438. "asset": {
  1439. "__id__": 0
  1440. },
  1441. "fileId": "58Wy8rB75I45bs5VJ1AWMO",
  1442. "instance": null,
  1443. "targetOverrides": null,
  1444. "nestedPrefabInstanceRoots": null
  1445. },
  1446. {
  1447. "__type__": "cc.Node",
  1448. "_objFlags": 0,
  1449. "_parent": {
  1450. "__id__": 1
  1451. },
  1452. "_prefab": {
  1453. "__id__": 75
  1454. },
  1455. "__editorExtras__": {}
  1456. },
  1457. {
  1458. "__type__": "cc.PrefabInfo",
  1459. "root": {
  1460. "__id__": 74
  1461. },
  1462. "asset": {
  1463. "__uuid__": "070b42a8-702d-44f7-bf66-dfcd07dc8120",
  1464. "__expectedType__": "cc.Prefab"
  1465. },
  1466. "fileId": "28Ayila+hAB6ZSksSjX/Mp",
  1467. "instance": {
  1468. "__id__": 76
  1469. },
  1470. "targetOverrides": null
  1471. },
  1472. {
  1473. "__type__": "cc.PrefabInstance",
  1474. "fileId": "c6HKE6iQFFzZ1I+9tf2GS7",
  1475. "prefabRootNode": {
  1476. "__id__": 1
  1477. },
  1478. "mountedChildren": [],
  1479. "mountedComponents": [],
  1480. "propertyOverrides": [
  1481. {
  1482. "__id__": 77
  1483. },
  1484. {
  1485. "__id__": 79
  1486. },
  1487. {
  1488. "__id__": 80
  1489. },
  1490. {
  1491. "__id__": 81
  1492. }
  1493. ],
  1494. "removedComponents": []
  1495. },
  1496. {
  1497. "__type__": "CCPropertyOverrideInfo",
  1498. "targetInfo": {
  1499. "__id__": 78
  1500. },
  1501. "propertyPath": [
  1502. "_name"
  1503. ],
  1504. "value": "hole"
  1505. },
  1506. {
  1507. "__type__": "cc.TargetInfo",
  1508. "localID": [
  1509. "28Ayila+hAB6ZSksSjX/Mp"
  1510. ]
  1511. },
  1512. {
  1513. "__type__": "CCPropertyOverrideInfo",
  1514. "targetInfo": {
  1515. "__id__": 78
  1516. },
  1517. "propertyPath": [
  1518. "_lpos"
  1519. ],
  1520. "value": {
  1521. "__type__": "cc.Vec3",
  1522. "x": -40.015,
  1523. "y": -24.304,
  1524. "z": 0
  1525. }
  1526. },
  1527. {
  1528. "__type__": "CCPropertyOverrideInfo",
  1529. "targetInfo": {
  1530. "__id__": 78
  1531. },
  1532. "propertyPath": [
  1533. "_lrot"
  1534. ],
  1535. "value": {
  1536. "__type__": "cc.Quat",
  1537. "x": 0,
  1538. "y": 0,
  1539. "z": 0,
  1540. "w": 1
  1541. }
  1542. },
  1543. {
  1544. "__type__": "CCPropertyOverrideInfo",
  1545. "targetInfo": {
  1546. "__id__": 78
  1547. },
  1548. "propertyPath": [
  1549. "_euler"
  1550. ],
  1551. "value": {
  1552. "__type__": "cc.Vec3",
  1553. "x": 0,
  1554. "y": 0,
  1555. "z": 0
  1556. }
  1557. },
  1558. {
  1559. "__type__": "cc.Node",
  1560. "_objFlags": 0,
  1561. "_parent": {
  1562. "__id__": 1
  1563. },
  1564. "_prefab": {
  1565. "__id__": 83
  1566. },
  1567. "__editorExtras__": {}
  1568. },
  1569. {
  1570. "__type__": "cc.PrefabInfo",
  1571. "root": {
  1572. "__id__": 82
  1573. },
  1574. "asset": {
  1575. "__uuid__": "070b42a8-702d-44f7-bf66-dfcd07dc8120",
  1576. "__expectedType__": "cc.Prefab"
  1577. },
  1578. "fileId": "28Ayila+hAB6ZSksSjX/Mp",
  1579. "instance": {
  1580. "__id__": 84
  1581. },
  1582. "targetOverrides": null
  1583. },
  1584. {
  1585. "__type__": "cc.PrefabInstance",
  1586. "fileId": "88uhz3tH1JcKuchhahe7dN",
  1587. "prefabRootNode": {
  1588. "__id__": 1
  1589. },
  1590. "mountedChildren": [],
  1591. "mountedComponents": [],
  1592. "propertyOverrides": [
  1593. {
  1594. "__id__": 85
  1595. },
  1596. {
  1597. "__id__": 87
  1598. },
  1599. {
  1600. "__id__": 88
  1601. },
  1602. {
  1603. "__id__": 89
  1604. }
  1605. ],
  1606. "removedComponents": []
  1607. },
  1608. {
  1609. "__type__": "CCPropertyOverrideInfo",
  1610. "targetInfo": {
  1611. "__id__": 86
  1612. },
  1613. "propertyPath": [
  1614. "_name"
  1615. ],
  1616. "value": "hole-001"
  1617. },
  1618. {
  1619. "__type__": "cc.TargetInfo",
  1620. "localID": [
  1621. "28Ayila+hAB6ZSksSjX/Mp"
  1622. ]
  1623. },
  1624. {
  1625. "__type__": "CCPropertyOverrideInfo",
  1626. "targetInfo": {
  1627. "__id__": 86
  1628. },
  1629. "propertyPath": [
  1630. "_lpos"
  1631. ],
  1632. "value": {
  1633. "__type__": "cc.Vec3",
  1634. "x": 31.138,
  1635. "y": 30.907,
  1636. "z": 0
  1637. }
  1638. },
  1639. {
  1640. "__type__": "CCPropertyOverrideInfo",
  1641. "targetInfo": {
  1642. "__id__": 86
  1643. },
  1644. "propertyPath": [
  1645. "_lrot"
  1646. ],
  1647. "value": {
  1648. "__type__": "cc.Quat",
  1649. "x": 0,
  1650. "y": 0,
  1651. "z": 0,
  1652. "w": 1
  1653. }
  1654. },
  1655. {
  1656. "__type__": "CCPropertyOverrideInfo",
  1657. "targetInfo": {
  1658. "__id__": 86
  1659. },
  1660. "propertyPath": [
  1661. "_euler"
  1662. ],
  1663. "value": {
  1664. "__type__": "cc.Vec3",
  1665. "x": 0,
  1666. "y": 0,
  1667. "z": 0
  1668. }
  1669. },
  1670. {
  1671. "__type__": "cc.UITransform",
  1672. "_name": "",
  1673. "_objFlags": 0,
  1674. "__editorExtras__": {},
  1675. "node": {
  1676. "__id__": 1
  1677. },
  1678. "_enabled": true,
  1679. "__prefab": {
  1680. "__id__": 91
  1681. },
  1682. "_contentSize": {
  1683. "__type__": "cc.Size",
  1684. "width": 149.1,
  1685. "height": 122
  1686. },
  1687. "_anchorPoint": {
  1688. "__type__": "cc.Vec2",
  1689. "x": 0.5,
  1690. "y": 0.5
  1691. },
  1692. "_id": ""
  1693. },
  1694. {
  1695. "__type__": "cc.CompPrefabInfo",
  1696. "fileId": "9di8S4Qg5GfrMs0d/z44cO"
  1697. },
  1698. {
  1699. "__type__": "cc.RigidBody2D",
  1700. "_name": "",
  1701. "_objFlags": 0,
  1702. "__editorExtras__": {},
  1703. "node": {
  1704. "__id__": 1
  1705. },
  1706. "_enabled": true,
  1707. "__prefab": {
  1708. "__id__": 93
  1709. },
  1710. "enabledContactListener": false,
  1711. "bullet": false,
  1712. "awakeOnLoad": true,
  1713. "_group": 1,
  1714. "_type": 2,
  1715. "_allowSleep": true,
  1716. "_gravityScale": 10,
  1717. "_linearDamping": 0,
  1718. "_angularDamping": 0.2,
  1719. "_linearVelocity": {
  1720. "__type__": "cc.Vec2",
  1721. "x": 0,
  1722. "y": 0
  1723. },
  1724. "_angularVelocity": 0,
  1725. "_fixedRotation": false,
  1726. "_id": ""
  1727. },
  1728. {
  1729. "__type__": "cc.CompPrefabInfo",
  1730. "fileId": "daaJFVFwVOKqgDg0YMPa5c"
  1731. },
  1732. {
  1733. "__type__": "94011M9KB5GbaiF9WM1W5oY",
  1734. "_name": "",
  1735. "_objFlags": 0,
  1736. "__editorExtras__": {},
  1737. "node": {
  1738. "__id__": 1
  1739. },
  1740. "_enabled": true,
  1741. "__prefab": {
  1742. "__id__": 95
  1743. },
  1744. "_id": ""
  1745. },
  1746. {
  1747. "__type__": "cc.CompPrefabInfo",
  1748. "fileId": "89h0uWhRVC7Ye2/kSe7Q22"
  1749. },
  1750. {
  1751. "__type__": "cc.PolygonCollider2D",
  1752. "_name": "",
  1753. "_objFlags": 0,
  1754. "__editorExtras__": {},
  1755. "node": {
  1756. "__id__": 1
  1757. },
  1758. "_enabled": true,
  1759. "__prefab": {
  1760. "__id__": 97
  1761. },
  1762. "tag": 0,
  1763. "_group": 1,
  1764. "_density": 1,
  1765. "_sensor": false,
  1766. "_friction": 0,
  1767. "_restitution": 0,
  1768. "_offset": {
  1769. "__type__": "cc.Vec2",
  1770. "x": 0,
  1771. "y": 0
  1772. },
  1773. "_points": [
  1774. {
  1775. "__type__": "cc.Vec2",
  1776. "x": -73.6,
  1777. "y": -37.5
  1778. },
  1779. {
  1780. "__type__": "cc.Vec2",
  1781. "x": -73,
  1782. "y": 38.7
  1783. },
  1784. {
  1785. "__type__": "cc.Vec2",
  1786. "x": -65.4,
  1787. "y": 52.2
  1788. },
  1789. {
  1790. "__type__": "cc.Vec2",
  1791. "x": -47.8,
  1792. "y": 59.5
  1793. },
  1794. {
  1795. "__type__": "cc.Vec2",
  1796. "x": 47.2,
  1797. "y": 58.4
  1798. },
  1799. {
  1800. "__type__": "cc.Vec2",
  1801. "x": 64.1,
  1802. "y": 50.9
  1803. },
  1804. {
  1805. "__type__": "cc.Vec2",
  1806. "x": 73.4,
  1807. "y": 35.6
  1808. },
  1809. {
  1810. "__type__": "cc.Vec2",
  1811. "x": 73.7,
  1812. "y": 23.9
  1813. },
  1814. {
  1815. "__type__": "cc.Vec2",
  1816. "x": 68.9,
  1817. "y": 12.1
  1818. },
  1819. {
  1820. "__type__": "cc.Vec2",
  1821. "x": 60.9,
  1822. "y": 4.7
  1823. },
  1824. {
  1825. "__type__": "cc.Vec2",
  1826. "x": 46.9,
  1827. "y": -0.1
  1828. },
  1829. {
  1830. "__type__": "cc.Vec2",
  1831. "x": 1.2,
  1832. "y": 1.6
  1833. },
  1834. {
  1835. "__type__": "cc.Vec2",
  1836. "x": 12,
  1837. "y": 46.8
  1838. },
  1839. {
  1840. "__type__": "cc.Vec2",
  1841. "x": 13.7,
  1842. "y": 12
  1843. },
  1844. {
  1845. "__type__": "cc.Vec2",
  1846. "x": 49.7,
  1847. "y": 13.4
  1848. },
  1849. {
  1850. "__type__": "cc.Vec2",
  1851. "x": 49.5,
  1852. "y": 49.9
  1853. },
  1854. {
  1855. "__type__": "cc.Vec2",
  1856. "x": 2.4,
  1857. "y": 48.9
  1858. },
  1859. {
  1860. "__type__": "cc.Vec2",
  1861. "x": 0.3,
  1862. "y": -7.1
  1863. },
  1864. {
  1865. "__type__": "cc.Vec2",
  1866. "x": 1.3,
  1867. "y": -31.5
  1868. },
  1869. {
  1870. "__type__": "cc.Vec2",
  1871. "x": -4.5,
  1872. "y": -42.7
  1873. },
  1874. {
  1875. "__type__": "cc.Vec2",
  1876. "x": -21.5,
  1877. "y": -39.9
  1878. },
  1879. {
  1880. "__type__": "cc.Vec2",
  1881. "x": -22.3,
  1882. "y": -6.1
  1883. },
  1884. {
  1885. "__type__": "cc.Vec2",
  1886. "x": -59,
  1887. "y": -5.6
  1888. },
  1889. {
  1890. "__type__": "cc.Vec2",
  1891. "x": -58.1,
  1892. "y": -42.3
  1893. },
  1894. {
  1895. "__type__": "cc.Vec2",
  1896. "x": -4.4,
  1897. "y": -42.8
  1898. },
  1899. {
  1900. "__type__": "cc.Vec2",
  1901. "x": -7.5,
  1902. "y": -47.7
  1903. },
  1904. {
  1905. "__type__": "cc.Vec2",
  1906. "x": -17.1,
  1907. "y": -55.6
  1908. },
  1909. {
  1910. "__type__": "cc.Vec2",
  1911. "x": -38,
  1912. "y": -60.3
  1913. },
  1914. {
  1915. "__type__": "cc.Vec2",
  1916. "x": -57.7,
  1917. "y": -54.5
  1918. },
  1919. {
  1920. "__type__": "cc.Vec2",
  1921. "x": -66.7,
  1922. "y": -48.9
  1923. }
  1924. ],
  1925. "_id": ""
  1926. },
  1927. {
  1928. "__type__": "cc.CompPrefabInfo",
  1929. "fileId": "60MhaaMl5H+afDvaR0tHbB"
  1930. },
  1931. {
  1932. "__type__": "cc.PrefabInfo",
  1933. "root": {
  1934. "__id__": 1
  1935. },
  1936. "asset": {
  1937. "__id__": 0
  1938. },
  1939. "fileId": "36QJGpDG5L+5CD0viNq9/d",
  1940. "instance": null,
  1941. "nestedPrefabInstanceRoots": [
  1942. {
  1943. "__id__": 82
  1944. },
  1945. {
  1946. "__id__": 74
  1947. }
  1948. ]
  1949. }
  1950. ]