GameBg.prefab 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "GameBg",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "persistent": false
  12. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "GameBg",
  16. "_objFlags": 0,
  17. "__editorExtras__": {},
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 12
  25. },
  26. {
  27. "__id__": 22
  28. },
  29. {
  30. "__id__": 30
  31. },
  32. {
  33. "__id__": 74
  34. }
  35. ],
  36. "_active": true,
  37. "_components": [
  38. {
  39. "__id__": 84
  40. },
  41. {
  42. "__id__": 86
  43. },
  44. {
  45. "__id__": 88
  46. }
  47. ],
  48. "_prefab": {
  49. "__id__": 90
  50. },
  51. "_lpos": {
  52. "__type__": "cc.Vec3",
  53. "x": 0,
  54. "y": 0,
  55. "z": 0
  56. },
  57. "_lrot": {
  58. "__type__": "cc.Quat",
  59. "x": 0,
  60. "y": 0,
  61. "z": 0,
  62. "w": 1
  63. },
  64. "_lscale": {
  65. "__type__": "cc.Vec3",
  66. "x": 1,
  67. "y": 1,
  68. "z": 1
  69. },
  70. "_mobility": 0,
  71. "_layer": 33554432,
  72. "_euler": {
  73. "__type__": "cc.Vec3",
  74. "x": 0,
  75. "y": 0,
  76. "z": 0
  77. },
  78. "_id": ""
  79. },
  80. {
  81. "__type__": "cc.Node",
  82. "_name": "HammerRoot",
  83. "_objFlags": 0,
  84. "_parent": {
  85. "__id__": 1
  86. },
  87. "_children": [
  88. {
  89. "__id__": 3
  90. }
  91. ],
  92. "_active": false,
  93. "_components": [
  94. {
  95. "__id__": 9
  96. }
  97. ],
  98. "_prefab": {
  99. "__id__": 11
  100. },
  101. "_lpos": {
  102. "__type__": "cc.Vec3",
  103. "x": 0,
  104. "y": 0,
  105. "z": 0
  106. },
  107. "_lrot": {
  108. "__type__": "cc.Quat",
  109. "x": 0,
  110. "y": 0,
  111. "z": 0,
  112. "w": 1
  113. },
  114. "_lscale": {
  115. "__type__": "cc.Vec3",
  116. "x": 1,
  117. "y": 1,
  118. "z": 1
  119. },
  120. "_mobility": 0,
  121. "_layer": 33554432,
  122. "_euler": {
  123. "__type__": "cc.Vec3",
  124. "x": 0,
  125. "y": 0,
  126. "z": 0
  127. },
  128. "_id": ""
  129. },
  130. {
  131. "__type__": "cc.Node",
  132. "_name": "Hammer",
  133. "_objFlags": 0,
  134. "_parent": {
  135. "__id__": 2
  136. },
  137. "_children": [],
  138. "_active": true,
  139. "_components": [
  140. {
  141. "__id__": 4
  142. },
  143. {
  144. "__id__": 6
  145. }
  146. ],
  147. "_prefab": {
  148. "__id__": 8
  149. },
  150. "_lpos": {
  151. "__type__": "cc.Vec3",
  152. "x": 59.885,
  153. "y": 55.278,
  154. "z": 0
  155. },
  156. "_lrot": {
  157. "__type__": "cc.Quat",
  158. "x": 0,
  159. "y": 0,
  160. "z": 0,
  161. "w": 1
  162. },
  163. "_lscale": {
  164. "__type__": "cc.Vec3",
  165. "x": 1.5,
  166. "y": 1.5,
  167. "z": 1
  168. },
  169. "_mobility": 0,
  170. "_layer": 33554432,
  171. "_euler": {
  172. "__type__": "cc.Vec3",
  173. "x": 0,
  174. "y": 0,
  175. "z": 0
  176. },
  177. "_id": ""
  178. },
  179. {
  180. "__type__": "cc.UITransform",
  181. "_name": "",
  182. "_objFlags": 0,
  183. "node": {
  184. "__id__": 3
  185. },
  186. "_enabled": true,
  187. "__prefab": {
  188. "__id__": 5
  189. },
  190. "_contentSize": {
  191. "__type__": "cc.Size",
  192. "width": 255,
  193. "height": 172
  194. },
  195. "_anchorPoint": {
  196. "__type__": "cc.Vec2",
  197. "x": 0.5,
  198. "y": 0.5
  199. },
  200. "_id": ""
  201. },
  202. {
  203. "__type__": "cc.CompPrefabInfo",
  204. "fileId": "33Xk7qrjZH87aLzWtqd6ez"
  205. },
  206. {
  207. "__type__": "cc.Sprite",
  208. "_name": "",
  209. "_objFlags": 0,
  210. "node": {
  211. "__id__": 3
  212. },
  213. "_enabled": true,
  214. "__prefab": {
  215. "__id__": 7
  216. },
  217. "_customMaterial": null,
  218. "_srcBlendFactor": 2,
  219. "_dstBlendFactor": 4,
  220. "_color": {
  221. "__type__": "cc.Color",
  222. "r": 255,
  223. "g": 255,
  224. "b": 255,
  225. "a": 255
  226. },
  227. "_spriteFrame": {
  228. "__uuid__": "6d2b5691-53e7-477a-825d-7344ca857682@f9941",
  229. "__expectedType__": "cc.SpriteFrame"
  230. },
  231. "_type": 0,
  232. "_fillType": 0,
  233. "_sizeMode": 0,
  234. "_fillCenter": {
  235. "__type__": "cc.Vec2",
  236. "x": 0,
  237. "y": 0
  238. },
  239. "_fillStart": 0,
  240. "_fillRange": 0,
  241. "_isTrimmedMode": true,
  242. "_useGrayscale": false,
  243. "_atlas": null,
  244. "_id": ""
  245. },
  246. {
  247. "__type__": "cc.CompPrefabInfo",
  248. "fileId": "de/GDB/3ZNbr7n5Vj/vcIC"
  249. },
  250. {
  251. "__type__": "cc.PrefabInfo",
  252. "root": {
  253. "__id__": 1
  254. },
  255. "asset": {
  256. "__id__": 0
  257. },
  258. "fileId": "cepPEwHYtPgJs5F/6TW2Mv",
  259. "instance": null,
  260. "targetOverrides": null,
  261. "nestedPrefabInstanceRoots": null
  262. },
  263. {
  264. "__type__": "cc.UITransform",
  265. "_name": "",
  266. "_objFlags": 0,
  267. "node": {
  268. "__id__": 2
  269. },
  270. "_enabled": true,
  271. "__prefab": {
  272. "__id__": 10
  273. },
  274. "_contentSize": {
  275. "__type__": "cc.Size",
  276. "width": 100,
  277. "height": 100
  278. },
  279. "_anchorPoint": {
  280. "__type__": "cc.Vec2",
  281. "x": 0.5,
  282. "y": 0.5
  283. },
  284. "_id": ""
  285. },
  286. {
  287. "__type__": "cc.CompPrefabInfo",
  288. "fileId": "ce+vxa+EVD0okKlZmORscI"
  289. },
  290. {
  291. "__type__": "cc.PrefabInfo",
  292. "root": {
  293. "__id__": 1
  294. },
  295. "asset": {
  296. "__id__": 0
  297. },
  298. "fileId": "f3ryLCN2dC+6m/EzkXMXyC",
  299. "instance": null,
  300. "targetOverrides": null,
  301. "nestedPrefabInstanceRoots": null
  302. },
  303. {
  304. "__type__": "cc.Node",
  305. "_name": "plane",
  306. "_objFlags": 0,
  307. "_parent": {
  308. "__id__": 1
  309. },
  310. "_children": [],
  311. "_active": true,
  312. "_components": [
  313. {
  314. "__id__": 13
  315. },
  316. {
  317. "__id__": 15
  318. },
  319. {
  320. "__id__": 17
  321. },
  322. {
  323. "__id__": 19
  324. }
  325. ],
  326. "_prefab": {
  327. "__id__": 21
  328. },
  329. "_lpos": {
  330. "__type__": "cc.Vec3",
  331. "x": 0,
  332. "y": -480.8,
  333. "z": 0
  334. },
  335. "_lrot": {
  336. "__type__": "cc.Quat",
  337. "x": 0,
  338. "y": 0,
  339. "z": 0,
  340. "w": 1
  341. },
  342. "_lscale": {
  343. "__type__": "cc.Vec3",
  344. "x": 1,
  345. "y": 1,
  346. "z": 1
  347. },
  348. "_mobility": 0,
  349. "_layer": 33554432,
  350. "_euler": {
  351. "__type__": "cc.Vec3",
  352. "x": 0,
  353. "y": 0,
  354. "z": 0
  355. },
  356. "_id": ""
  357. },
  358. {
  359. "__type__": "cc.UITransform",
  360. "_name": "",
  361. "_objFlags": 0,
  362. "node": {
  363. "__id__": 12
  364. },
  365. "_enabled": true,
  366. "__prefab": {
  367. "__id__": 14
  368. },
  369. "_contentSize": {
  370. "__type__": "cc.Size",
  371. "width": 128,
  372. "height": 164
  373. },
  374. "_anchorPoint": {
  375. "__type__": "cc.Vec2",
  376. "x": 0.5,
  377. "y": 0.5
  378. },
  379. "_id": ""
  380. },
  381. {
  382. "__type__": "cc.CompPrefabInfo",
  383. "fileId": "9fFtlfcftMGKxzWgOUCPLa"
  384. },
  385. {
  386. "__type__": "cc.Sprite",
  387. "_name": "",
  388. "_objFlags": 0,
  389. "node": {
  390. "__id__": 12
  391. },
  392. "_enabled": true,
  393. "__prefab": {
  394. "__id__": 16
  395. },
  396. "_customMaterial": null,
  397. "_srcBlendFactor": 2,
  398. "_dstBlendFactor": 4,
  399. "_color": {
  400. "__type__": "cc.Color",
  401. "r": 255,
  402. "g": 255,
  403. "b": 255,
  404. "a": 255
  405. },
  406. "_spriteFrame": {
  407. "__uuid__": "73765ad0-649a-43c3-84db-514d75b9faaf@f9941",
  408. "__expectedType__": "cc.SpriteFrame"
  409. },
  410. "_type": 0,
  411. "_fillType": 0,
  412. "_sizeMode": 1,
  413. "_fillCenter": {
  414. "__type__": "cc.Vec2",
  415. "x": 0,
  416. "y": 0
  417. },
  418. "_fillStart": 0,
  419. "_fillRange": 0,
  420. "_isTrimmedMode": true,
  421. "_useGrayscale": false,
  422. "_atlas": null,
  423. "_id": ""
  424. },
  425. {
  426. "__type__": "cc.CompPrefabInfo",
  427. "fileId": "290vQM4oNFI4EoEynQlaix"
  428. },
  429. {
  430. "__type__": "cc.PolygonCollider2D",
  431. "_name": "",
  432. "_objFlags": 0,
  433. "node": {
  434. "__id__": 12
  435. },
  436. "_enabled": true,
  437. "__prefab": {
  438. "__id__": 18
  439. },
  440. "tag": 0,
  441. "_group": 2,
  442. "_density": 1,
  443. "_sensor": false,
  444. "_friction": 0,
  445. "_restitution": 0,
  446. "_offset": {
  447. "__type__": "cc.Vec2",
  448. "x": 0,
  449. "y": 0
  450. },
  451. "_points": [
  452. {
  453. "__type__": "cc.Vec2",
  454. "x": -3,
  455. "y": 82
  456. },
  457. {
  458. "__type__": "cc.Vec2",
  459. "x": -12,
  460. "y": 73
  461. },
  462. {
  463. "__type__": "cc.Vec2",
  464. "x": -19,
  465. "y": 60
  466. },
  467. {
  468. "__type__": "cc.Vec2",
  469. "x": -22,
  470. "y": 49
  471. },
  472. {
  473. "__type__": "cc.Vec2",
  474. "x": -22,
  475. "y": 37
  476. },
  477. {
  478. "__type__": "cc.Vec2",
  479. "x": -24,
  480. "y": 35
  481. },
  482. {
  483. "__type__": "cc.Vec2",
  484. "x": -24,
  485. "y": 30
  486. },
  487. {
  488. "__type__": "cc.Vec2",
  489. "x": -30,
  490. "y": 13
  491. },
  492. {
  493. "__type__": "cc.Vec2",
  494. "x": -32,
  495. "y": 12
  496. },
  497. {
  498. "__type__": "cc.Vec2",
  499. "x": -34,
  500. "y": 6
  501. },
  502. {
  503. "__type__": "cc.Vec2",
  504. "x": -42,
  505. "y": -2
  506. },
  507. {
  508. "__type__": "cc.Vec2",
  509. "x": -44,
  510. "y": -2
  511. },
  512. {
  513. "__type__": "cc.Vec2",
  514. "x": -51,
  515. "y": -9
  516. },
  517. {
  518. "__type__": "cc.Vec2",
  519. "x": -53,
  520. "y": -9
  521. },
  522. {
  523. "__type__": "cc.Vec2",
  524. "x": -61,
  525. "y": -18
  526. },
  527. {
  528. "__type__": "cc.Vec2",
  529. "x": -64,
  530. "y": -25
  531. },
  532. {
  533. "__type__": "cc.Vec2",
  534. "x": -63,
  535. "y": -36
  536. },
  537. {
  538. "__type__": "cc.Vec2",
  539. "x": -60,
  540. "y": -38
  541. },
  542. {
  543. "__type__": "cc.Vec2",
  544. "x": -40,
  545. "y": -38
  546. },
  547. {
  548. "__type__": "cc.Vec2",
  549. "x": -40,
  550. "y": -50
  551. },
  552. {
  553. "__type__": "cc.Vec2",
  554. "x": -38,
  555. "y": -50
  556. },
  557. {
  558. "__type__": "cc.Vec2",
  559. "x": -38,
  560. "y": -56
  561. },
  562. {
  563. "__type__": "cc.Vec2",
  564. "x": -29,
  565. "y": -70
  566. },
  567. {
  568. "__type__": "cc.Vec2",
  569. "x": -27,
  570. "y": -70
  571. },
  572. {
  573. "__type__": "cc.Vec2",
  574. "x": -24,
  575. "y": -67
  576. },
  577. {
  578. "__type__": "cc.Vec2",
  579. "x": -19,
  580. "y": -56
  581. },
  582. {
  583. "__type__": "cc.Vec2",
  584. "x": -14,
  585. "y": -56
  586. },
  587. {
  588. "__type__": "cc.Vec2",
  589. "x": -13,
  590. "y": -64
  591. },
  592. {
  593. "__type__": "cc.Vec2",
  594. "x": -9,
  595. "y": -72
  596. },
  597. {
  598. "__type__": "cc.Vec2",
  599. "x": -7,
  600. "y": -73
  601. },
  602. {
  603. "__type__": "cc.Vec2",
  604. "x": -5,
  605. "y": -78
  606. },
  607. {
  608. "__type__": "cc.Vec2",
  609. "x": -1,
  610. "y": -82
  611. },
  612. {
  613. "__type__": "cc.Vec2",
  614. "x": 1,
  615. "y": -82
  616. },
  617. {
  618. "__type__": "cc.Vec2",
  619. "x": 9,
  620. "y": -72
  621. },
  622. {
  623. "__type__": "cc.Vec2",
  624. "x": 13,
  625. "y": -64
  626. },
  627. {
  628. "__type__": "cc.Vec2",
  629. "x": 14,
  630. "y": -56
  631. },
  632. {
  633. "__type__": "cc.Vec2",
  634. "x": 19,
  635. "y": -56
  636. },
  637. {
  638. "__type__": "cc.Vec2",
  639. "x": 24,
  640. "y": -67
  641. },
  642. {
  643. "__type__": "cc.Vec2",
  644. "x": 27,
  645. "y": -70
  646. },
  647. {
  648. "__type__": "cc.Vec2",
  649. "x": 29,
  650. "y": -70
  651. },
  652. {
  653. "__type__": "cc.Vec2",
  654. "x": 38,
  655. "y": -56
  656. },
  657. {
  658. "__type__": "cc.Vec2",
  659. "x": 38,
  660. "y": -50
  661. },
  662. {
  663. "__type__": "cc.Vec2",
  664. "x": 40,
  665. "y": -50
  666. },
  667. {
  668. "__type__": "cc.Vec2",
  669. "x": 40,
  670. "y": -38
  671. },
  672. {
  673. "__type__": "cc.Vec2",
  674. "x": 60,
  675. "y": -38
  676. },
  677. {
  678. "__type__": "cc.Vec2",
  679. "x": 64,
  680. "y": -34
  681. },
  682. {
  683. "__type__": "cc.Vec2",
  684. "x": 64,
  685. "y": -25
  686. },
  687. {
  688. "__type__": "cc.Vec2",
  689. "x": 61,
  690. "y": -18
  691. },
  692. {
  693. "__type__": "cc.Vec2",
  694. "x": 53,
  695. "y": -9
  696. },
  697. {
  698. "__type__": "cc.Vec2",
  699. "x": 51,
  700. "y": -9
  701. },
  702. {
  703. "__type__": "cc.Vec2",
  704. "x": 48,
  705. "y": -5
  706. },
  707. {
  708. "__type__": "cc.Vec2",
  709. "x": 42,
  710. "y": -2
  711. },
  712. {
  713. "__type__": "cc.Vec2",
  714. "x": 34,
  715. "y": 6
  716. },
  717. {
  718. "__type__": "cc.Vec2",
  719. "x": 32,
  720. "y": 12
  721. },
  722. {
  723. "__type__": "cc.Vec2",
  724. "x": 30,
  725. "y": 13
  726. },
  727. {
  728. "__type__": "cc.Vec2",
  729. "x": 24,
  730. "y": 30
  731. },
  732. {
  733. "__type__": "cc.Vec2",
  734. "x": 24,
  735. "y": 35
  736. },
  737. {
  738. "__type__": "cc.Vec2",
  739. "x": 22,
  740. "y": 38
  741. },
  742. {
  743. "__type__": "cc.Vec2",
  744. "x": 20,
  745. "y": 38
  746. },
  747. {
  748. "__type__": "cc.Vec2",
  749. "x": 19,
  750. "y": 54
  751. },
  752. {
  753. "__type__": "cc.Vec2",
  754. "x": 12,
  755. "y": 70
  756. },
  757. {
  758. "__type__": "cc.Vec2",
  759. "x": 1,
  760. "y": 82
  761. }
  762. ],
  763. "_id": ""
  764. },
  765. {
  766. "__type__": "cc.CompPrefabInfo",
  767. "fileId": "fbcsA/6OVK9oefQKPjrEFO"
  768. },
  769. {
  770. "__type__": "cc.RigidBody2D",
  771. "_name": "",
  772. "_objFlags": 0,
  773. "node": {
  774. "__id__": 12
  775. },
  776. "_enabled": true,
  777. "__prefab": {
  778. "__id__": 20
  779. },
  780. "enabledContactListener": true,
  781. "bullet": false,
  782. "awakeOnLoad": true,
  783. "_group": 2,
  784. "_type": 1,
  785. "_allowSleep": true,
  786. "_gravityScale": 0,
  787. "_linearDamping": 0,
  788. "_angularDamping": 0,
  789. "_linearVelocity": {
  790. "__type__": "cc.Vec2",
  791. "x": 0,
  792. "y": 0
  793. },
  794. "_angularVelocity": 0,
  795. "_fixedRotation": false,
  796. "_id": ""
  797. },
  798. {
  799. "__type__": "cc.CompPrefabInfo",
  800. "fileId": "28Iw5ItLRIYKx87DKkWDbQ"
  801. },
  802. {
  803. "__type__": "cc.PrefabInfo",
  804. "root": {
  805. "__id__": 1
  806. },
  807. "asset": {
  808. "__id__": 0
  809. },
  810. "fileId": "99gbkafxlL5ZKRxdu0f+pc",
  811. "instance": null,
  812. "targetOverrides": null,
  813. "nestedPrefabInstanceRoots": null
  814. },
  815. {
  816. "__type__": "cc.Node",
  817. "_name": "Node",
  818. "_objFlags": 0,
  819. "_parent": {
  820. "__id__": 1
  821. },
  822. "_children": [],
  823. "_active": false,
  824. "_components": [
  825. {
  826. "__id__": 23
  827. },
  828. {
  829. "__id__": 25
  830. },
  831. {
  832. "__id__": 27
  833. }
  834. ],
  835. "_prefab": {
  836. "__id__": 29
  837. },
  838. "_lpos": {
  839. "__type__": "cc.Vec3",
  840. "x": 0,
  841. "y": 0,
  842. "z": 0
  843. },
  844. "_lrot": {
  845. "__type__": "cc.Quat",
  846. "x": 0,
  847. "y": 0,
  848. "z": 0,
  849. "w": 1
  850. },
  851. "_lscale": {
  852. "__type__": "cc.Vec3",
  853. "x": 1,
  854. "y": 1,
  855. "z": 1
  856. },
  857. "_mobility": 0,
  858. "_layer": 33554432,
  859. "_euler": {
  860. "__type__": "cc.Vec3",
  861. "x": 0,
  862. "y": 0,
  863. "z": 0
  864. },
  865. "_id": ""
  866. },
  867. {
  868. "__type__": "cc.UITransform",
  869. "_name": "",
  870. "_objFlags": 0,
  871. "node": {
  872. "__id__": 22
  873. },
  874. "_enabled": true,
  875. "__prefab": {
  876. "__id__": 24
  877. },
  878. "_contentSize": {
  879. "__type__": "cc.Size",
  880. "width": 100,
  881. "height": 100
  882. },
  883. "_anchorPoint": {
  884. "__type__": "cc.Vec2",
  885. "x": 0.5,
  886. "y": 0.5
  887. },
  888. "_id": ""
  889. },
  890. {
  891. "__type__": "cc.CompPrefabInfo",
  892. "fileId": "f9fy9dGUZDkZ4G6PWwWAhQ"
  893. },
  894. {
  895. "__type__": "cc.Mask",
  896. "_name": "",
  897. "_objFlags": 0,
  898. "node": {
  899. "__id__": 22
  900. },
  901. "_enabled": true,
  902. "__prefab": {
  903. "__id__": 26
  904. },
  905. "_type": 0,
  906. "_inverted": false,
  907. "_segments": 64,
  908. "_alphaThreshold": 0.1,
  909. "_id": ""
  910. },
  911. {
  912. "__type__": "cc.CompPrefabInfo",
  913. "fileId": "42kUo59DtP/7Q5cLYG39/7"
  914. },
  915. {
  916. "__type__": "cc.Graphics",
  917. "_name": "",
  918. "_objFlags": 0,
  919. "node": {
  920. "__id__": 22
  921. },
  922. "_enabled": true,
  923. "__prefab": {
  924. "__id__": 28
  925. },
  926. "_customMaterial": null,
  927. "_srcBlendFactor": 2,
  928. "_dstBlendFactor": 4,
  929. "_color": {
  930. "__type__": "cc.Color",
  931. "r": 255,
  932. "g": 255,
  933. "b": 255,
  934. "a": 255
  935. },
  936. "_lineWidth": 1,
  937. "_strokeColor": {
  938. "__type__": "cc.Color",
  939. "r": 0,
  940. "g": 0,
  941. "b": 0,
  942. "a": 255
  943. },
  944. "_lineJoin": 2,
  945. "_lineCap": 0,
  946. "_fillColor": {
  947. "__type__": "cc.Color",
  948. "r": 255,
  949. "g": 255,
  950. "b": 255,
  951. "a": 0
  952. },
  953. "_miterLimit": 10,
  954. "_id": ""
  955. },
  956. {
  957. "__type__": "cc.CompPrefabInfo",
  958. "fileId": "96qT8rtGZDaZ7FV0+XVsc6"
  959. },
  960. {
  961. "__type__": "cc.PrefabInfo",
  962. "root": {
  963. "__id__": 1
  964. },
  965. "asset": {
  966. "__id__": 0
  967. },
  968. "fileId": "cfiBsxV6BPY7LX4k6MZrYl",
  969. "instance": null,
  970. "targetOverrides": null,
  971. "nestedPrefabInstanceRoots": null
  972. },
  973. {
  974. "__type__": "cc.Node",
  975. "_name": "mask",
  976. "_objFlags": 0,
  977. "_parent": {
  978. "__id__": 1
  979. },
  980. "_children": [
  981. {
  982. "__id__": 31
  983. },
  984. {
  985. "__id__": 35
  986. },
  987. {
  988. "__id__": 45
  989. },
  990. {
  991. "__id__": 55
  992. }
  993. ],
  994. "_active": true,
  995. "_components": [
  996. {
  997. "__id__": 65
  998. },
  999. {
  1000. "__id__": 67
  1001. },
  1002. {
  1003. "__id__": 69
  1004. },
  1005. {
  1006. "__id__": 71
  1007. }
  1008. ],
  1009. "_prefab": {
  1010. "__id__": 73
  1011. },
  1012. "_lpos": {
  1013. "__type__": "cc.Vec3",
  1014. "x": 0,
  1015. "y": 0,
  1016. "z": 0
  1017. },
  1018. "_lrot": {
  1019. "__type__": "cc.Quat",
  1020. "x": 0,
  1021. "y": 0,
  1022. "z": 0,
  1023. "w": 1
  1024. },
  1025. "_lscale": {
  1026. "__type__": "cc.Vec3",
  1027. "x": 1,
  1028. "y": 1,
  1029. "z": 1
  1030. },
  1031. "_mobility": 0,
  1032. "_layer": 33554432,
  1033. "_euler": {
  1034. "__type__": "cc.Vec3",
  1035. "x": 0,
  1036. "y": 0,
  1037. "z": 0
  1038. },
  1039. "_id": ""
  1040. },
  1041. {
  1042. "__type__": "cc.Node",
  1043. "_name": "stone_makepos",
  1044. "_objFlags": 0,
  1045. "_parent": {
  1046. "__id__": 30
  1047. },
  1048. "_children": [],
  1049. "_active": true,
  1050. "_components": [
  1051. {
  1052. "__id__": 32
  1053. }
  1054. ],
  1055. "_prefab": {
  1056. "__id__": 34
  1057. },
  1058. "_lpos": {
  1059. "__type__": "cc.Vec3",
  1060. "x": 0,
  1061. "y": 762.738,
  1062. "z": 0
  1063. },
  1064. "_lrot": {
  1065. "__type__": "cc.Quat",
  1066. "x": 0,
  1067. "y": 0,
  1068. "z": 0,
  1069. "w": 1
  1070. },
  1071. "_lscale": {
  1072. "__type__": "cc.Vec3",
  1073. "x": 1,
  1074. "y": 1,
  1075. "z": 1
  1076. },
  1077. "_mobility": 0,
  1078. "_layer": 33554432,
  1079. "_euler": {
  1080. "__type__": "cc.Vec3",
  1081. "x": 0,
  1082. "y": 0,
  1083. "z": 0
  1084. },
  1085. "_id": ""
  1086. },
  1087. {
  1088. "__type__": "cc.UITransform",
  1089. "_name": "",
  1090. "_objFlags": 0,
  1091. "node": {
  1092. "__id__": 31
  1093. },
  1094. "_enabled": true,
  1095. "__prefab": {
  1096. "__id__": 33
  1097. },
  1098. "_contentSize": {
  1099. "__type__": "cc.Size",
  1100. "width": 100,
  1101. "height": 100
  1102. },
  1103. "_anchorPoint": {
  1104. "__type__": "cc.Vec2",
  1105. "x": 0.5,
  1106. "y": 0.5
  1107. },
  1108. "_id": ""
  1109. },
  1110. {
  1111. "__type__": "cc.CompPrefabInfo",
  1112. "fileId": "15fTsyU1BM/oJL+6CtJypF"
  1113. },
  1114. {
  1115. "__type__": "cc.PrefabInfo",
  1116. "root": {
  1117. "__id__": 1
  1118. },
  1119. "asset": {
  1120. "__id__": 0
  1121. },
  1122. "fileId": "deevq66NNEs5pTcj1tUXsN",
  1123. "instance": null,
  1124. "targetOverrides": null,
  1125. "nestedPrefabInstanceRoots": null
  1126. },
  1127. {
  1128. "__type__": "cc.Node",
  1129. "_name": "stone1",
  1130. "_objFlags": 0,
  1131. "_parent": {
  1132. "__id__": 30
  1133. },
  1134. "_children": [],
  1135. "_active": true,
  1136. "_components": [
  1137. {
  1138. "__id__": 36
  1139. },
  1140. {
  1141. "__id__": 38
  1142. },
  1143. {
  1144. "__id__": 40
  1145. },
  1146. {
  1147. "__id__": 42
  1148. }
  1149. ],
  1150. "_prefab": {
  1151. "__id__": 44
  1152. },
  1153. "_lpos": {
  1154. "__type__": "cc.Vec3",
  1155. "x": 0,
  1156. "y": 787.374,
  1157. "z": 0
  1158. },
  1159. "_lrot": {
  1160. "__type__": "cc.Quat",
  1161. "x": 0,
  1162. "y": 0,
  1163. "z": 0,
  1164. "w": 1
  1165. },
  1166. "_lscale": {
  1167. "__type__": "cc.Vec3",
  1168. "x": 1,
  1169. "y": 1,
  1170. "z": 1
  1171. },
  1172. "_mobility": 0,
  1173. "_layer": 33554432,
  1174. "_euler": {
  1175. "__type__": "cc.Vec3",
  1176. "x": 0,
  1177. "y": 0,
  1178. "z": 0
  1179. },
  1180. "_id": ""
  1181. },
  1182. {
  1183. "__type__": "cc.UITransform",
  1184. "_name": "",
  1185. "_objFlags": 0,
  1186. "node": {
  1187. "__id__": 35
  1188. },
  1189. "_enabled": true,
  1190. "__prefab": {
  1191. "__id__": 37
  1192. },
  1193. "_contentSize": {
  1194. "__type__": "cc.Size",
  1195. "width": 84,
  1196. "height": 72
  1197. },
  1198. "_anchorPoint": {
  1199. "__type__": "cc.Vec2",
  1200. "x": 0.5,
  1201. "y": 0.5
  1202. },
  1203. "_id": ""
  1204. },
  1205. {
  1206. "__type__": "cc.CompPrefabInfo",
  1207. "fileId": "b1eFkc3TZICrKtK5MBLrfx"
  1208. },
  1209. {
  1210. "__type__": "cc.Sprite",
  1211. "_name": "",
  1212. "_objFlags": 0,
  1213. "node": {
  1214. "__id__": 35
  1215. },
  1216. "_enabled": true,
  1217. "__prefab": {
  1218. "__id__": 39
  1219. },
  1220. "_customMaterial": null,
  1221. "_srcBlendFactor": 2,
  1222. "_dstBlendFactor": 4,
  1223. "_color": {
  1224. "__type__": "cc.Color",
  1225. "r": 255,
  1226. "g": 255,
  1227. "b": 255,
  1228. "a": 255
  1229. },
  1230. "_spriteFrame": {
  1231. "__uuid__": "544d0412-dcc8-440c-ab11-fa3b8f086c94@f9941",
  1232. "__expectedType__": "cc.SpriteFrame"
  1233. },
  1234. "_type": 0,
  1235. "_fillType": 0,
  1236. "_sizeMode": 1,
  1237. "_fillCenter": {
  1238. "__type__": "cc.Vec2",
  1239. "x": 0,
  1240. "y": 0
  1241. },
  1242. "_fillStart": 0,
  1243. "_fillRange": 0,
  1244. "_isTrimmedMode": true,
  1245. "_useGrayscale": false,
  1246. "_atlas": null,
  1247. "_id": ""
  1248. },
  1249. {
  1250. "__type__": "cc.CompPrefabInfo",
  1251. "fileId": "80R412j9ZPurveNpsPslS9"
  1252. },
  1253. {
  1254. "__type__": "cc.PolygonCollider2D",
  1255. "_name": "",
  1256. "_objFlags": 0,
  1257. "node": {
  1258. "__id__": 35
  1259. },
  1260. "_enabled": true,
  1261. "__prefab": {
  1262. "__id__": 41
  1263. },
  1264. "tag": 0,
  1265. "_group": 4,
  1266. "_density": 1,
  1267. "_sensor": false,
  1268. "_friction": 0.2,
  1269. "_restitution": 0,
  1270. "_offset": {
  1271. "__type__": "cc.Vec2",
  1272. "x": 0,
  1273. "y": 0
  1274. },
  1275. "_points": [
  1276. {
  1277. "__type__": "cc.Vec2",
  1278. "x": 5,
  1279. "y": 36
  1280. },
  1281. {
  1282. "__type__": "cc.Vec2",
  1283. "x": -1,
  1284. "y": 35
  1285. },
  1286. {
  1287. "__type__": "cc.Vec2",
  1288. "x": -3,
  1289. "y": 32
  1290. },
  1291. {
  1292. "__type__": "cc.Vec2",
  1293. "x": -13,
  1294. "y": 32
  1295. },
  1296. {
  1297. "__type__": "cc.Vec2",
  1298. "x": -31,
  1299. "y": 22
  1300. },
  1301. {
  1302. "__type__": "cc.Vec2",
  1303. "x": -35,
  1304. "y": 17
  1305. },
  1306. {
  1307. "__type__": "cc.Vec2",
  1308. "x": -42,
  1309. "y": -10
  1310. },
  1311. {
  1312. "__type__": "cc.Vec2",
  1313. "x": -42,
  1314. "y": -30
  1315. },
  1316. {
  1317. "__type__": "cc.Vec2",
  1318. "x": -39,
  1319. "y": -36
  1320. },
  1321. {
  1322. "__type__": "cc.Vec2",
  1323. "x": -4,
  1324. "y": -35
  1325. },
  1326. {
  1327. "__type__": "cc.Vec2",
  1328. "x": 8,
  1329. "y": -31
  1330. },
  1331. {
  1332. "__type__": "cc.Vec2",
  1333. "x": 12,
  1334. "y": -28
  1335. },
  1336. {
  1337. "__type__": "cc.Vec2",
  1338. "x": 15,
  1339. "y": -28
  1340. },
  1341. {
  1342. "__type__": "cc.Vec2",
  1343. "x": 33,
  1344. "y": -19
  1345. },
  1346. {
  1347. "__type__": "cc.Vec2",
  1348. "x": 36,
  1349. "y": -14
  1350. },
  1351. {
  1352. "__type__": "cc.Vec2",
  1353. "x": 42,
  1354. "y": 6
  1355. },
  1356. {
  1357. "__type__": "cc.Vec2",
  1358. "x": 42,
  1359. "y": 26
  1360. },
  1361. {
  1362. "__type__": "cc.Vec2",
  1363. "x": 40,
  1364. "y": 34
  1365. },
  1366. {
  1367. "__type__": "cc.Vec2",
  1368. "x": 38,
  1369. "y": 36
  1370. }
  1371. ],
  1372. "_id": ""
  1373. },
  1374. {
  1375. "__type__": "cc.CompPrefabInfo",
  1376. "fileId": "25F+/hMVdMaokQS3zG46F+"
  1377. },
  1378. {
  1379. "__type__": "cc.RigidBody2D",
  1380. "_name": "",
  1381. "_objFlags": 0,
  1382. "node": {
  1383. "__id__": 35
  1384. },
  1385. "_enabled": true,
  1386. "__prefab": {
  1387. "__id__": 43
  1388. },
  1389. "enabledContactListener": true,
  1390. "bullet": false,
  1391. "awakeOnLoad": true,
  1392. "_group": 4,
  1393. "_type": 1,
  1394. "_allowSleep": true,
  1395. "_gravityScale": 0,
  1396. "_linearDamping": 0,
  1397. "_angularDamping": 0,
  1398. "_linearVelocity": {
  1399. "__type__": "cc.Vec2",
  1400. "x": 0,
  1401. "y": 0
  1402. },
  1403. "_angularVelocity": 0,
  1404. "_fixedRotation": false,
  1405. "_id": ""
  1406. },
  1407. {
  1408. "__type__": "cc.CompPrefabInfo",
  1409. "fileId": "13jskQowxINaTdVzUuufig"
  1410. },
  1411. {
  1412. "__type__": "cc.PrefabInfo",
  1413. "root": {
  1414. "__id__": 1
  1415. },
  1416. "asset": {
  1417. "__id__": 0
  1418. },
  1419. "fileId": "0fPHjd0OhLGqJ2AFsHl8lA",
  1420. "instance": null,
  1421. "targetOverrides": null,
  1422. "nestedPrefabInstanceRoots": null
  1423. },
  1424. {
  1425. "__type__": "cc.Node",
  1426. "_name": "star",
  1427. "_objFlags": 0,
  1428. "_parent": {
  1429. "__id__": 30
  1430. },
  1431. "_children": [],
  1432. "_active": true,
  1433. "_components": [
  1434. {
  1435. "__id__": 46
  1436. },
  1437. {
  1438. "__id__": 48
  1439. },
  1440. {
  1441. "__id__": 50
  1442. },
  1443. {
  1444. "__id__": 52
  1445. }
  1446. ],
  1447. "_prefab": {
  1448. "__id__": 54
  1449. },
  1450. "_lpos": {
  1451. "__type__": "cc.Vec3",
  1452. "x": 0,
  1453. "y": 726.7660000000001,
  1454. "z": 0
  1455. },
  1456. "_lrot": {
  1457. "__type__": "cc.Quat",
  1458. "x": 0,
  1459. "y": 0,
  1460. "z": 0,
  1461. "w": 1
  1462. },
  1463. "_lscale": {
  1464. "__type__": "cc.Vec3",
  1465. "x": 1,
  1466. "y": 1,
  1467. "z": 1
  1468. },
  1469. "_mobility": 0,
  1470. "_layer": 33554432,
  1471. "_euler": {
  1472. "__type__": "cc.Vec3",
  1473. "x": 0,
  1474. "y": 0,
  1475. "z": 0
  1476. },
  1477. "_id": ""
  1478. },
  1479. {
  1480. "__type__": "cc.UITransform",
  1481. "_name": "",
  1482. "_objFlags": 0,
  1483. "node": {
  1484. "__id__": 45
  1485. },
  1486. "_enabled": true,
  1487. "__prefab": {
  1488. "__id__": 47
  1489. },
  1490. "_contentSize": {
  1491. "__type__": "cc.Size",
  1492. "width": 58,
  1493. "height": 58
  1494. },
  1495. "_anchorPoint": {
  1496. "__type__": "cc.Vec2",
  1497. "x": 0.5,
  1498. "y": 0.5
  1499. },
  1500. "_id": ""
  1501. },
  1502. {
  1503. "__type__": "cc.CompPrefabInfo",
  1504. "fileId": "13o7vEHLROFaCmeVJ1u5N3"
  1505. },
  1506. {
  1507. "__type__": "cc.Sprite",
  1508. "_name": "",
  1509. "_objFlags": 0,
  1510. "node": {
  1511. "__id__": 45
  1512. },
  1513. "_enabled": true,
  1514. "__prefab": {
  1515. "__id__": 49
  1516. },
  1517. "_customMaterial": null,
  1518. "_srcBlendFactor": 2,
  1519. "_dstBlendFactor": 4,
  1520. "_color": {
  1521. "__type__": "cc.Color",
  1522. "r": 255,
  1523. "g": 255,
  1524. "b": 255,
  1525. "a": 255
  1526. },
  1527. "_spriteFrame": {
  1528. "__uuid__": "3c1bb402-21cb-4a31-be30-11bd339fe22e@f9941",
  1529. "__expectedType__": "cc.SpriteFrame"
  1530. },
  1531. "_type": 0,
  1532. "_fillType": 0,
  1533. "_sizeMode": 1,
  1534. "_fillCenter": {
  1535. "__type__": "cc.Vec2",
  1536. "x": 0,
  1537. "y": 0
  1538. },
  1539. "_fillStart": 0,
  1540. "_fillRange": 0,
  1541. "_isTrimmedMode": true,
  1542. "_useGrayscale": false,
  1543. "_atlas": null,
  1544. "_id": ""
  1545. },
  1546. {
  1547. "__type__": "cc.CompPrefabInfo",
  1548. "fileId": "8bbfxOd0pC8qiDjhoTNord"
  1549. },
  1550. {
  1551. "__type__": "cc.PolygonCollider2D",
  1552. "_name": "",
  1553. "_objFlags": 0,
  1554. "node": {
  1555. "__id__": 45
  1556. },
  1557. "_enabled": true,
  1558. "__prefab": {
  1559. "__id__": 51
  1560. },
  1561. "tag": 0,
  1562. "_group": 4,
  1563. "_density": 1,
  1564. "_sensor": false,
  1565. "_friction": 0.2,
  1566. "_restitution": 0,
  1567. "_offset": {
  1568. "__type__": "cc.Vec2",
  1569. "x": 0,
  1570. "y": 0
  1571. },
  1572. "_points": [
  1573. {
  1574. "__type__": "cc.Vec2",
  1575. "x": -3,
  1576. "y": 29
  1577. },
  1578. {
  1579. "__type__": "cc.Vec2",
  1580. "x": -6,
  1581. "y": 26
  1582. },
  1583. {
  1584. "__type__": "cc.Vec2",
  1585. "x": -12,
  1586. "y": 12
  1587. },
  1588. {
  1589. "__type__": "cc.Vec2",
  1590. "x": -26,
  1591. "y": 6
  1592. },
  1593. {
  1594. "__type__": "cc.Vec2",
  1595. "x": -29,
  1596. "y": 3
  1597. },
  1598. {
  1599. "__type__": "cc.Vec2",
  1600. "x": -29,
  1601. "y": -3
  1602. },
  1603. {
  1604. "__type__": "cc.Vec2",
  1605. "x": -26,
  1606. "y": -6
  1607. },
  1608. {
  1609. "__type__": "cc.Vec2",
  1610. "x": -12,
  1611. "y": -12
  1612. },
  1613. {
  1614. "__type__": "cc.Vec2",
  1615. "x": -6,
  1616. "y": -26
  1617. },
  1618. {
  1619. "__type__": "cc.Vec2",
  1620. "x": -3,
  1621. "y": -29
  1622. },
  1623. {
  1624. "__type__": "cc.Vec2",
  1625. "x": 3,
  1626. "y": -29
  1627. },
  1628. {
  1629. "__type__": "cc.Vec2",
  1630. "x": 6,
  1631. "y": -26
  1632. },
  1633. {
  1634. "__type__": "cc.Vec2",
  1635. "x": 12,
  1636. "y": -12
  1637. },
  1638. {
  1639. "__type__": "cc.Vec2",
  1640. "x": 26,
  1641. "y": -6
  1642. },
  1643. {
  1644. "__type__": "cc.Vec2",
  1645. "x": 29,
  1646. "y": -3
  1647. },
  1648. {
  1649. "__type__": "cc.Vec2",
  1650. "x": 29,
  1651. "y": 3
  1652. },
  1653. {
  1654. "__type__": "cc.Vec2",
  1655. "x": 26,
  1656. "y": 6
  1657. },
  1658. {
  1659. "__type__": "cc.Vec2",
  1660. "x": 12,
  1661. "y": 12
  1662. },
  1663. {
  1664. "__type__": "cc.Vec2",
  1665. "x": 6,
  1666. "y": 26
  1667. },
  1668. {
  1669. "__type__": "cc.Vec2",
  1670. "x": 3,
  1671. "y": 29
  1672. }
  1673. ],
  1674. "_id": ""
  1675. },
  1676. {
  1677. "__type__": "cc.CompPrefabInfo",
  1678. "fileId": "64HWXQzQREhrmlaSVnBVWV"
  1679. },
  1680. {
  1681. "__type__": "cc.RigidBody2D",
  1682. "_name": "",
  1683. "_objFlags": 0,
  1684. "node": {
  1685. "__id__": 45
  1686. },
  1687. "_enabled": true,
  1688. "__prefab": {
  1689. "__id__": 53
  1690. },
  1691. "enabledContactListener": true,
  1692. "bullet": false,
  1693. "awakeOnLoad": true,
  1694. "_group": 4,
  1695. "_type": 1,
  1696. "_allowSleep": true,
  1697. "_gravityScale": 0,
  1698. "_linearDamping": 0,
  1699. "_angularDamping": 0,
  1700. "_linearVelocity": {
  1701. "__type__": "cc.Vec2",
  1702. "x": 0,
  1703. "y": 0
  1704. },
  1705. "_angularVelocity": 0,
  1706. "_fixedRotation": false,
  1707. "_id": ""
  1708. },
  1709. {
  1710. "__type__": "cc.CompPrefabInfo",
  1711. "fileId": "eaZTzMFPRB4rrgTuFKHh/X"
  1712. },
  1713. {
  1714. "__type__": "cc.PrefabInfo",
  1715. "root": {
  1716. "__id__": 1
  1717. },
  1718. "asset": {
  1719. "__id__": 0
  1720. },
  1721. "fileId": "d43c7SAwNJ34wqG/x7a2X7",
  1722. "instance": null,
  1723. "targetOverrides": null,
  1724. "nestedPrefabInstanceRoots": null
  1725. },
  1726. {
  1727. "__type__": "cc.Node",
  1728. "_name": "stone2",
  1729. "_objFlags": 0,
  1730. "_parent": {
  1731. "__id__": 30
  1732. },
  1733. "_children": [],
  1734. "_active": true,
  1735. "_components": [
  1736. {
  1737. "__id__": 56
  1738. },
  1739. {
  1740. "__id__": 58
  1741. },
  1742. {
  1743. "__id__": 60
  1744. },
  1745. {
  1746. "__id__": 62
  1747. }
  1748. ],
  1749. "_prefab": {
  1750. "__id__": 64
  1751. },
  1752. "_lpos": {
  1753. "__type__": "cc.Vec3",
  1754. "x": 0,
  1755. "y": 726.7660000000001,
  1756. "z": 0
  1757. },
  1758. "_lrot": {
  1759. "__type__": "cc.Quat",
  1760. "x": 0,
  1761. "y": 0,
  1762. "z": 0,
  1763. "w": 1
  1764. },
  1765. "_lscale": {
  1766. "__type__": "cc.Vec3",
  1767. "x": 1,
  1768. "y": 1,
  1769. "z": 1
  1770. },
  1771. "_mobility": 0,
  1772. "_layer": 33554432,
  1773. "_euler": {
  1774. "__type__": "cc.Vec3",
  1775. "x": 0,
  1776. "y": 0,
  1777. "z": 0
  1778. },
  1779. "_id": ""
  1780. },
  1781. {
  1782. "__type__": "cc.UITransform",
  1783. "_name": "",
  1784. "_objFlags": 0,
  1785. "node": {
  1786. "__id__": 55
  1787. },
  1788. "_enabled": true,
  1789. "__prefab": {
  1790. "__id__": 57
  1791. },
  1792. "_contentSize": {
  1793. "__type__": "cc.Size",
  1794. "width": 80,
  1795. "height": 80
  1796. },
  1797. "_anchorPoint": {
  1798. "__type__": "cc.Vec2",
  1799. "x": 0.5,
  1800. "y": 0.5
  1801. },
  1802. "_id": ""
  1803. },
  1804. {
  1805. "__type__": "cc.CompPrefabInfo",
  1806. "fileId": "3fMsSmwMBIL5tsUm9YNV2e"
  1807. },
  1808. {
  1809. "__type__": "cc.Sprite",
  1810. "_name": "",
  1811. "_objFlags": 0,
  1812. "node": {
  1813. "__id__": 55
  1814. },
  1815. "_enabled": true,
  1816. "__prefab": {
  1817. "__id__": 59
  1818. },
  1819. "_customMaterial": null,
  1820. "_srcBlendFactor": 2,
  1821. "_dstBlendFactor": 4,
  1822. "_color": {
  1823. "__type__": "cc.Color",
  1824. "r": 255,
  1825. "g": 255,
  1826. "b": 255,
  1827. "a": 255
  1828. },
  1829. "_spriteFrame": {
  1830. "__uuid__": "4532e68a-4e09-4967-b0b6-06e8802e6b65@f9941",
  1831. "__expectedType__": "cc.SpriteFrame"
  1832. },
  1833. "_type": 0,
  1834. "_fillType": 0,
  1835. "_sizeMode": 1,
  1836. "_fillCenter": {
  1837. "__type__": "cc.Vec2",
  1838. "x": 0,
  1839. "y": 0
  1840. },
  1841. "_fillStart": 0,
  1842. "_fillRange": 0,
  1843. "_isTrimmedMode": true,
  1844. "_useGrayscale": false,
  1845. "_atlas": null,
  1846. "_id": ""
  1847. },
  1848. {
  1849. "__type__": "cc.CompPrefabInfo",
  1850. "fileId": "00/2ZgQ0BPKJhZbClms6i1"
  1851. },
  1852. {
  1853. "__type__": "cc.PolygonCollider2D",
  1854. "_name": "",
  1855. "_objFlags": 0,
  1856. "node": {
  1857. "__id__": 55
  1858. },
  1859. "_enabled": true,
  1860. "__prefab": {
  1861. "__id__": 61
  1862. },
  1863. "tag": 0,
  1864. "_group": 4,
  1865. "_density": 1,
  1866. "_sensor": false,
  1867. "_friction": 0.2,
  1868. "_restitution": 0,
  1869. "_offset": {
  1870. "__type__": "cc.Vec2",
  1871. "x": 0,
  1872. "y": 0
  1873. },
  1874. "_points": [
  1875. {
  1876. "__type__": "cc.Vec2",
  1877. "x": -9,
  1878. "y": 40
  1879. },
  1880. {
  1881. "__type__": "cc.Vec2",
  1882. "x": -25,
  1883. "y": 33
  1884. },
  1885. {
  1886. "__type__": "cc.Vec2",
  1887. "x": -33,
  1888. "y": 25
  1889. },
  1890. {
  1891. "__type__": "cc.Vec2",
  1892. "x": -38,
  1893. "y": 16
  1894. },
  1895. {
  1896. "__type__": "cc.Vec2",
  1897. "x": -40,
  1898. "y": 9
  1899. },
  1900. {
  1901. "__type__": "cc.Vec2",
  1902. "x": -40,
  1903. "y": -9
  1904. },
  1905. {
  1906. "__type__": "cc.Vec2",
  1907. "x": -38,
  1908. "y": -16
  1909. },
  1910. {
  1911. "__type__": "cc.Vec2",
  1912. "x": -32,
  1913. "y": -24
  1914. },
  1915. {
  1916. "__type__": "cc.Vec2",
  1917. "x": -32,
  1918. "y": -26
  1919. },
  1920. {
  1921. "__type__": "cc.Vec2",
  1922. "x": -26,
  1923. "y": -32
  1924. },
  1925. {
  1926. "__type__": "cc.Vec2",
  1927. "x": -24,
  1928. "y": -32
  1929. },
  1930. {
  1931. "__type__": "cc.Vec2",
  1932. "x": -16,
  1933. "y": -38
  1934. },
  1935. {
  1936. "__type__": "cc.Vec2",
  1937. "x": -9,
  1938. "y": -40
  1939. },
  1940. {
  1941. "__type__": "cc.Vec2",
  1942. "x": 9,
  1943. "y": -40
  1944. },
  1945. {
  1946. "__type__": "cc.Vec2",
  1947. "x": 16,
  1948. "y": -38
  1949. },
  1950. {
  1951. "__type__": "cc.Vec2",
  1952. "x": 24,
  1953. "y": -32
  1954. },
  1955. {
  1956. "__type__": "cc.Vec2",
  1957. "x": 26,
  1958. "y": -32
  1959. },
  1960. {
  1961. "__type__": "cc.Vec2",
  1962. "x": 35,
  1963. "y": -22
  1964. },
  1965. {
  1966. "__type__": "cc.Vec2",
  1967. "x": 40,
  1968. "y": -9
  1969. },
  1970. {
  1971. "__type__": "cc.Vec2",
  1972. "x": 40,
  1973. "y": 10
  1974. },
  1975. {
  1976. "__type__": "cc.Vec2",
  1977. "x": 33,
  1978. "y": 25
  1979. },
  1980. {
  1981. "__type__": "cc.Vec2",
  1982. "x": 25,
  1983. "y": 33
  1984. },
  1985. {
  1986. "__type__": "cc.Vec2",
  1987. "x": 21,
  1988. "y": 34
  1989. },
  1990. {
  1991. "__type__": "cc.Vec2",
  1992. "x": 16,
  1993. "y": 38
  1994. },
  1995. {
  1996. "__type__": "cc.Vec2",
  1997. "x": 10,
  1998. "y": 40
  1999. }
  2000. ],
  2001. "_id": ""
  2002. },
  2003. {
  2004. "__type__": "cc.CompPrefabInfo",
  2005. "fileId": "78k2frTRtKR4nMr4ZhmXeI"
  2006. },
  2007. {
  2008. "__type__": "cc.RigidBody2D",
  2009. "_name": "",
  2010. "_objFlags": 0,
  2011. "node": {
  2012. "__id__": 55
  2013. },
  2014. "_enabled": true,
  2015. "__prefab": {
  2016. "__id__": 63
  2017. },
  2018. "enabledContactListener": true,
  2019. "bullet": false,
  2020. "awakeOnLoad": true,
  2021. "_group": 4,
  2022. "_type": 1,
  2023. "_allowSleep": true,
  2024. "_gravityScale": 0,
  2025. "_linearDamping": 0,
  2026. "_angularDamping": 0,
  2027. "_linearVelocity": {
  2028. "__type__": "cc.Vec2",
  2029. "x": 0,
  2030. "y": 0
  2031. },
  2032. "_angularVelocity": 0,
  2033. "_fixedRotation": false,
  2034. "_id": ""
  2035. },
  2036. {
  2037. "__type__": "cc.CompPrefabInfo",
  2038. "fileId": "4blgMt0/hC34dyMfGLv2Rf"
  2039. },
  2040. {
  2041. "__type__": "cc.PrefabInfo",
  2042. "root": {
  2043. "__id__": 1
  2044. },
  2045. "asset": {
  2046. "__id__": 0
  2047. },
  2048. "fileId": "90aWkiqnlHjbLiQf0ZNPwX",
  2049. "instance": null,
  2050. "targetOverrides": null,
  2051. "nestedPrefabInstanceRoots": null
  2052. },
  2053. {
  2054. "__type__": "cc.UITransform",
  2055. "_name": "",
  2056. "_objFlags": 0,
  2057. "node": {
  2058. "__id__": 30
  2059. },
  2060. "_enabled": true,
  2061. "__prefab": {
  2062. "__id__": 66
  2063. },
  2064. "_contentSize": {
  2065. "__type__": "cc.Size",
  2066. "width": 1406,
  2067. "height": 1220
  2068. },
  2069. "_anchorPoint": {
  2070. "__type__": "cc.Vec2",
  2071. "x": 0.5,
  2072. "y": 0.5
  2073. },
  2074. "_id": ""
  2075. },
  2076. {
  2077. "__type__": "cc.CompPrefabInfo",
  2078. "fileId": "45KK7SGk9Ir4H5hwMJc3oJ"
  2079. },
  2080. {
  2081. "__type__": "cc.Mask",
  2082. "_name": "",
  2083. "_objFlags": 0,
  2084. "node": {
  2085. "__id__": 30
  2086. },
  2087. "_enabled": true,
  2088. "__prefab": {
  2089. "__id__": 68
  2090. },
  2091. "_type": 0,
  2092. "_inverted": false,
  2093. "_segments": 64,
  2094. "_alphaThreshold": 0.1,
  2095. "_id": ""
  2096. },
  2097. {
  2098. "__type__": "cc.CompPrefabInfo",
  2099. "fileId": "11WPzNHu5AzrlsxiG/NXs9"
  2100. },
  2101. {
  2102. "__type__": "cc.Graphics",
  2103. "_name": "",
  2104. "_objFlags": 0,
  2105. "node": {
  2106. "__id__": 30
  2107. },
  2108. "_enabled": true,
  2109. "__prefab": {
  2110. "__id__": 70
  2111. },
  2112. "_customMaterial": null,
  2113. "_srcBlendFactor": 2,
  2114. "_dstBlendFactor": 4,
  2115. "_color": {
  2116. "__type__": "cc.Color",
  2117. "r": 255,
  2118. "g": 255,
  2119. "b": 255,
  2120. "a": 255
  2121. },
  2122. "_lineWidth": 1,
  2123. "_strokeColor": {
  2124. "__type__": "cc.Color",
  2125. "r": 0,
  2126. "g": 0,
  2127. "b": 0,
  2128. "a": 255
  2129. },
  2130. "_lineJoin": 2,
  2131. "_lineCap": 0,
  2132. "_fillColor": {
  2133. "__type__": "cc.Color",
  2134. "r": 255,
  2135. "g": 255,
  2136. "b": 255,
  2137. "a": 0
  2138. },
  2139. "_miterLimit": 10,
  2140. "_id": ""
  2141. },
  2142. {
  2143. "__type__": "cc.CompPrefabInfo",
  2144. "fileId": "a5urJNWmpJJoXdBQ0FAroP"
  2145. },
  2146. {
  2147. "__type__": "cc.Widget",
  2148. "_name": "",
  2149. "_objFlags": 0,
  2150. "node": {
  2151. "__id__": 30
  2152. },
  2153. "_enabled": true,
  2154. "__prefab": {
  2155. "__id__": 72
  2156. },
  2157. "_alignFlags": 45,
  2158. "_target": null,
  2159. "_left": 0,
  2160. "_right": 0,
  2161. "_top": 0,
  2162. "_bottom": 0,
  2163. "_horizontalCenter": 0,
  2164. "_verticalCenter": 0,
  2165. "_isAbsLeft": true,
  2166. "_isAbsRight": true,
  2167. "_isAbsTop": true,
  2168. "_isAbsBottom": true,
  2169. "_isAbsHorizontalCenter": true,
  2170. "_isAbsVerticalCenter": true,
  2171. "_originalWidth": 100,
  2172. "_originalHeight": 100,
  2173. "_alignMode": 2,
  2174. "_lockFlags": 0,
  2175. "_id": ""
  2176. },
  2177. {
  2178. "__type__": "cc.CompPrefabInfo",
  2179. "fileId": "5c+S0xLfRNsroM7WHVfXww"
  2180. },
  2181. {
  2182. "__type__": "cc.PrefabInfo",
  2183. "root": {
  2184. "__id__": 1
  2185. },
  2186. "asset": {
  2187. "__id__": 0
  2188. },
  2189. "fileId": "61llBfRFRE4KH++6KvD/Ll",
  2190. "instance": null,
  2191. "targetOverrides": null,
  2192. "nestedPrefabInstanceRoots": null
  2193. },
  2194. {
  2195. "__type__": "cc.Node",
  2196. "_name": "floor",
  2197. "_objFlags": 0,
  2198. "_parent": {
  2199. "__id__": 1
  2200. },
  2201. "_children": [],
  2202. "_active": true,
  2203. "_components": [
  2204. {
  2205. "__id__": 75
  2206. },
  2207. {
  2208. "__id__": 77
  2209. },
  2210. {
  2211. "__id__": 79
  2212. },
  2213. {
  2214. "__id__": 81
  2215. }
  2216. ],
  2217. "_prefab": {
  2218. "__id__": 83
  2219. },
  2220. "_lpos": {
  2221. "__type__": "cc.Vec3",
  2222. "x": 0,
  2223. "y": -651.298,
  2224. "z": 0
  2225. },
  2226. "_lrot": {
  2227. "__type__": "cc.Quat",
  2228. "x": 0,
  2229. "y": 0,
  2230. "z": 0,
  2231. "w": 1
  2232. },
  2233. "_lscale": {
  2234. "__type__": "cc.Vec3",
  2235. "x": 1,
  2236. "y": 1,
  2237. "z": 1
  2238. },
  2239. "_mobility": 0,
  2240. "_layer": 33554432,
  2241. "_euler": {
  2242. "__type__": "cc.Vec3",
  2243. "x": 0,
  2244. "y": 0,
  2245. "z": 0
  2246. },
  2247. "_id": ""
  2248. },
  2249. {
  2250. "__type__": "cc.UITransform",
  2251. "_name": "",
  2252. "_objFlags": 0,
  2253. "node": {
  2254. "__id__": 74
  2255. },
  2256. "_enabled": true,
  2257. "__prefab": {
  2258. "__id__": 76
  2259. },
  2260. "_contentSize": {
  2261. "__type__": "cc.Size",
  2262. "width": 2000,
  2263. "height": 100
  2264. },
  2265. "_anchorPoint": {
  2266. "__type__": "cc.Vec2",
  2267. "x": 0.5,
  2268. "y": 0.5
  2269. },
  2270. "_id": ""
  2271. },
  2272. {
  2273. "__type__": "cc.CompPrefabInfo",
  2274. "fileId": "cawz/MmhtF2rFAcix9G/65"
  2275. },
  2276. {
  2277. "__type__": "cc.Sprite",
  2278. "_name": "",
  2279. "_objFlags": 0,
  2280. "node": {
  2281. "__id__": 74
  2282. },
  2283. "_enabled": true,
  2284. "__prefab": {
  2285. "__id__": 78
  2286. },
  2287. "_customMaterial": null,
  2288. "_srcBlendFactor": 2,
  2289. "_dstBlendFactor": 4,
  2290. "_color": {
  2291. "__type__": "cc.Color",
  2292. "r": 248,
  2293. "g": 10,
  2294. "b": 10,
  2295. "a": 255
  2296. },
  2297. "_spriteFrame": null,
  2298. "_type": 0,
  2299. "_fillType": 0,
  2300. "_sizeMode": 0,
  2301. "_fillCenter": {
  2302. "__type__": "cc.Vec2",
  2303. "x": 0,
  2304. "y": 0
  2305. },
  2306. "_fillStart": 0,
  2307. "_fillRange": 0,
  2308. "_isTrimmedMode": true,
  2309. "_useGrayscale": false,
  2310. "_atlas": null,
  2311. "_id": ""
  2312. },
  2313. {
  2314. "__type__": "cc.CompPrefabInfo",
  2315. "fileId": "4fmQaYFTRPYLLLBOD89daI"
  2316. },
  2317. {
  2318. "__type__": "cc.RigidBody2D",
  2319. "_name": "",
  2320. "_objFlags": 0,
  2321. "node": {
  2322. "__id__": 74
  2323. },
  2324. "_enabled": true,
  2325. "__prefab": {
  2326. "__id__": 80
  2327. },
  2328. "enabledContactListener": true,
  2329. "bullet": false,
  2330. "awakeOnLoad": true,
  2331. "_group": 1,
  2332. "_type": 1,
  2333. "_allowSleep": true,
  2334. "_gravityScale": 1,
  2335. "_linearDamping": 0,
  2336. "_angularDamping": 0,
  2337. "_linearVelocity": {
  2338. "__type__": "cc.Vec2",
  2339. "x": 0,
  2340. "y": 0
  2341. },
  2342. "_angularVelocity": 0,
  2343. "_fixedRotation": false,
  2344. "_id": ""
  2345. },
  2346. {
  2347. "__type__": "cc.CompPrefabInfo",
  2348. "fileId": "c9kL7JldNOha8whQ7TTgpr"
  2349. },
  2350. {
  2351. "__type__": "cc.BoxCollider2D",
  2352. "_name": "",
  2353. "_objFlags": 0,
  2354. "node": {
  2355. "__id__": 74
  2356. },
  2357. "_enabled": true,
  2358. "__prefab": {
  2359. "__id__": 82
  2360. },
  2361. "tag": 0,
  2362. "_group": 1,
  2363. "_density": 1,
  2364. "_sensor": false,
  2365. "_friction": 0.2,
  2366. "_restitution": 0,
  2367. "_offset": {
  2368. "__type__": "cc.Vec2",
  2369. "x": 0,
  2370. "y": 0
  2371. },
  2372. "_size": {
  2373. "__type__": "cc.Size",
  2374. "width": 1600,
  2375. "height": 100
  2376. },
  2377. "_id": ""
  2378. },
  2379. {
  2380. "__type__": "cc.CompPrefabInfo",
  2381. "fileId": "5dRUI/c+5AtaVal6tBrylW"
  2382. },
  2383. {
  2384. "__type__": "cc.PrefabInfo",
  2385. "root": {
  2386. "__id__": 1
  2387. },
  2388. "asset": {
  2389. "__id__": 0
  2390. },
  2391. "fileId": "19A2zwsWxGpacPvJ/duXnX",
  2392. "instance": null,
  2393. "targetOverrides": null,
  2394. "nestedPrefabInstanceRoots": null
  2395. },
  2396. {
  2397. "__type__": "cc.UITransform",
  2398. "_name": "",
  2399. "_objFlags": 0,
  2400. "node": {
  2401. "__id__": 1
  2402. },
  2403. "_enabled": true,
  2404. "__prefab": {
  2405. "__id__": 85
  2406. },
  2407. "_contentSize": {
  2408. "__type__": "cc.Size",
  2409. "width": 1406,
  2410. "height": 1220
  2411. },
  2412. "_anchorPoint": {
  2413. "__type__": "cc.Vec2",
  2414. "x": 0.5,
  2415. "y": 0.5
  2416. },
  2417. "_id": ""
  2418. },
  2419. {
  2420. "__type__": "cc.CompPrefabInfo",
  2421. "fileId": "05xw2e7ipMsq6ZO/PjsttS"
  2422. },
  2423. {
  2424. "__type__": "cc.Sprite",
  2425. "_name": "",
  2426. "_objFlags": 0,
  2427. "node": {
  2428. "__id__": 1
  2429. },
  2430. "_enabled": true,
  2431. "__prefab": {
  2432. "__id__": 87
  2433. },
  2434. "_customMaterial": null,
  2435. "_srcBlendFactor": 2,
  2436. "_dstBlendFactor": 4,
  2437. "_color": {
  2438. "__type__": "cc.Color",
  2439. "r": 255,
  2440. "g": 255,
  2441. "b": 255,
  2442. "a": 255
  2443. },
  2444. "_spriteFrame": {
  2445. "__uuid__": "05a3cbcb-f807-4d22-bc8b-5758b651f4bd@f9941",
  2446. "__expectedType__": "cc.SpriteFrame"
  2447. },
  2448. "_type": 0,
  2449. "_fillType": 0,
  2450. "_sizeMode": 1,
  2451. "_fillCenter": {
  2452. "__type__": "cc.Vec2",
  2453. "x": 0,
  2454. "y": 0
  2455. },
  2456. "_fillStart": 0,
  2457. "_fillRange": 0,
  2458. "_isTrimmedMode": true,
  2459. "_useGrayscale": false,
  2460. "_atlas": null,
  2461. "_id": ""
  2462. },
  2463. {
  2464. "__type__": "cc.CompPrefabInfo",
  2465. "fileId": "0aQJ3/wGxHCa6nRyhM9P2m"
  2466. },
  2467. {
  2468. "__type__": "608ccBwdPhH27YwkGx6eB4W",
  2469. "_name": "",
  2470. "_objFlags": 0,
  2471. "node": {
  2472. "__id__": 1
  2473. },
  2474. "_enabled": true,
  2475. "__prefab": {
  2476. "__id__": 89
  2477. },
  2478. "uiManger": null,
  2479. "plane": {
  2480. "__id__": 12
  2481. },
  2482. "obstaclePrefab": [
  2483. {
  2484. "__id__": 35
  2485. },
  2486. {
  2487. "__id__": 45
  2488. },
  2489. {
  2490. "__id__": 55
  2491. }
  2492. ],
  2493. "stone_toppos": {
  2494. "__id__": 31
  2495. },
  2496. "minDuration": 12,
  2497. "maxDuration": 15,
  2498. "poolSize": 20,
  2499. "scoreBase": 5,
  2500. "_id": ""
  2501. },
  2502. {
  2503. "__type__": "cc.CompPrefabInfo",
  2504. "fileId": "96nY4U5p9MypOvKzU62Ec+"
  2505. },
  2506. {
  2507. "__type__": "cc.PrefabInfo",
  2508. "root": {
  2509. "__id__": 1
  2510. },
  2511. "asset": {
  2512. "__id__": 0
  2513. },
  2514. "fileId": "52c3R0caFALJkQBoIB8nwi",
  2515. "targetOverrides": null
  2516. }
  2517. ]