Lv3_4.prefab 36 KB

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