CircleMode.prefab 42 KB

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