MapSpawner.fire 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. }
  10. },
  11. {
  12. "__type__": "cc.Scene",
  13. "_objFlags": 0,
  14. "_parent": null,
  15. "_children": [
  16. {
  17. "__id__": 2
  18. }
  19. ],
  20. "_active": false,
  21. "_components": [],
  22. "_prefab": null,
  23. "_opacity": 255,
  24. "_color": {
  25. "__type__": "cc.Color",
  26. "r": 255,
  27. "g": 255,
  28. "b": 255,
  29. "a": 255
  30. },
  31. "_contentSize": {
  32. "__type__": "cc.Size",
  33. "width": 0,
  34. "height": 0
  35. },
  36. "_anchorPoint": {
  37. "__type__": "cc.Vec2",
  38. "x": 0,
  39. "y": 0
  40. },
  41. "_trs": {
  42. "__type__": "TypedArray",
  43. "ctor": "Float64Array",
  44. "array": [
  45. 0,
  46. 0,
  47. 0,
  48. 0,
  49. 0,
  50. 0,
  51. 1,
  52. 1,
  53. 1,
  54. 1
  55. ]
  56. },
  57. "_is3DNode": true,
  58. "_groupIndex": 0,
  59. "groupIndex": 0,
  60. "autoReleaseAssets": false,
  61. "_id": "5c5f5b1b-f521-4045-b877-828446316200"
  62. },
  63. {
  64. "__type__": "cc.Node",
  65. "_name": "Canvas",
  66. "_objFlags": 0,
  67. "_parent": {
  68. "__id__": 1
  69. },
  70. "_children": [
  71. {
  72. "__id__": 3
  73. },
  74. {
  75. "__id__": 5
  76. }
  77. ],
  78. "_active": true,
  79. "_components": [
  80. {
  81. "__id__": 64
  82. }
  83. ],
  84. "_prefab": null,
  85. "_opacity": 255,
  86. "_color": {
  87. "__type__": "cc.Color",
  88. "r": 255,
  89. "g": 255,
  90. "b": 255,
  91. "a": 255
  92. },
  93. "_contentSize": {
  94. "__type__": "cc.Size",
  95. "width": 1280,
  96. "height": 720
  97. },
  98. "_anchorPoint": {
  99. "__type__": "cc.Vec2",
  100. "x": 0.5,
  101. "y": 0.5
  102. },
  103. "_trs": {
  104. "__type__": "TypedArray",
  105. "ctor": "Float64Array",
  106. "array": [
  107. 640,
  108. 360,
  109. 0,
  110. 0,
  111. 0,
  112. 0,
  113. 1,
  114. 1,
  115. 1,
  116. 1
  117. ]
  118. },
  119. "_eulerAngles": {
  120. "__type__": "cc.Vec3",
  121. "x": 0,
  122. "y": 0,
  123. "z": 0
  124. },
  125. "_skewX": 0,
  126. "_skewY": 0,
  127. "_is3DNode": false,
  128. "_groupIndex": 0,
  129. "groupIndex": 0,
  130. "_id": "83PB00sG5HT6xNDIla8SGA"
  131. },
  132. {
  133. "__type__": "cc.Node",
  134. "_name": "Main Camera",
  135. "_objFlags": 0,
  136. "_parent": {
  137. "__id__": 2
  138. },
  139. "_children": [],
  140. "_active": true,
  141. "_components": [
  142. {
  143. "__id__": 4
  144. }
  145. ],
  146. "_prefab": null,
  147. "_opacity": 255,
  148. "_color": {
  149. "__type__": "cc.Color",
  150. "r": 255,
  151. "g": 255,
  152. "b": 255,
  153. "a": 255
  154. },
  155. "_contentSize": {
  156. "__type__": "cc.Size",
  157. "width": 0,
  158. "height": 0
  159. },
  160. "_anchorPoint": {
  161. "__type__": "cc.Vec2",
  162. "x": 0.5,
  163. "y": 0.5
  164. },
  165. "_trs": {
  166. "__type__": "TypedArray",
  167. "ctor": "Float64Array",
  168. "array": [
  169. 0,
  170. 0,
  171. 232.0948028564453,
  172. 0,
  173. 0,
  174. 0,
  175. 1,
  176. 1,
  177. 1,
  178. 1
  179. ]
  180. },
  181. "_eulerAngles": {
  182. "__type__": "cc.Vec3",
  183. "x": 0,
  184. "y": 0,
  185. "z": 0
  186. },
  187. "_skewX": 0,
  188. "_skewY": 0,
  189. "_is3DNode": false,
  190. "_groupIndex": 0,
  191. "groupIndex": 0,
  192. "_id": "ca2OiHS/JJfIhlTbcmu0OD"
  193. },
  194. {
  195. "__type__": "cc.Camera",
  196. "_name": "",
  197. "_objFlags": 0,
  198. "node": {
  199. "__id__": 3
  200. },
  201. "_enabled": true,
  202. "_cullingMask": 4294967295,
  203. "_clearFlags": 7,
  204. "_backgroundColor": {
  205. "__type__": "cc.Color",
  206. "r": 0,
  207. "g": 0,
  208. "b": 0,
  209. "a": 255
  210. },
  211. "_depth": -1,
  212. "_zoomRatio": 1,
  213. "_targetTexture": null,
  214. "_fov": 60,
  215. "_orthoSize": 10,
  216. "_nearClip": 1,
  217. "_farClip": 4096,
  218. "_ortho": true,
  219. "_rect": {
  220. "__type__": "cc.Rect",
  221. "x": 0,
  222. "y": 0,
  223. "width": 1,
  224. "height": 1
  225. },
  226. "_renderStages": 1,
  227. "_id": "77wE6bkA9IZI30Xix4cl4e"
  228. },
  229. {
  230. "__type__": "cc.Node",
  231. "_name": "MapSpawner",
  232. "_objFlags": 0,
  233. "_parent": {
  234. "__id__": 2
  235. },
  236. "_children": [
  237. {
  238. "__id__": 6
  239. },
  240. {
  241. "__id__": 9
  242. },
  243. {
  244. "__id__": 15
  245. },
  246. {
  247. "__id__": 21
  248. },
  249. {
  250. "__id__": 27
  251. },
  252. {
  253. "__id__": 33
  254. },
  255. {
  256. "__id__": 39
  257. },
  258. {
  259. "__id__": 45
  260. },
  261. {
  262. "__id__": 48
  263. },
  264. {
  265. "__id__": 51
  266. },
  267. {
  268. "__id__": 54
  269. },
  270. {
  271. "__id__": 57
  272. },
  273. {
  274. "__id__": 60
  275. }
  276. ],
  277. "_active": true,
  278. "_components": [
  279. {
  280. "__id__": 63
  281. }
  282. ],
  283. "_prefab": null,
  284. "_opacity": 255,
  285. "_color": {
  286. "__type__": "cc.Color",
  287. "r": 255,
  288. "g": 255,
  289. "b": 255,
  290. "a": 255
  291. },
  292. "_contentSize": {
  293. "__type__": "cc.Size",
  294. "width": 0,
  295. "height": 0
  296. },
  297. "_anchorPoint": {
  298. "__type__": "cc.Vec2",
  299. "x": 0.5,
  300. "y": 0.5
  301. },
  302. "_trs": {
  303. "__type__": "TypedArray",
  304. "ctor": "Float64Array",
  305. "array": [
  306. 0,
  307. 0,
  308. 0,
  309. 0,
  310. 0,
  311. 0,
  312. 1,
  313. 1,
  314. 1,
  315. 1
  316. ]
  317. },
  318. "_eulerAngles": {
  319. "__type__": "cc.Vec3",
  320. "x": 0,
  321. "y": 0,
  322. "z": 0
  323. },
  324. "_skewX": 0,
  325. "_skewY": 0,
  326. "_is3DNode": false,
  327. "_groupIndex": 0,
  328. "groupIndex": 0,
  329. "_id": "60i+MGWVpMrr1aSseDsByw"
  330. },
  331. {
  332. "__type__": "cc.Node",
  333. "_name": "BG",
  334. "_objFlags": 0,
  335. "_parent": {
  336. "__id__": 5
  337. },
  338. "_children": [],
  339. "_active": true,
  340. "_components": [
  341. {
  342. "__id__": 7
  343. }
  344. ],
  345. "_prefab": {
  346. "__id__": 8
  347. },
  348. "_opacity": 255,
  349. "_color": {
  350. "__type__": "cc.Color",
  351. "r": 255,
  352. "g": 255,
  353. "b": 255,
  354. "a": 255
  355. },
  356. "_contentSize": {
  357. "__type__": "cc.Size",
  358. "width": 1280,
  359. "height": 720
  360. },
  361. "_anchorPoint": {
  362. "__type__": "cc.Vec2",
  363. "x": 0.5,
  364. "y": 0.5
  365. },
  366. "_trs": {
  367. "__type__": "TypedArray",
  368. "ctor": "Float64Array",
  369. "array": [
  370. 0,
  371. 0,
  372. 0,
  373. 0,
  374. 0,
  375. 0,
  376. 1,
  377. 1,
  378. 1,
  379. 1
  380. ]
  381. },
  382. "_eulerAngles": {
  383. "__type__": "cc.Vec3",
  384. "x": 0,
  385. "y": 0,
  386. "z": 0
  387. },
  388. "_skewX": 0,
  389. "_skewY": 0,
  390. "_is3DNode": false,
  391. "_groupIndex": 0,
  392. "groupIndex": 0,
  393. "_id": "8fuLqzqN9F6phKwneZH7jL"
  394. },
  395. {
  396. "__type__": "cc.Sprite",
  397. "_name": "",
  398. "_objFlags": 0,
  399. "node": {
  400. "__id__": 6
  401. },
  402. "_enabled": true,
  403. "_materials": [
  404. {
  405. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  406. }
  407. ],
  408. "_srcBlendFactor": 770,
  409. "_dstBlendFactor": 771,
  410. "_spriteFrame": {
  411. "__uuid__": "d5a261c4-bb4a-4d4d-8409-98a53a603e91"
  412. },
  413. "_type": 0,
  414. "_sizeMode": 1,
  415. "_fillType": 0,
  416. "_fillCenter": {
  417. "__type__": "cc.Vec2",
  418. "x": 0,
  419. "y": 0
  420. },
  421. "_fillStart": 0,
  422. "_fillRange": 0,
  423. "_isTrimmedMode": true,
  424. "_atlas": null,
  425. "_id": "16aevjTfNMopkmF2CglSKp"
  426. },
  427. {
  428. "__type__": "cc.PrefabInfo",
  429. "root": {
  430. "__id__": 6
  431. },
  432. "asset": {
  433. "__uuid__": "78978e34-178d-4e7b-a84e-10055d4363b4"
  434. },
  435. "fileId": "07kMnZbDhBX5alQKJQftJR",
  436. "sync": false
  437. },
  438. {
  439. "__type__": "cc.Node",
  440. "_name": "Ground",
  441. "_objFlags": 0,
  442. "_parent": {
  443. "__id__": 5
  444. },
  445. "_children": [],
  446. "_active": true,
  447. "_components": [
  448. {
  449. "__id__": 10
  450. },
  451. {
  452. "__id__": 11
  453. },
  454. {
  455. "__id__": 12
  456. },
  457. {
  458. "__id__": 13
  459. }
  460. ],
  461. "_prefab": {
  462. "__id__": 14
  463. },
  464. "_opacity": 255,
  465. "_color": {
  466. "__type__": "cc.Color",
  467. "r": 255,
  468. "g": 255,
  469. "b": 255,
  470. "a": 255
  471. },
  472. "_contentSize": {
  473. "__type__": "cc.Size",
  474. "width": 630,
  475. "height": 30
  476. },
  477. "_anchorPoint": {
  478. "__type__": "cc.Vec2",
  479. "x": 0.5,
  480. "y": 0.5
  481. },
  482. "_trs": {
  483. "__type__": "TypedArray",
  484. "ctor": "Float64Array",
  485. "array": [
  486. 305,
  487. -78,
  488. 0,
  489. 0,
  490. 0,
  491. 0.22920039296150208,
  492. 0.9733792543411255,
  493. 1,
  494. 1,
  495. 1
  496. ]
  497. },
  498. "_eulerAngles": {
  499. "__type__": "cc.Vec3",
  500. "x": 0,
  501. "y": 0,
  502. "z": 26.5
  503. },
  504. "_skewX": 0,
  505. "_skewY": 0,
  506. "_is3DNode": false,
  507. "_groupIndex": 0,
  508. "groupIndex": 0,
  509. "_id": "0d/KKrx81H7ZJZVkhG7gOv"
  510. },
  511. {
  512. "__type__": "cc.Sprite",
  513. "_name": "",
  514. "_objFlags": 0,
  515. "node": {
  516. "__id__": 9
  517. },
  518. "_enabled": true,
  519. "_materials": [
  520. {
  521. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  522. }
  523. ],
  524. "_srcBlendFactor": 770,
  525. "_dstBlendFactor": 771,
  526. "_spriteFrame": {
  527. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  528. },
  529. "_type": 0,
  530. "_sizeMode": 0,
  531. "_fillType": 0,
  532. "_fillCenter": {
  533. "__type__": "cc.Vec2",
  534. "x": 0,
  535. "y": 0
  536. },
  537. "_fillStart": 0,
  538. "_fillRange": 0,
  539. "_isTrimmedMode": true,
  540. "_atlas": null,
  541. "_id": "f1RwpwrhdHhamYbLiZZSdn"
  542. },
  543. {
  544. "__type__": "cc.RigidBody",
  545. "_name": "",
  546. "_objFlags": 0,
  547. "node": {
  548. "__id__": 9
  549. },
  550. "_enabled": true,
  551. "_type": 0,
  552. "_allowSleep": true,
  553. "_gravityScale": 0,
  554. "_linearDamping": 0,
  555. "_angularDamping": 0,
  556. "_linearVelocity": {
  557. "__type__": "cc.Vec2",
  558. "x": 0,
  559. "y": 0
  560. },
  561. "_angularVelocity": 0,
  562. "_fixedRotation": false,
  563. "enabledContactListener": false,
  564. "bullet": false,
  565. "awakeOnLoad": true,
  566. "_id": "35hw8ccjdHi7Zs0OwuBdWA"
  567. },
  568. {
  569. "__type__": "cc.PhysicsBoxCollider",
  570. "_name": "",
  571. "_objFlags": 0,
  572. "node": {
  573. "__id__": 9
  574. },
  575. "_enabled": true,
  576. "tag": 0,
  577. "_density": 1,
  578. "_sensor": false,
  579. "_friction": 0,
  580. "_restitution": 0,
  581. "body": null,
  582. "_offset": {
  583. "__type__": "cc.Vec2",
  584. "x": 0,
  585. "y": 0
  586. },
  587. "_size": {
  588. "__type__": "cc.Size",
  589. "width": 0,
  590. "height": 0
  591. },
  592. "_id": "8d6Ab55+9LtJ2p4x7L38Qh"
  593. },
  594. {
  595. "__type__": "cc.BoxCollider",
  596. "_name": "",
  597. "_objFlags": 0,
  598. "node": {
  599. "__id__": 9
  600. },
  601. "_enabled": true,
  602. "tag": 0,
  603. "_offset": {
  604. "__type__": "cc.Vec2",
  605. "x": 0,
  606. "y": 0
  607. },
  608. "_size": {
  609. "__type__": "cc.Size",
  610. "width": 0,
  611. "height": 0
  612. },
  613. "_id": "adwebocXFAXKyczMuq0edp"
  614. },
  615. {
  616. "__type__": "cc.PrefabInfo",
  617. "root": {
  618. "__id__": 9
  619. },
  620. "asset": {
  621. "__uuid__": "8ad8923a-0922-4916-aea3-3abd0dc760e6"
  622. },
  623. "fileId": "21OKmt5mhHkYiYYxacsWR0",
  624. "sync": false
  625. },
  626. {
  627. "__type__": "cc.Node",
  628. "_name": "Ground",
  629. "_objFlags": 0,
  630. "_parent": {
  631. "__id__": 5
  632. },
  633. "_children": [],
  634. "_active": true,
  635. "_components": [
  636. {
  637. "__id__": 16
  638. },
  639. {
  640. "__id__": 17
  641. },
  642. {
  643. "__id__": 18
  644. },
  645. {
  646. "__id__": 19
  647. }
  648. ],
  649. "_prefab": {
  650. "__id__": 20
  651. },
  652. "_opacity": 255,
  653. "_color": {
  654. "__type__": "cc.Color",
  655. "r": 255,
  656. "g": 255,
  657. "b": 255,
  658. "a": 255
  659. },
  660. "_contentSize": {
  661. "__type__": "cc.Size",
  662. "width": 630,
  663. "height": 30
  664. },
  665. "_anchorPoint": {
  666. "__type__": "cc.Vec2",
  667. "x": 0.5,
  668. "y": 0.5
  669. },
  670. "_trs": {
  671. "__type__": "TypedArray",
  672. "ctor": "Float64Array",
  673. "array": [
  674. -305,
  675. -78,
  676. 0,
  677. 0,
  678. 0,
  679. -0.22920039296150208,
  680. 0.9733792543411255,
  681. 1,
  682. 1,
  683. 1
  684. ]
  685. },
  686. "_eulerAngles": {
  687. "__type__": "cc.Vec3",
  688. "x": 0,
  689. "y": 0,
  690. "z": -26.5
  691. },
  692. "_skewX": 0,
  693. "_skewY": 0,
  694. "_is3DNode": false,
  695. "_groupIndex": 0,
  696. "groupIndex": 0,
  697. "_id": "06lcO5n41KeIOJymBGkJts"
  698. },
  699. {
  700. "__type__": "cc.Sprite",
  701. "_name": "",
  702. "_objFlags": 0,
  703. "node": {
  704. "__id__": 15
  705. },
  706. "_enabled": true,
  707. "_materials": [
  708. {
  709. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  710. }
  711. ],
  712. "_srcBlendFactor": 770,
  713. "_dstBlendFactor": 771,
  714. "_spriteFrame": {
  715. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  716. },
  717. "_type": 0,
  718. "_sizeMode": 0,
  719. "_fillType": 0,
  720. "_fillCenter": {
  721. "__type__": "cc.Vec2",
  722. "x": 0,
  723. "y": 0
  724. },
  725. "_fillStart": 0,
  726. "_fillRange": 0,
  727. "_isTrimmedMode": true,
  728. "_atlas": null,
  729. "_id": "d5BbZ41t9PfZ2HusDZdCgJ"
  730. },
  731. {
  732. "__type__": "cc.RigidBody",
  733. "_name": "",
  734. "_objFlags": 0,
  735. "node": {
  736. "__id__": 15
  737. },
  738. "_enabled": true,
  739. "_type": 0,
  740. "_allowSleep": true,
  741. "_gravityScale": 0,
  742. "_linearDamping": 0,
  743. "_angularDamping": 0,
  744. "_linearVelocity": {
  745. "__type__": "cc.Vec2",
  746. "x": 0,
  747. "y": 0
  748. },
  749. "_angularVelocity": 0,
  750. "_fixedRotation": false,
  751. "enabledContactListener": false,
  752. "bullet": false,
  753. "awakeOnLoad": true,
  754. "_id": "b58aG+RVJCG5xhO5aAoRgf"
  755. },
  756. {
  757. "__type__": "cc.PhysicsBoxCollider",
  758. "_name": "",
  759. "_objFlags": 0,
  760. "node": {
  761. "__id__": 15
  762. },
  763. "_enabled": true,
  764. "tag": 0,
  765. "_density": 1,
  766. "_sensor": false,
  767. "_friction": 0,
  768. "_restitution": 0,
  769. "body": null,
  770. "_offset": {
  771. "__type__": "cc.Vec2",
  772. "x": 0,
  773. "y": 0
  774. },
  775. "_size": {
  776. "__type__": "cc.Size",
  777. "width": 0,
  778. "height": 0
  779. },
  780. "_id": "1cjsYlEZ1FEoRo7hzM8XmM"
  781. },
  782. {
  783. "__type__": "cc.BoxCollider",
  784. "_name": "",
  785. "_objFlags": 0,
  786. "node": {
  787. "__id__": 15
  788. },
  789. "_enabled": true,
  790. "tag": 0,
  791. "_offset": {
  792. "__type__": "cc.Vec2",
  793. "x": 0,
  794. "y": 0
  795. },
  796. "_size": {
  797. "__type__": "cc.Size",
  798. "width": 0,
  799. "height": 0
  800. },
  801. "_id": "709sRbc7lEEoNl20e4OjUp"
  802. },
  803. {
  804. "__type__": "cc.PrefabInfo",
  805. "root": {
  806. "__id__": 15
  807. },
  808. "asset": {
  809. "__uuid__": "8ad8923a-0922-4916-aea3-3abd0dc760e6"
  810. },
  811. "fileId": "21OKmt5mhHkYiYYxacsWR0",
  812. "sync": false
  813. },
  814. {
  815. "__type__": "cc.Node",
  816. "_name": "Ground",
  817. "_objFlags": 0,
  818. "_parent": {
  819. "__id__": 5
  820. },
  821. "_children": [],
  822. "_active": true,
  823. "_components": [
  824. {
  825. "__id__": 22
  826. },
  827. {
  828. "__id__": 23
  829. },
  830. {
  831. "__id__": 24
  832. },
  833. {
  834. "__id__": 25
  835. }
  836. ],
  837. "_prefab": {
  838. "__id__": 26
  839. },
  840. "_opacity": 255,
  841. "_color": {
  842. "__type__": "cc.Color",
  843. "r": 255,
  844. "g": 255,
  845. "b": 255,
  846. "a": 255
  847. },
  848. "_contentSize": {
  849. "__type__": "cc.Size",
  850. "width": 150,
  851. "height": 30
  852. },
  853. "_anchorPoint": {
  854. "__type__": "cc.Vec2",
  855. "x": 0.5,
  856. "y": 0.5
  857. },
  858. "_trs": {
  859. "__type__": "TypedArray",
  860. "ctor": "Float64Array",
  861. "array": [
  862. 0,
  863. -218,
  864. 0,
  865. 0,
  866. 0,
  867. 0,
  868. 1,
  869. 1,
  870. 1,
  871. 1
  872. ]
  873. },
  874. "_eulerAngles": {
  875. "__type__": "cc.Vec3",
  876. "x": 0,
  877. "y": 0,
  878. "z": 0
  879. },
  880. "_skewX": 0,
  881. "_skewY": 0,
  882. "_is3DNode": false,
  883. "_groupIndex": 0,
  884. "groupIndex": 0,
  885. "_id": "3b8InZfaxMo5PpTSZJspkb"
  886. },
  887. {
  888. "__type__": "cc.Sprite",
  889. "_name": "",
  890. "_objFlags": 0,
  891. "node": {
  892. "__id__": 21
  893. },
  894. "_enabled": true,
  895. "_materials": [
  896. {
  897. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  898. }
  899. ],
  900. "_srcBlendFactor": 770,
  901. "_dstBlendFactor": 771,
  902. "_spriteFrame": {
  903. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  904. },
  905. "_type": 0,
  906. "_sizeMode": 0,
  907. "_fillType": 0,
  908. "_fillCenter": {
  909. "__type__": "cc.Vec2",
  910. "x": 0,
  911. "y": 0
  912. },
  913. "_fillStart": 0,
  914. "_fillRange": 0,
  915. "_isTrimmedMode": true,
  916. "_atlas": null,
  917. "_id": "bbNXZWyBhBbY1WGdHqLE+Q"
  918. },
  919. {
  920. "__type__": "cc.RigidBody",
  921. "_name": "",
  922. "_objFlags": 0,
  923. "node": {
  924. "__id__": 21
  925. },
  926. "_enabled": true,
  927. "_type": 0,
  928. "_allowSleep": true,
  929. "_gravityScale": 0,
  930. "_linearDamping": 0,
  931. "_angularDamping": 0,
  932. "_linearVelocity": {
  933. "__type__": "cc.Vec2",
  934. "x": 0,
  935. "y": 0
  936. },
  937. "_angularVelocity": 0,
  938. "_fixedRotation": false,
  939. "enabledContactListener": false,
  940. "bullet": false,
  941. "awakeOnLoad": true,
  942. "_id": "45HOW5jT9Mw48vKBIkpr2y"
  943. },
  944. {
  945. "__type__": "cc.PhysicsBoxCollider",
  946. "_name": "",
  947. "_objFlags": 0,
  948. "node": {
  949. "__id__": 21
  950. },
  951. "_enabled": true,
  952. "tag": 0,
  953. "_density": 1,
  954. "_sensor": false,
  955. "_friction": 0,
  956. "_restitution": 0,
  957. "body": null,
  958. "_offset": {
  959. "__type__": "cc.Vec2",
  960. "x": 0,
  961. "y": 0
  962. },
  963. "_size": {
  964. "__type__": "cc.Size",
  965. "width": 0,
  966. "height": 0
  967. },
  968. "_id": "f12GU0ASZLx4p57OXVwmHg"
  969. },
  970. {
  971. "__type__": "cc.BoxCollider",
  972. "_name": "",
  973. "_objFlags": 0,
  974. "node": {
  975. "__id__": 21
  976. },
  977. "_enabled": true,
  978. "tag": 0,
  979. "_offset": {
  980. "__type__": "cc.Vec2",
  981. "x": 0,
  982. "y": 0
  983. },
  984. "_size": {
  985. "__type__": "cc.Size",
  986. "width": 0,
  987. "height": 0
  988. },
  989. "_id": "43nZnl3eJFhZCSB+a9Q4Mg"
  990. },
  991. {
  992. "__type__": "cc.PrefabInfo",
  993. "root": {
  994. "__id__": 21
  995. },
  996. "asset": {
  997. "__uuid__": "8ad8923a-0922-4916-aea3-3abd0dc760e6"
  998. },
  999. "fileId": "21OKmt5mhHkYiYYxacsWR0",
  1000. "sync": false
  1001. },
  1002. {
  1003. "__type__": "cc.Node",
  1004. "_name": "Ground",
  1005. "_objFlags": 0,
  1006. "_parent": {
  1007. "__id__": 5
  1008. },
  1009. "_children": [],
  1010. "_active": true,
  1011. "_components": [
  1012. {
  1013. "__id__": 28
  1014. },
  1015. {
  1016. "__id__": 29
  1017. },
  1018. {
  1019. "__id__": 30
  1020. },
  1021. {
  1022. "__id__": 31
  1023. }
  1024. ],
  1025. "_prefab": {
  1026. "__id__": 32
  1027. },
  1028. "_opacity": 255,
  1029. "_color": {
  1030. "__type__": "cc.Color",
  1031. "r": 255,
  1032. "g": 255,
  1033. "b": 255,
  1034. "a": 255
  1035. },
  1036. "_contentSize": {
  1037. "__type__": "cc.Size",
  1038. "width": 350,
  1039. "height": 30
  1040. },
  1041. "_anchorPoint": {
  1042. "__type__": "cc.Vec2",
  1043. "x": 0.5,
  1044. "y": 0.5
  1045. },
  1046. "_trs": {
  1047. "__type__": "TypedArray",
  1048. "ctor": "Float64Array",
  1049. "array": [
  1050. 530,
  1051. 165,
  1052. 0,
  1053. 0,
  1054. 0,
  1055. -0.7071067690849304,
  1056. 0.7071067690849304,
  1057. 1,
  1058. 1,
  1059. 1
  1060. ]
  1061. },
  1062. "_eulerAngles": {
  1063. "__type__": "cc.Vec3",
  1064. "x": 0,
  1065. "y": 0,
  1066. "z": -90
  1067. },
  1068. "_skewX": 0,
  1069. "_skewY": 0,
  1070. "_is3DNode": false,
  1071. "_groupIndex": 0,
  1072. "groupIndex": 0,
  1073. "_id": "0c2Zd/oPVIXZp+ThFBn2pZ"
  1074. },
  1075. {
  1076. "__type__": "cc.Sprite",
  1077. "_name": "",
  1078. "_objFlags": 0,
  1079. "node": {
  1080. "__id__": 27
  1081. },
  1082. "_enabled": true,
  1083. "_materials": [
  1084. {
  1085. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1086. }
  1087. ],
  1088. "_srcBlendFactor": 770,
  1089. "_dstBlendFactor": 771,
  1090. "_spriteFrame": {
  1091. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1092. },
  1093. "_type": 0,
  1094. "_sizeMode": 0,
  1095. "_fillType": 0,
  1096. "_fillCenter": {
  1097. "__type__": "cc.Vec2",
  1098. "x": 0,
  1099. "y": 0
  1100. },
  1101. "_fillStart": 0,
  1102. "_fillRange": 0,
  1103. "_isTrimmedMode": true,
  1104. "_atlas": null,
  1105. "_id": "cekupnpCBD/6uwG4+H3pWk"
  1106. },
  1107. {
  1108. "__type__": "cc.RigidBody",
  1109. "_name": "",
  1110. "_objFlags": 0,
  1111. "node": {
  1112. "__id__": 27
  1113. },
  1114. "_enabled": true,
  1115. "_type": 0,
  1116. "_allowSleep": true,
  1117. "_gravityScale": 0,
  1118. "_linearDamping": 0,
  1119. "_angularDamping": 0,
  1120. "_linearVelocity": {
  1121. "__type__": "cc.Vec2",
  1122. "x": 0,
  1123. "y": 0
  1124. },
  1125. "_angularVelocity": 0,
  1126. "_fixedRotation": false,
  1127. "enabledContactListener": false,
  1128. "bullet": false,
  1129. "awakeOnLoad": true,
  1130. "_id": "77IfUxrg1FgrK0hHggAB83"
  1131. },
  1132. {
  1133. "__type__": "cc.PhysicsBoxCollider",
  1134. "_name": "",
  1135. "_objFlags": 0,
  1136. "node": {
  1137. "__id__": 27
  1138. },
  1139. "_enabled": true,
  1140. "tag": 0,
  1141. "_density": 1,
  1142. "_sensor": false,
  1143. "_friction": 0,
  1144. "_restitution": 0,
  1145. "body": null,
  1146. "_offset": {
  1147. "__type__": "cc.Vec2",
  1148. "x": 0,
  1149. "y": 0
  1150. },
  1151. "_size": {
  1152. "__type__": "cc.Size",
  1153. "width": 0,
  1154. "height": 0
  1155. },
  1156. "_id": "bafxovHEVFjoMFoXhXqXY5"
  1157. },
  1158. {
  1159. "__type__": "cc.BoxCollider",
  1160. "_name": "",
  1161. "_objFlags": 0,
  1162. "node": {
  1163. "__id__": 27
  1164. },
  1165. "_enabled": true,
  1166. "tag": 0,
  1167. "_offset": {
  1168. "__type__": "cc.Vec2",
  1169. "x": 0,
  1170. "y": 0
  1171. },
  1172. "_size": {
  1173. "__type__": "cc.Size",
  1174. "width": 0,
  1175. "height": 0
  1176. },
  1177. "_id": "f4LTBRzpdCTKBTmI8PXXVJ"
  1178. },
  1179. {
  1180. "__type__": "cc.PrefabInfo",
  1181. "root": {
  1182. "__id__": 27
  1183. },
  1184. "asset": {
  1185. "__uuid__": "8ad8923a-0922-4916-aea3-3abd0dc760e6"
  1186. },
  1187. "fileId": "21OKmt5mhHkYiYYxacsWR0",
  1188. "sync": false
  1189. },
  1190. {
  1191. "__type__": "cc.Node",
  1192. "_name": "Ground",
  1193. "_objFlags": 0,
  1194. "_parent": {
  1195. "__id__": 5
  1196. },
  1197. "_children": [],
  1198. "_active": true,
  1199. "_components": [
  1200. {
  1201. "__id__": 34
  1202. },
  1203. {
  1204. "__id__": 35
  1205. },
  1206. {
  1207. "__id__": 36
  1208. },
  1209. {
  1210. "__id__": 37
  1211. }
  1212. ],
  1213. "_prefab": {
  1214. "__id__": 38
  1215. },
  1216. "_opacity": 255,
  1217. "_color": {
  1218. "__type__": "cc.Color",
  1219. "r": 255,
  1220. "g": 255,
  1221. "b": 255,
  1222. "a": 255
  1223. },
  1224. "_contentSize": {
  1225. "__type__": "cc.Size",
  1226. "width": 350,
  1227. "height": 30
  1228. },
  1229. "_anchorPoint": {
  1230. "__type__": "cc.Vec2",
  1231. "x": 0.5,
  1232. "y": 0.5
  1233. },
  1234. "_trs": {
  1235. "__type__": "TypedArray",
  1236. "ctor": "Float64Array",
  1237. "array": [
  1238. -530,
  1239. 165,
  1240. 0,
  1241. 0,
  1242. 0,
  1243. 0.7071067690849304,
  1244. 0.7071067690849304,
  1245. 1,
  1246. 1,
  1247. 1
  1248. ]
  1249. },
  1250. "_eulerAngles": {
  1251. "__type__": "cc.Vec3",
  1252. "x": 0,
  1253. "y": 0,
  1254. "z": 90
  1255. },
  1256. "_skewX": 0,
  1257. "_skewY": 0,
  1258. "_is3DNode": false,
  1259. "_groupIndex": 0,
  1260. "groupIndex": 0,
  1261. "_id": "53KLgGJ7ZJZYo7X7GkFW3D"
  1262. },
  1263. {
  1264. "__type__": "cc.Sprite",
  1265. "_name": "",
  1266. "_objFlags": 0,
  1267. "node": {
  1268. "__id__": 33
  1269. },
  1270. "_enabled": true,
  1271. "_materials": [
  1272. {
  1273. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1274. }
  1275. ],
  1276. "_srcBlendFactor": 770,
  1277. "_dstBlendFactor": 771,
  1278. "_spriteFrame": {
  1279. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1280. },
  1281. "_type": 0,
  1282. "_sizeMode": 0,
  1283. "_fillType": 0,
  1284. "_fillCenter": {
  1285. "__type__": "cc.Vec2",
  1286. "x": 0,
  1287. "y": 0
  1288. },
  1289. "_fillStart": 0,
  1290. "_fillRange": 0,
  1291. "_isTrimmedMode": true,
  1292. "_atlas": null,
  1293. "_id": "44iHm0VQVEKaJ2MYF2Xkw0"
  1294. },
  1295. {
  1296. "__type__": "cc.RigidBody",
  1297. "_name": "",
  1298. "_objFlags": 0,
  1299. "node": {
  1300. "__id__": 33
  1301. },
  1302. "_enabled": true,
  1303. "_type": 0,
  1304. "_allowSleep": true,
  1305. "_gravityScale": 0,
  1306. "_linearDamping": 0,
  1307. "_angularDamping": 0,
  1308. "_linearVelocity": {
  1309. "__type__": "cc.Vec2",
  1310. "x": 0,
  1311. "y": 0
  1312. },
  1313. "_angularVelocity": 0,
  1314. "_fixedRotation": false,
  1315. "enabledContactListener": false,
  1316. "bullet": false,
  1317. "awakeOnLoad": true,
  1318. "_id": "c3jEECqVZJLJtDXE8ciyo2"
  1319. },
  1320. {
  1321. "__type__": "cc.PhysicsBoxCollider",
  1322. "_name": "",
  1323. "_objFlags": 0,
  1324. "node": {
  1325. "__id__": 33
  1326. },
  1327. "_enabled": true,
  1328. "tag": 0,
  1329. "_density": 1,
  1330. "_sensor": false,
  1331. "_friction": 0,
  1332. "_restitution": 0,
  1333. "body": null,
  1334. "_offset": {
  1335. "__type__": "cc.Vec2",
  1336. "x": 0,
  1337. "y": 0
  1338. },
  1339. "_size": {
  1340. "__type__": "cc.Size",
  1341. "width": 0,
  1342. "height": 0
  1343. },
  1344. "_id": "30UaHh7WVBSZT9kQCWO7j9"
  1345. },
  1346. {
  1347. "__type__": "cc.BoxCollider",
  1348. "_name": "",
  1349. "_objFlags": 0,
  1350. "node": {
  1351. "__id__": 33
  1352. },
  1353. "_enabled": true,
  1354. "tag": 0,
  1355. "_offset": {
  1356. "__type__": "cc.Vec2",
  1357. "x": 0,
  1358. "y": 0
  1359. },
  1360. "_size": {
  1361. "__type__": "cc.Size",
  1362. "width": 0,
  1363. "height": 0
  1364. },
  1365. "_id": "59VN2PQ09ARpD7QGXAI0aW"
  1366. },
  1367. {
  1368. "__type__": "cc.PrefabInfo",
  1369. "root": {
  1370. "__id__": 33
  1371. },
  1372. "asset": {
  1373. "__uuid__": "8ad8923a-0922-4916-aea3-3abd0dc760e6"
  1374. },
  1375. "fileId": "21OKmt5mhHkYiYYxacsWR0",
  1376. "sync": false
  1377. },
  1378. {
  1379. "__type__": "cc.Node",
  1380. "_name": "Ground",
  1381. "_objFlags": 0,
  1382. "_parent": {
  1383. "__id__": 5
  1384. },
  1385. "_children": [],
  1386. "_active": true,
  1387. "_components": [
  1388. {
  1389. "__id__": 40
  1390. },
  1391. {
  1392. "__id__": 41
  1393. },
  1394. {
  1395. "__id__": 42
  1396. },
  1397. {
  1398. "__id__": 43
  1399. }
  1400. ],
  1401. "_prefab": {
  1402. "__id__": 44
  1403. },
  1404. "_opacity": 255,
  1405. "_color": {
  1406. "__type__": "cc.Color",
  1407. "r": 255,
  1408. "g": 255,
  1409. "b": 255,
  1410. "a": 255
  1411. },
  1412. "_contentSize": {
  1413. "__type__": "cc.Size",
  1414. "width": 1200,
  1415. "height": 30
  1416. },
  1417. "_anchorPoint": {
  1418. "__type__": "cc.Vec2",
  1419. "x": 0.5,
  1420. "y": 0.5
  1421. },
  1422. "_trs": {
  1423. "__type__": "TypedArray",
  1424. "ctor": "Float64Array",
  1425. "array": [
  1426. 0,
  1427. 300,
  1428. 0,
  1429. 0,
  1430. 0,
  1431. 0,
  1432. 1,
  1433. 1,
  1434. 1,
  1435. 1
  1436. ]
  1437. },
  1438. "_eulerAngles": {
  1439. "__type__": "cc.Vec3",
  1440. "x": 0,
  1441. "y": 0,
  1442. "z": 0
  1443. },
  1444. "_skewX": 0,
  1445. "_skewY": 0,
  1446. "_is3DNode": false,
  1447. "_groupIndex": 0,
  1448. "groupIndex": 0,
  1449. "_id": "b2SPMDQsZPNo8Z/EjQGAoI"
  1450. },
  1451. {
  1452. "__type__": "cc.Sprite",
  1453. "_name": "",
  1454. "_objFlags": 0,
  1455. "node": {
  1456. "__id__": 39
  1457. },
  1458. "_enabled": true,
  1459. "_materials": [
  1460. {
  1461. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1462. }
  1463. ],
  1464. "_srcBlendFactor": 770,
  1465. "_dstBlendFactor": 771,
  1466. "_spriteFrame": {
  1467. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1468. },
  1469. "_type": 0,
  1470. "_sizeMode": 0,
  1471. "_fillType": 0,
  1472. "_fillCenter": {
  1473. "__type__": "cc.Vec2",
  1474. "x": 0,
  1475. "y": 0
  1476. },
  1477. "_fillStart": 0,
  1478. "_fillRange": 0,
  1479. "_isTrimmedMode": true,
  1480. "_atlas": null,
  1481. "_id": "89jL6ICAJP87Y1LdSm7i6u"
  1482. },
  1483. {
  1484. "__type__": "cc.RigidBody",
  1485. "_name": "",
  1486. "_objFlags": 0,
  1487. "node": {
  1488. "__id__": 39
  1489. },
  1490. "_enabled": true,
  1491. "_type": 0,
  1492. "_allowSleep": true,
  1493. "_gravityScale": 0,
  1494. "_linearDamping": 0,
  1495. "_angularDamping": 0,
  1496. "_linearVelocity": {
  1497. "__type__": "cc.Vec2",
  1498. "x": 0,
  1499. "y": 0
  1500. },
  1501. "_angularVelocity": 0,
  1502. "_fixedRotation": false,
  1503. "enabledContactListener": false,
  1504. "bullet": false,
  1505. "awakeOnLoad": true,
  1506. "_id": "3a7QRMDXRBtrVRNkip6KzR"
  1507. },
  1508. {
  1509. "__type__": "cc.PhysicsBoxCollider",
  1510. "_name": "",
  1511. "_objFlags": 0,
  1512. "node": {
  1513. "__id__": 39
  1514. },
  1515. "_enabled": true,
  1516. "tag": 0,
  1517. "_density": 1,
  1518. "_sensor": false,
  1519. "_friction": 0,
  1520. "_restitution": 0,
  1521. "body": null,
  1522. "_offset": {
  1523. "__type__": "cc.Vec2",
  1524. "x": 0,
  1525. "y": 0
  1526. },
  1527. "_size": {
  1528. "__type__": "cc.Size",
  1529. "width": 0,
  1530. "height": 0
  1531. },
  1532. "_id": "6alL3GKOVKZK/vKSutaX1o"
  1533. },
  1534. {
  1535. "__type__": "cc.BoxCollider",
  1536. "_name": "",
  1537. "_objFlags": 0,
  1538. "node": {
  1539. "__id__": 39
  1540. },
  1541. "_enabled": true,
  1542. "tag": 0,
  1543. "_offset": {
  1544. "__type__": "cc.Vec2",
  1545. "x": 0,
  1546. "y": 0
  1547. },
  1548. "_size": {
  1549. "__type__": "cc.Size",
  1550. "width": 0,
  1551. "height": 0
  1552. },
  1553. "_id": "1brHckTD9GLbYrDo060BBB"
  1554. },
  1555. {
  1556. "__type__": "cc.PrefabInfo",
  1557. "root": {
  1558. "__id__": 39
  1559. },
  1560. "asset": {
  1561. "__uuid__": "8ad8923a-0922-4916-aea3-3abd0dc760e6"
  1562. },
  1563. "fileId": "21OKmt5mhHkYiYYxacsWR0",
  1564. "sync": false
  1565. },
  1566. {
  1567. "__type__": "cc.Node",
  1568. "_name": "Box",
  1569. "_objFlags": 0,
  1570. "_parent": {
  1571. "__id__": 5
  1572. },
  1573. "_children": [],
  1574. "_active": true,
  1575. "_components": [
  1576. {
  1577. "__id__": 46
  1578. }
  1579. ],
  1580. "_prefab": {
  1581. "__id__": 47
  1582. },
  1583. "_opacity": 255,
  1584. "_color": {
  1585. "__type__": "cc.Color",
  1586. "r": 255,
  1587. "g": 255,
  1588. "b": 255,
  1589. "a": 255
  1590. },
  1591. "_contentSize": {
  1592. "__type__": "cc.Size",
  1593. "width": 50,
  1594. "height": 50
  1595. },
  1596. "_anchorPoint": {
  1597. "__type__": "cc.Vec2",
  1598. "x": 0.5,
  1599. "y": 0.5
  1600. },
  1601. "_trs": {
  1602. "__type__": "TypedArray",
  1603. "ctor": "Float64Array",
  1604. "array": [
  1605. -220,
  1606. 30,
  1607. 0,
  1608. 0,
  1609. 0,
  1610. 0,
  1611. 1,
  1612. 1,
  1613. 1,
  1614. 1
  1615. ]
  1616. },
  1617. "_eulerAngles": {
  1618. "__type__": "cc.Vec3",
  1619. "x": 0,
  1620. "y": 0,
  1621. "z": 0
  1622. },
  1623. "_skewX": 0,
  1624. "_skewY": 0,
  1625. "_is3DNode": false,
  1626. "_groupIndex": 0,
  1627. "groupIndex": 0,
  1628. "_id": "9dzis+nI1LK7UnFBdNQJIP"
  1629. },
  1630. {
  1631. "__type__": "cc.Sprite",
  1632. "_name": "",
  1633. "_objFlags": 0,
  1634. "node": {
  1635. "__id__": 45
  1636. },
  1637. "_enabled": true,
  1638. "_materials": [
  1639. {
  1640. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1641. }
  1642. ],
  1643. "_srcBlendFactor": 770,
  1644. "_dstBlendFactor": 771,
  1645. "_spriteFrame": {
  1646. "__uuid__": "047a8bcb-2549-4cbf-aeaa-57fdd64c0db6"
  1647. },
  1648. "_type": 0,
  1649. "_sizeMode": 1,
  1650. "_fillType": 0,
  1651. "_fillCenter": {
  1652. "__type__": "cc.Vec2",
  1653. "x": 0,
  1654. "y": 0
  1655. },
  1656. "_fillStart": 0,
  1657. "_fillRange": 0,
  1658. "_isTrimmedMode": true,
  1659. "_atlas": null,
  1660. "_id": "62CpHM6O5BTrRpDSo4Ffaj"
  1661. },
  1662. {
  1663. "__type__": "cc.PrefabInfo",
  1664. "root": {
  1665. "__id__": 45
  1666. },
  1667. "asset": {
  1668. "__uuid__": "f7ee12ca-53fe-418b-8f0e-e652bd54c65a"
  1669. },
  1670. "fileId": "9dzis+nI1LK7UnFBdNQJIP",
  1671. "sync": false
  1672. },
  1673. {
  1674. "__type__": "cc.Node",
  1675. "_name": "Box",
  1676. "_objFlags": 0,
  1677. "_parent": {
  1678. "__id__": 5
  1679. },
  1680. "_children": [],
  1681. "_active": true,
  1682. "_components": [
  1683. {
  1684. "__id__": 49
  1685. }
  1686. ],
  1687. "_prefab": {
  1688. "__id__": 50
  1689. },
  1690. "_opacity": 255,
  1691. "_color": {
  1692. "__type__": "cc.Color",
  1693. "r": 255,
  1694. "g": 255,
  1695. "b": 255,
  1696. "a": 255
  1697. },
  1698. "_contentSize": {
  1699. "__type__": "cc.Size",
  1700. "width": 50,
  1701. "height": 50
  1702. },
  1703. "_anchorPoint": {
  1704. "__type__": "cc.Vec2",
  1705. "x": 0.5,
  1706. "y": 0.5
  1707. },
  1708. "_trs": {
  1709. "__type__": "TypedArray",
  1710. "ctor": "Float64Array",
  1711. "array": [
  1712. -160,
  1713. 30,
  1714. 0,
  1715. 0,
  1716. 0,
  1717. 0,
  1718. 1,
  1719. 1,
  1720. 1,
  1721. 1
  1722. ]
  1723. },
  1724. "_eulerAngles": {
  1725. "__type__": "cc.Vec3",
  1726. "x": 0,
  1727. "y": 0,
  1728. "z": 0
  1729. },
  1730. "_skewX": 0,
  1731. "_skewY": 0,
  1732. "_is3DNode": false,
  1733. "_groupIndex": 0,
  1734. "groupIndex": 0,
  1735. "_id": "43m5BbiiRCxJEagt/xOiuI"
  1736. },
  1737. {
  1738. "__type__": "cc.Sprite",
  1739. "_name": "",
  1740. "_objFlags": 0,
  1741. "node": {
  1742. "__id__": 48
  1743. },
  1744. "_enabled": true,
  1745. "_materials": [
  1746. {
  1747. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1748. }
  1749. ],
  1750. "_srcBlendFactor": 770,
  1751. "_dstBlendFactor": 771,
  1752. "_spriteFrame": {
  1753. "__uuid__": "047a8bcb-2549-4cbf-aeaa-57fdd64c0db6"
  1754. },
  1755. "_type": 0,
  1756. "_sizeMode": 1,
  1757. "_fillType": 0,
  1758. "_fillCenter": {
  1759. "__type__": "cc.Vec2",
  1760. "x": 0,
  1761. "y": 0
  1762. },
  1763. "_fillStart": 0,
  1764. "_fillRange": 0,
  1765. "_isTrimmedMode": true,
  1766. "_atlas": null,
  1767. "_id": "2bWqTZxIdEG7eNa6UQmS3N"
  1768. },
  1769. {
  1770. "__type__": "cc.PrefabInfo",
  1771. "root": {
  1772. "__id__": 48
  1773. },
  1774. "asset": {
  1775. "__uuid__": "f7ee12ca-53fe-418b-8f0e-e652bd54c65a"
  1776. },
  1777. "fileId": "9dzis+nI1LK7UnFBdNQJIP",
  1778. "sync": false
  1779. },
  1780. {
  1781. "__type__": "cc.Node",
  1782. "_name": "Box",
  1783. "_objFlags": 0,
  1784. "_parent": {
  1785. "__id__": 5
  1786. },
  1787. "_children": [],
  1788. "_active": true,
  1789. "_components": [
  1790. {
  1791. "__id__": 52
  1792. }
  1793. ],
  1794. "_prefab": {
  1795. "__id__": 53
  1796. },
  1797. "_opacity": 255,
  1798. "_color": {
  1799. "__type__": "cc.Color",
  1800. "r": 255,
  1801. "g": 255,
  1802. "b": 255,
  1803. "a": 255
  1804. },
  1805. "_contentSize": {
  1806. "__type__": "cc.Size",
  1807. "width": 50,
  1808. "height": 50
  1809. },
  1810. "_anchorPoint": {
  1811. "__type__": "cc.Vec2",
  1812. "x": 0.5,
  1813. "y": 0.5
  1814. },
  1815. "_trs": {
  1816. "__type__": "TypedArray",
  1817. "ctor": "Float64Array",
  1818. "array": [
  1819. -100,
  1820. 30,
  1821. 0,
  1822. 0,
  1823. 0,
  1824. 0,
  1825. 1,
  1826. 1,
  1827. 1,
  1828. 1
  1829. ]
  1830. },
  1831. "_eulerAngles": {
  1832. "__type__": "cc.Vec3",
  1833. "x": 0,
  1834. "y": 0,
  1835. "z": 0
  1836. },
  1837. "_skewX": 0,
  1838. "_skewY": 0,
  1839. "_is3DNode": false,
  1840. "_groupIndex": 0,
  1841. "groupIndex": 0,
  1842. "_id": "f1/z2Lx9VDorVLLrRld4pW"
  1843. },
  1844. {
  1845. "__type__": "cc.Sprite",
  1846. "_name": "",
  1847. "_objFlags": 0,
  1848. "node": {
  1849. "__id__": 51
  1850. },
  1851. "_enabled": true,
  1852. "_materials": [
  1853. {
  1854. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1855. }
  1856. ],
  1857. "_srcBlendFactor": 770,
  1858. "_dstBlendFactor": 771,
  1859. "_spriteFrame": {
  1860. "__uuid__": "047a8bcb-2549-4cbf-aeaa-57fdd64c0db6"
  1861. },
  1862. "_type": 0,
  1863. "_sizeMode": 1,
  1864. "_fillType": 0,
  1865. "_fillCenter": {
  1866. "__type__": "cc.Vec2",
  1867. "x": 0,
  1868. "y": 0
  1869. },
  1870. "_fillStart": 0,
  1871. "_fillRange": 0,
  1872. "_isTrimmedMode": true,
  1873. "_atlas": null,
  1874. "_id": "94posS89xJVqouOA5LQ+o1"
  1875. },
  1876. {
  1877. "__type__": "cc.PrefabInfo",
  1878. "root": {
  1879. "__id__": 51
  1880. },
  1881. "asset": {
  1882. "__uuid__": "f7ee12ca-53fe-418b-8f0e-e652bd54c65a"
  1883. },
  1884. "fileId": "9dzis+nI1LK7UnFBdNQJIP",
  1885. "sync": false
  1886. },
  1887. {
  1888. "__type__": "cc.Node",
  1889. "_name": "Box",
  1890. "_objFlags": 0,
  1891. "_parent": {
  1892. "__id__": 5
  1893. },
  1894. "_children": [],
  1895. "_active": true,
  1896. "_components": [
  1897. {
  1898. "__id__": 55
  1899. }
  1900. ],
  1901. "_prefab": {
  1902. "__id__": 56
  1903. },
  1904. "_opacity": 255,
  1905. "_color": {
  1906. "__type__": "cc.Color",
  1907. "r": 255,
  1908. "g": 255,
  1909. "b": 255,
  1910. "a": 255
  1911. },
  1912. "_contentSize": {
  1913. "__type__": "cc.Size",
  1914. "width": 50,
  1915. "height": 50
  1916. },
  1917. "_anchorPoint": {
  1918. "__type__": "cc.Vec2",
  1919. "x": 0.5,
  1920. "y": 0.5
  1921. },
  1922. "_trs": {
  1923. "__type__": "TypedArray",
  1924. "ctor": "Float64Array",
  1925. "array": [
  1926. 100,
  1927. 30,
  1928. 0,
  1929. 0,
  1930. 0,
  1931. 0,
  1932. 1,
  1933. 1,
  1934. 1,
  1935. 1
  1936. ]
  1937. },
  1938. "_eulerAngles": {
  1939. "__type__": "cc.Vec3",
  1940. "x": 0,
  1941. "y": 0,
  1942. "z": 0
  1943. },
  1944. "_skewX": 0,
  1945. "_skewY": 0,
  1946. "_is3DNode": false,
  1947. "_groupIndex": 0,
  1948. "groupIndex": 0,
  1949. "_id": "c6qmuYr95JZrl8i7hmAi7T"
  1950. },
  1951. {
  1952. "__type__": "cc.Sprite",
  1953. "_name": "",
  1954. "_objFlags": 0,
  1955. "node": {
  1956. "__id__": 54
  1957. },
  1958. "_enabled": true,
  1959. "_materials": [
  1960. {
  1961. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1962. }
  1963. ],
  1964. "_srcBlendFactor": 770,
  1965. "_dstBlendFactor": 771,
  1966. "_spriteFrame": {
  1967. "__uuid__": "047a8bcb-2549-4cbf-aeaa-57fdd64c0db6"
  1968. },
  1969. "_type": 0,
  1970. "_sizeMode": 1,
  1971. "_fillType": 0,
  1972. "_fillCenter": {
  1973. "__type__": "cc.Vec2",
  1974. "x": 0,
  1975. "y": 0
  1976. },
  1977. "_fillStart": 0,
  1978. "_fillRange": 0,
  1979. "_isTrimmedMode": true,
  1980. "_atlas": null,
  1981. "_id": "30MoKZ6kJPWp1sByVbcvCX"
  1982. },
  1983. {
  1984. "__type__": "cc.PrefabInfo",
  1985. "root": {
  1986. "__id__": 54
  1987. },
  1988. "asset": {
  1989. "__uuid__": "f7ee12ca-53fe-418b-8f0e-e652bd54c65a"
  1990. },
  1991. "fileId": "9dzis+nI1LK7UnFBdNQJIP",
  1992. "sync": false
  1993. },
  1994. {
  1995. "__type__": "cc.Node",
  1996. "_name": "Box",
  1997. "_objFlags": 0,
  1998. "_parent": {
  1999. "__id__": 5
  2000. },
  2001. "_children": [],
  2002. "_active": true,
  2003. "_components": [
  2004. {
  2005. "__id__": 58
  2006. }
  2007. ],
  2008. "_prefab": {
  2009. "__id__": 59
  2010. },
  2011. "_opacity": 255,
  2012. "_color": {
  2013. "__type__": "cc.Color",
  2014. "r": 255,
  2015. "g": 255,
  2016. "b": 255,
  2017. "a": 255
  2018. },
  2019. "_contentSize": {
  2020. "__type__": "cc.Size",
  2021. "width": 50,
  2022. "height": 50
  2023. },
  2024. "_anchorPoint": {
  2025. "__type__": "cc.Vec2",
  2026. "x": 0.5,
  2027. "y": 0.5
  2028. },
  2029. "_trs": {
  2030. "__type__": "TypedArray",
  2031. "ctor": "Float64Array",
  2032. "array": [
  2033. 160,
  2034. 30,
  2035. 0,
  2036. 0,
  2037. 0,
  2038. 0,
  2039. 1,
  2040. 1,
  2041. 1,
  2042. 1
  2043. ]
  2044. },
  2045. "_eulerAngles": {
  2046. "__type__": "cc.Vec3",
  2047. "x": 0,
  2048. "y": 0,
  2049. "z": 0
  2050. },
  2051. "_skewX": 0,
  2052. "_skewY": 0,
  2053. "_is3DNode": false,
  2054. "_groupIndex": 0,
  2055. "groupIndex": 0,
  2056. "_id": "07dHNjn7pFZLRIBMmaFRUd"
  2057. },
  2058. {
  2059. "__type__": "cc.Sprite",
  2060. "_name": "",
  2061. "_objFlags": 0,
  2062. "node": {
  2063. "__id__": 57
  2064. },
  2065. "_enabled": true,
  2066. "_materials": [
  2067. {
  2068. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2069. }
  2070. ],
  2071. "_srcBlendFactor": 770,
  2072. "_dstBlendFactor": 771,
  2073. "_spriteFrame": {
  2074. "__uuid__": "047a8bcb-2549-4cbf-aeaa-57fdd64c0db6"
  2075. },
  2076. "_type": 0,
  2077. "_sizeMode": 1,
  2078. "_fillType": 0,
  2079. "_fillCenter": {
  2080. "__type__": "cc.Vec2",
  2081. "x": 0,
  2082. "y": 0
  2083. },
  2084. "_fillStart": 0,
  2085. "_fillRange": 0,
  2086. "_isTrimmedMode": true,
  2087. "_atlas": null,
  2088. "_id": "89HGq3LmJFdbKq9Y0rr7TG"
  2089. },
  2090. {
  2091. "__type__": "cc.PrefabInfo",
  2092. "root": {
  2093. "__id__": 57
  2094. },
  2095. "asset": {
  2096. "__uuid__": "f7ee12ca-53fe-418b-8f0e-e652bd54c65a"
  2097. },
  2098. "fileId": "9dzis+nI1LK7UnFBdNQJIP",
  2099. "sync": false
  2100. },
  2101. {
  2102. "__type__": "cc.Node",
  2103. "_name": "Box",
  2104. "_objFlags": 0,
  2105. "_parent": {
  2106. "__id__": 5
  2107. },
  2108. "_children": [],
  2109. "_active": true,
  2110. "_components": [
  2111. {
  2112. "__id__": 61
  2113. }
  2114. ],
  2115. "_prefab": {
  2116. "__id__": 62
  2117. },
  2118. "_opacity": 255,
  2119. "_color": {
  2120. "__type__": "cc.Color",
  2121. "r": 255,
  2122. "g": 255,
  2123. "b": 255,
  2124. "a": 255
  2125. },
  2126. "_contentSize": {
  2127. "__type__": "cc.Size",
  2128. "width": 50,
  2129. "height": 50
  2130. },
  2131. "_anchorPoint": {
  2132. "__type__": "cc.Vec2",
  2133. "x": 0.5,
  2134. "y": 0.5
  2135. },
  2136. "_trs": {
  2137. "__type__": "TypedArray",
  2138. "ctor": "Float64Array",
  2139. "array": [
  2140. 220,
  2141. 30,
  2142. 0,
  2143. 0,
  2144. 0,
  2145. 0,
  2146. 1,
  2147. 1,
  2148. 1,
  2149. 1
  2150. ]
  2151. },
  2152. "_eulerAngles": {
  2153. "__type__": "cc.Vec3",
  2154. "x": 0,
  2155. "y": 0,
  2156. "z": 0
  2157. },
  2158. "_skewX": 0,
  2159. "_skewY": 0,
  2160. "_is3DNode": false,
  2161. "_groupIndex": 0,
  2162. "groupIndex": 0,
  2163. "_id": "f59lmVKvhMuLppxqArTo/J"
  2164. },
  2165. {
  2166. "__type__": "cc.Sprite",
  2167. "_name": "",
  2168. "_objFlags": 0,
  2169. "node": {
  2170. "__id__": 60
  2171. },
  2172. "_enabled": true,
  2173. "_materials": [
  2174. {
  2175. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2176. }
  2177. ],
  2178. "_srcBlendFactor": 770,
  2179. "_dstBlendFactor": 771,
  2180. "_spriteFrame": {
  2181. "__uuid__": "047a8bcb-2549-4cbf-aeaa-57fdd64c0db6"
  2182. },
  2183. "_type": 0,
  2184. "_sizeMode": 1,
  2185. "_fillType": 0,
  2186. "_fillCenter": {
  2187. "__type__": "cc.Vec2",
  2188. "x": 0,
  2189. "y": 0
  2190. },
  2191. "_fillStart": 0,
  2192. "_fillRange": 0,
  2193. "_isTrimmedMode": true,
  2194. "_atlas": null,
  2195. "_id": "ca95AND2dPL4lHcrtGNMn3"
  2196. },
  2197. {
  2198. "__type__": "cc.PrefabInfo",
  2199. "root": {
  2200. "__id__": 60
  2201. },
  2202. "asset": {
  2203. "__uuid__": "f7ee12ca-53fe-418b-8f0e-e652bd54c65a"
  2204. },
  2205. "fileId": "9dzis+nI1LK7UnFBdNQJIP",
  2206. "sync": false
  2207. },
  2208. {
  2209. "__type__": "ea043E8L21E8ojifJbJGctm",
  2210. "_name": "",
  2211. "_objFlags": 0,
  2212. "node": {
  2213. "__id__": 5
  2214. },
  2215. "_enabled": true,
  2216. "_id": "dcQoiUTx1A8JZuWLtwfxuC"
  2217. },
  2218. {
  2219. "__type__": "cc.Canvas",
  2220. "_name": "",
  2221. "_objFlags": 0,
  2222. "node": {
  2223. "__id__": 2
  2224. },
  2225. "_enabled": true,
  2226. "_designResolution": {
  2227. "__type__": "cc.Size",
  2228. "width": 1280,
  2229. "height": 720
  2230. },
  2231. "_fitWidth": false,
  2232. "_fitHeight": true,
  2233. "_id": "5aXRbspP9EeY+GBTCr8eN8"
  2234. }
  2235. ]