Lv2_1.prefab 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "Lv2_1",
  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": "Lv2_1",
  16. "_objFlags": 0,
  17. "__editorExtras__": {},
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. }
  23. ],
  24. "_active": true,
  25. "_components": [
  26. {
  27. "__id__": 84
  28. },
  29. {
  30. "__id__": 86
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 88
  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__": 79
  84. },
  85. {
  86. "__id__": 81
  87. }
  88. ],
  89. "_prefab": {
  90. "__id__": 83
  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": -155.734,
  197. "y": 128.883,
  198. "z": 0
  199. },
  200. "_lrot": {
  201. "__type__": "cc.Quat",
  202. "x": 0,
  203. "y": 0,
  204. "z": 0,
  205. "w": 1
  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": 0
  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": 143,
  237. "height": 143
  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": "76Wlry/yFNYJ8sta65n4ZL"
  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__": "82917f70-2d7c-4c38-853d-e7cfa824b2f3@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": "52DOhdY6hPxLOcZdWNa8oZ"
  293. },
  294. {
  295. "__type__": "cc.PrefabInfo",
  296. "root": {
  297. "__id__": 1
  298. },
  299. "asset": {
  300. "__id__": 0
  301. },
  302. "fileId": "6dO8WyyzFDsbN87nPxUiNT",
  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": 132.185,
  330. "y": 126.824,
  331. "z": 0
  332. },
  333. "_lrot": {
  334. "__type__": "cc.Quat",
  335. "x": 0,
  336. "y": 0,
  337. "z": 0.7071067811865475,
  338. "w": 0.7071067811865476
  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": 90
  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": "6ePZqFtWJILZWTqefmy5ZJ"
  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": "91rNmSFLpGk6HtEvkGWCl0"
  426. },
  427. {
  428. "__type__": "cc.PrefabInfo",
  429. "root": {
  430. "__id__": 1
  431. },
  432. "asset": {
  433. "__id__": 0
  434. },
  435. "fileId": "4cT3FXbJJEnbbgnq2dUxPj",
  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": "10/200KF1CY7U+j+S71I7r"
  466. },
  467. {
  468. "__type__": "cc.PrefabInfo",
  469. "root": {
  470. "__id__": 1
  471. },
  472. "asset": {
  473. "__id__": 0
  474. },
  475. "fileId": "feZ8xssqxFOrABr4i3y+Wr",
  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__": 32
  493. },
  494. {
  495. "__id__": 44
  496. },
  497. {
  498. "__id__": 60
  499. }
  500. ],
  501. "_active": true,
  502. "_components": [
  503. {
  504. "__id__": 76
  505. }
  506. ],
  507. "_prefab": {
  508. "__id__": 78
  509. },
  510. "_lpos": {
  511. "__type__": "cc.Vec3",
  512. "x": 0,
  513. "y": -300,
  514. "z": 0
  515. },
  516. "_lrot": {
  517. "__type__": "cc.Quat",
  518. "x": 0,
  519. "y": 0,
  520. "z": 0,
  521. "w": 1
  522. },
  523. "_lscale": {
  524. "__type__": "cc.Vec3",
  525. "x": 1,
  526. "y": 1,
  527. "z": 1
  528. },
  529. "_mobility": 0,
  530. "_layer": 33554432,
  531. "_euler": {
  532. "__type__": "cc.Vec3",
  533. "x": 0,
  534. "y": 0,
  535. "z": 0
  536. },
  537. "_id": ""
  538. },
  539. {
  540. "__type__": "cc.Node",
  541. "_name": "1",
  542. "_objFlags": 0,
  543. "_parent": {
  544. "__id__": 19
  545. },
  546. "_children": [
  547. {
  548. "__id__": 21
  549. }
  550. ],
  551. "_active": true,
  552. "_components": [
  553. {
  554. "__id__": 25
  555. },
  556. {
  557. "__id__": 27
  558. },
  559. {
  560. "__id__": 29
  561. }
  562. ],
  563. "_prefab": {
  564. "__id__": 31
  565. },
  566. "_lpos": {
  567. "__type__": "cc.Vec3",
  568. "x": -155.734,
  569. "y": 128.883,
  570. "z": 0
  571. },
  572. "_lrot": {
  573. "__type__": "cc.Quat",
  574. "x": 0,
  575. "y": 0,
  576. "z": 0,
  577. "w": 1
  578. },
  579. "_lscale": {
  580. "__type__": "cc.Vec3",
  581. "x": 1,
  582. "y": 1,
  583. "z": 1
  584. },
  585. "_mobility": 0,
  586. "_layer": 33554432,
  587. "_euler": {
  588. "__type__": "cc.Vec3",
  589. "x": 0,
  590. "y": 0,
  591. "z": 0
  592. },
  593. "_id": ""
  594. },
  595. {
  596. "__type__": "cc.Node",
  597. "_name": "Node",
  598. "_objFlags": 0,
  599. "_parent": {
  600. "__id__": 20
  601. },
  602. "_children": [],
  603. "_active": true,
  604. "_components": [
  605. {
  606. "__id__": 22
  607. }
  608. ],
  609. "_prefab": {
  610. "__id__": 24
  611. },
  612. "_lpos": {
  613. "__type__": "cc.Vec3",
  614. "x": 0,
  615. "y": 0,
  616. "z": 0
  617. },
  618. "_lrot": {
  619. "__type__": "cc.Quat",
  620. "x": 0,
  621. "y": 0,
  622. "z": 0,
  623. "w": 1
  624. },
  625. "_lscale": {
  626. "__type__": "cc.Vec3",
  627. "x": 1,
  628. "y": 1,
  629. "z": 1
  630. },
  631. "_mobility": 0,
  632. "_layer": 33554432,
  633. "_euler": {
  634. "__type__": "cc.Vec3",
  635. "x": 0,
  636. "y": 0,
  637. "z": 0
  638. },
  639. "_id": ""
  640. },
  641. {
  642. "__type__": "cc.UITransform",
  643. "_name": "",
  644. "_objFlags": 0,
  645. "node": {
  646. "__id__": 21
  647. },
  648. "_enabled": true,
  649. "__prefab": {
  650. "__id__": 23
  651. },
  652. "_contentSize": {
  653. "__type__": "cc.Size",
  654. "width": 139.402,
  655. "height": 141.423
  656. },
  657. "_anchorPoint": {
  658. "__type__": "cc.Vec2",
  659. "x": 0.5,
  660. "y": 0.5
  661. },
  662. "_id": ""
  663. },
  664. {
  665. "__type__": "cc.CompPrefabInfo",
  666. "fileId": "422I3tG5tKborQ3/W9Fd4R"
  667. },
  668. {
  669. "__type__": "cc.PrefabInfo",
  670. "root": {
  671. "__id__": 1
  672. },
  673. "asset": {
  674. "__id__": 0
  675. },
  676. "fileId": "759udaOl5B/Yl1IsEPYvLm",
  677. "instance": null,
  678. "targetOverrides": null,
  679. "nestedPrefabInstanceRoots": null
  680. },
  681. {
  682. "__type__": "cc.UITransform",
  683. "_name": "",
  684. "_objFlags": 0,
  685. "node": {
  686. "__id__": 20
  687. },
  688. "_enabled": true,
  689. "__prefab": {
  690. "__id__": 26
  691. },
  692. "_contentSize": {
  693. "__type__": "cc.Size",
  694. "width": 143,
  695. "height": 143
  696. },
  697. "_anchorPoint": {
  698. "__type__": "cc.Vec2",
  699. "x": 0.5,
  700. "y": 0.5
  701. },
  702. "_id": ""
  703. },
  704. {
  705. "__type__": "cc.CompPrefabInfo",
  706. "fileId": "8eT08OYEZJO5RvJQEO5l0l"
  707. },
  708. {
  709. "__type__": "cc.Sprite",
  710. "_name": "",
  711. "_objFlags": 0,
  712. "node": {
  713. "__id__": 20
  714. },
  715. "_enabled": true,
  716. "__prefab": {
  717. "__id__": 28
  718. },
  719. "_customMaterial": null,
  720. "_srcBlendFactor": 2,
  721. "_dstBlendFactor": 4,
  722. "_color": {
  723. "__type__": "cc.Color",
  724. "r": 255,
  725. "g": 255,
  726. "b": 255,
  727. "a": 255
  728. },
  729. "_spriteFrame": {
  730. "__uuid__": "82917f70-2d7c-4c38-853d-e7cfa824b2f3@f9941",
  731. "__expectedType__": "cc.SpriteFrame"
  732. },
  733. "_type": 0,
  734. "_fillType": 0,
  735. "_sizeMode": 1,
  736. "_fillCenter": {
  737. "__type__": "cc.Vec2",
  738. "x": 0,
  739. "y": 0
  740. },
  741. "_fillStart": 0,
  742. "_fillRange": 0,
  743. "_isTrimmedMode": true,
  744. "_useGrayscale": false,
  745. "_atlas": null,
  746. "_id": ""
  747. },
  748. {
  749. "__type__": "cc.CompPrefabInfo",
  750. "fileId": "98BME5q/BIT5yoEDXAftXm"
  751. },
  752. {
  753. "__type__": "f491dUFLQtL+YlGuT6VN2oN",
  754. "_name": "",
  755. "_objFlags": 0,
  756. "node": {
  757. "__id__": 20
  758. },
  759. "_enabled": true,
  760. "__prefab": {
  761. "__id__": 30
  762. },
  763. "_id": ""
  764. },
  765. {
  766. "__type__": "cc.CompPrefabInfo",
  767. "fileId": "2essV5gGBLnaJymWcGqtxn"
  768. },
  769. {
  770. "__type__": "cc.PrefabInfo",
  771. "root": {
  772. "__id__": 1
  773. },
  774. "asset": {
  775. "__id__": 0
  776. },
  777. "fileId": "53e0I0RWxOAazqfhAU3XSb",
  778. "instance": null,
  779. "targetOverrides": null,
  780. "nestedPrefabInstanceRoots": null
  781. },
  782. {
  783. "__type__": "cc.Node",
  784. "_name": "1",
  785. "_objFlags": 0,
  786. "_parent": {
  787. "__id__": 19
  788. },
  789. "_children": [
  790. {
  791. "__id__": 33
  792. }
  793. ],
  794. "_active": true,
  795. "_components": [
  796. {
  797. "__id__": 37
  798. },
  799. {
  800. "__id__": 39
  801. },
  802. {
  803. "__id__": 41
  804. }
  805. ],
  806. "_prefab": {
  807. "__id__": 43
  808. },
  809. "_lpos": {
  810. "__type__": "cc.Vec3",
  811. "x": 131.014,
  812. "y": 128.883,
  813. "z": 0
  814. },
  815. "_lrot": {
  816. "__type__": "cc.Quat",
  817. "x": 0,
  818. "y": 0,
  819. "z": 0.7071067811865475,
  820. "w": 0.7071067811865476
  821. },
  822. "_lscale": {
  823. "__type__": "cc.Vec3",
  824. "x": 1,
  825. "y": 1,
  826. "z": 1
  827. },
  828. "_mobility": 0,
  829. "_layer": 33554432,
  830. "_euler": {
  831. "__type__": "cc.Vec3",
  832. "x": 0,
  833. "y": 0,
  834. "z": 90
  835. },
  836. "_id": ""
  837. },
  838. {
  839. "__type__": "cc.Node",
  840. "_name": "Node",
  841. "_objFlags": 0,
  842. "_parent": {
  843. "__id__": 32
  844. },
  845. "_children": [],
  846. "_active": true,
  847. "_components": [
  848. {
  849. "__id__": 34
  850. }
  851. ],
  852. "_prefab": {
  853. "__id__": 36
  854. },
  855. "_lpos": {
  856. "__type__": "cc.Vec3",
  857. "x": 0,
  858. "y": 0,
  859. "z": 0
  860. },
  861. "_lrot": {
  862. "__type__": "cc.Quat",
  863. "x": 0,
  864. "y": 0,
  865. "z": 0,
  866. "w": 1
  867. },
  868. "_lscale": {
  869. "__type__": "cc.Vec3",
  870. "x": 1,
  871. "y": 1,
  872. "z": 1
  873. },
  874. "_mobility": 0,
  875. "_layer": 33554432,
  876. "_euler": {
  877. "__type__": "cc.Vec3",
  878. "x": 0,
  879. "y": 0,
  880. "z": 0
  881. },
  882. "_id": ""
  883. },
  884. {
  885. "__type__": "cc.UITransform",
  886. "_name": "",
  887. "_objFlags": 0,
  888. "node": {
  889. "__id__": 33
  890. },
  891. "_enabled": true,
  892. "__prefab": {
  893. "__id__": 35
  894. },
  895. "_contentSize": {
  896. "__type__": "cc.Size",
  897. "width": 139.402,
  898. "height": 141.423
  899. },
  900. "_anchorPoint": {
  901. "__type__": "cc.Vec2",
  902. "x": 0.5,
  903. "y": 0.5
  904. },
  905. "_id": ""
  906. },
  907. {
  908. "__type__": "cc.CompPrefabInfo",
  909. "fileId": "54Fle0BgNIPbd76nfm2qRh"
  910. },
  911. {
  912. "__type__": "cc.PrefabInfo",
  913. "root": {
  914. "__id__": 1
  915. },
  916. "asset": {
  917. "__id__": 0
  918. },
  919. "fileId": "73c7o2eelOtYBByRVzDLbd",
  920. "instance": null,
  921. "targetOverrides": null,
  922. "nestedPrefabInstanceRoots": null
  923. },
  924. {
  925. "__type__": "cc.UITransform",
  926. "_name": "",
  927. "_objFlags": 0,
  928. "node": {
  929. "__id__": 32
  930. },
  931. "_enabled": true,
  932. "__prefab": {
  933. "__id__": 38
  934. },
  935. "_contentSize": {
  936. "__type__": "cc.Size",
  937. "width": 143,
  938. "height": 143
  939. },
  940. "_anchorPoint": {
  941. "__type__": "cc.Vec2",
  942. "x": 0.5,
  943. "y": 0.5
  944. },
  945. "_id": ""
  946. },
  947. {
  948. "__type__": "cc.CompPrefabInfo",
  949. "fileId": "86Ed4yvQ5Ea5iccbsz9wdB"
  950. },
  951. {
  952. "__type__": "cc.Sprite",
  953. "_name": "",
  954. "_objFlags": 0,
  955. "node": {
  956. "__id__": 32
  957. },
  958. "_enabled": true,
  959. "__prefab": {
  960. "__id__": 40
  961. },
  962. "_customMaterial": null,
  963. "_srcBlendFactor": 2,
  964. "_dstBlendFactor": 4,
  965. "_color": {
  966. "__type__": "cc.Color",
  967. "r": 255,
  968. "g": 255,
  969. "b": 255,
  970. "a": 255
  971. },
  972. "_spriteFrame": {
  973. "__uuid__": "82917f70-2d7c-4c38-853d-e7cfa824b2f3@f9941",
  974. "__expectedType__": "cc.SpriteFrame"
  975. },
  976. "_type": 0,
  977. "_fillType": 0,
  978. "_sizeMode": 1,
  979. "_fillCenter": {
  980. "__type__": "cc.Vec2",
  981. "x": 0,
  982. "y": 0
  983. },
  984. "_fillStart": 0,
  985. "_fillRange": 0,
  986. "_isTrimmedMode": true,
  987. "_useGrayscale": false,
  988. "_atlas": null,
  989. "_id": ""
  990. },
  991. {
  992. "__type__": "cc.CompPrefabInfo",
  993. "fileId": "fbtDmmagNBgL5cJjaNluNE"
  994. },
  995. {
  996. "__type__": "f491dUFLQtL+YlGuT6VN2oN",
  997. "_name": "",
  998. "_objFlags": 0,
  999. "node": {
  1000. "__id__": 32
  1001. },
  1002. "_enabled": true,
  1003. "__prefab": {
  1004. "__id__": 42
  1005. },
  1006. "_id": ""
  1007. },
  1008. {
  1009. "__type__": "cc.CompPrefabInfo",
  1010. "fileId": "aeaUBOQItCTpduvSf2xhnI"
  1011. },
  1012. {
  1013. "__type__": "cc.PrefabInfo",
  1014. "root": {
  1015. "__id__": 1
  1016. },
  1017. "asset": {
  1018. "__id__": 0
  1019. },
  1020. "fileId": "93TzyMoHxKT4l1nfS8CFM1",
  1021. "instance": null,
  1022. "targetOverrides": null,
  1023. "nestedPrefabInstanceRoots": null
  1024. },
  1025. {
  1026. "__type__": "cc.Node",
  1027. "_name": "2",
  1028. "_objFlags": 0,
  1029. "_parent": {
  1030. "__id__": 19
  1031. },
  1032. "_children": [
  1033. {
  1034. "__id__": 45
  1035. },
  1036. {
  1037. "__id__": 49
  1038. }
  1039. ],
  1040. "_active": true,
  1041. "_components": [
  1042. {
  1043. "__id__": 53
  1044. },
  1045. {
  1046. "__id__": 55
  1047. },
  1048. {
  1049. "__id__": 57
  1050. }
  1051. ],
  1052. "_prefab": {
  1053. "__id__": 59
  1054. },
  1055. "_lpos": {
  1056. "__type__": "cc.Vec3",
  1057. "x": 59.072,
  1058. "y": -14.321,
  1059. "z": 0
  1060. },
  1061. "_lrot": {
  1062. "__type__": "cc.Quat",
  1063. "x": 0,
  1064. "y": 0,
  1065. "z": 0,
  1066. "w": 1
  1067. },
  1068. "_lscale": {
  1069. "__type__": "cc.Vec3",
  1070. "x": 1,
  1071. "y": 1,
  1072. "z": 1
  1073. },
  1074. "_mobility": 0,
  1075. "_layer": 33554432,
  1076. "_euler": {
  1077. "__type__": "cc.Vec3",
  1078. "x": 0,
  1079. "y": 0,
  1080. "z": 0
  1081. },
  1082. "_id": ""
  1083. },
  1084. {
  1085. "__type__": "cc.Node",
  1086. "_name": "Node-001",
  1087. "_objFlags": 0,
  1088. "_parent": {
  1089. "__id__": 44
  1090. },
  1091. "_children": [],
  1092. "_active": true,
  1093. "_components": [
  1094. {
  1095. "__id__": 46
  1096. }
  1097. ],
  1098. "_prefab": {
  1099. "__id__": 48
  1100. },
  1101. "_lpos": {
  1102. "__type__": "cc.Vec3",
  1103. "x": -70.35400000000006,
  1104. "y": 73.95750000000008,
  1105. "z": 0
  1106. },
  1107. "_lrot": {
  1108. "__type__": "cc.Quat",
  1109. "x": 0,
  1110. "y": 0,
  1111. "z": 0.7071067811865475,
  1112. "w": 0.7071067811865476
  1113. },
  1114. "_lscale": {
  1115. "__type__": "cc.Vec3",
  1116. "x": 1,
  1117. "y": 1,
  1118. "z": 1
  1119. },
  1120. "_mobility": 0,
  1121. "_layer": 33554432,
  1122. "_euler": {
  1123. "__type__": "cc.Vec3",
  1124. "x": 0,
  1125. "y": 0,
  1126. "z": 90
  1127. },
  1128. "_id": ""
  1129. },
  1130. {
  1131. "__type__": "cc.UITransform",
  1132. "_name": "",
  1133. "_objFlags": 0,
  1134. "node": {
  1135. "__id__": 45
  1136. },
  1137. "_enabled": true,
  1138. "__prefab": {
  1139. "__id__": 47
  1140. },
  1141. "_contentSize": {
  1142. "__type__": "cc.Size",
  1143. "width": 277.817,
  1144. "height": 141.423
  1145. },
  1146. "_anchorPoint": {
  1147. "__type__": "cc.Vec2",
  1148. "x": 0.5,
  1149. "y": 0.5
  1150. },
  1151. "_id": ""
  1152. },
  1153. {
  1154. "__type__": "cc.CompPrefabInfo",
  1155. "fileId": "c59CeCDc1H06wLFWi42n3M"
  1156. },
  1157. {
  1158. "__type__": "cc.PrefabInfo",
  1159. "root": {
  1160. "__id__": 1
  1161. },
  1162. "asset": {
  1163. "__id__": 0
  1164. },
  1165. "fileId": "06LvrXUEdGhoOTv+QQG9gW",
  1166. "instance": null,
  1167. "targetOverrides": null,
  1168. "nestedPrefabInstanceRoots": null
  1169. },
  1170. {
  1171. "__type__": "cc.Node",
  1172. "_name": "Node-002",
  1173. "_objFlags": 0,
  1174. "_parent": {
  1175. "__id__": 44
  1176. },
  1177. "_children": [],
  1178. "_active": true,
  1179. "_components": [
  1180. {
  1181. "__id__": 50
  1182. }
  1183. ],
  1184. "_prefab": {
  1185. "__id__": 52
  1186. },
  1187. "_lpos": {
  1188. "__type__": "cc.Vec3",
  1189. "x": 71.06899999999996,
  1190. "y": -71.05199999999996,
  1191. "z": 0
  1192. },
  1193. "_lrot": {
  1194. "__type__": "cc.Quat",
  1195. "x": 0,
  1196. "y": 0,
  1197. "z": 0.7071067811865475,
  1198. "w": 0.7071067811865476
  1199. },
  1200. "_lscale": {
  1201. "__type__": "cc.Vec3",
  1202. "x": 1,
  1203. "y": 1,
  1204. "z": 1
  1205. },
  1206. "_mobility": 0,
  1207. "_layer": 33554432,
  1208. "_euler": {
  1209. "__type__": "cc.Vec3",
  1210. "x": 0,
  1211. "y": 0,
  1212. "z": 90
  1213. },
  1214. "_id": ""
  1215. },
  1216. {
  1217. "__type__": "cc.UITransform",
  1218. "_name": "",
  1219. "_objFlags": 0,
  1220. "node": {
  1221. "__id__": 49
  1222. },
  1223. "_enabled": true,
  1224. "__prefab": {
  1225. "__id__": 51
  1226. },
  1227. "_contentSize": {
  1228. "__type__": "cc.Size",
  1229. "width": 277.817,
  1230. "height": 141.423
  1231. },
  1232. "_anchorPoint": {
  1233. "__type__": "cc.Vec2",
  1234. "x": 0.5,
  1235. "y": 0.5
  1236. },
  1237. "_id": ""
  1238. },
  1239. {
  1240. "__type__": "cc.CompPrefabInfo",
  1241. "fileId": "21XEyObAtM+rkSbs6R2B6S"
  1242. },
  1243. {
  1244. "__type__": "cc.PrefabInfo",
  1245. "root": {
  1246. "__id__": 1
  1247. },
  1248. "asset": {
  1249. "__id__": 0
  1250. },
  1251. "fileId": "bfuJ9lRgBPnLknRYlZLf78",
  1252. "instance": null,
  1253. "targetOverrides": null,
  1254. "nestedPrefabInstanceRoots": null
  1255. },
  1256. {
  1257. "__type__": "cc.UITransform",
  1258. "_name": "",
  1259. "_objFlags": 0,
  1260. "node": {
  1261. "__id__": 44
  1262. },
  1263. "_enabled": true,
  1264. "__prefab": {
  1265. "__id__": 54
  1266. },
  1267. "_contentSize": {
  1268. "__type__": "cc.Size",
  1269. "width": 290,
  1270. "height": 428
  1271. },
  1272. "_anchorPoint": {
  1273. "__type__": "cc.Vec2",
  1274. "x": 0.5,
  1275. "y": 0.5
  1276. },
  1277. "_id": ""
  1278. },
  1279. {
  1280. "__type__": "cc.CompPrefabInfo",
  1281. "fileId": "018rVjxHBABZqq/7i2/zcN"
  1282. },
  1283. {
  1284. "__type__": "cc.Sprite",
  1285. "_name": "",
  1286. "_objFlags": 0,
  1287. "node": {
  1288. "__id__": 44
  1289. },
  1290. "_enabled": true,
  1291. "__prefab": {
  1292. "__id__": 56
  1293. },
  1294. "_customMaterial": null,
  1295. "_srcBlendFactor": 2,
  1296. "_dstBlendFactor": 4,
  1297. "_color": {
  1298. "__type__": "cc.Color",
  1299. "r": 255,
  1300. "g": 255,
  1301. "b": 255,
  1302. "a": 255
  1303. },
  1304. "_spriteFrame": {
  1305. "__uuid__": "57d0d810-9a2a-4656-a9a1-1f9aab52c098@f9941",
  1306. "__expectedType__": "cc.SpriteFrame"
  1307. },
  1308. "_type": 0,
  1309. "_fillType": 0,
  1310. "_sizeMode": 1,
  1311. "_fillCenter": {
  1312. "__type__": "cc.Vec2",
  1313. "x": 0,
  1314. "y": 0
  1315. },
  1316. "_fillStart": 0,
  1317. "_fillRange": 0,
  1318. "_isTrimmedMode": true,
  1319. "_useGrayscale": false,
  1320. "_atlas": null,
  1321. "_id": ""
  1322. },
  1323. {
  1324. "__type__": "cc.CompPrefabInfo",
  1325. "fileId": "5eCu9KKCNGurGnZFplTVBD"
  1326. },
  1327. {
  1328. "__type__": "f491dUFLQtL+YlGuT6VN2oN",
  1329. "_name": "",
  1330. "_objFlags": 0,
  1331. "node": {
  1332. "__id__": 44
  1333. },
  1334. "_enabled": true,
  1335. "__prefab": {
  1336. "__id__": 58
  1337. },
  1338. "_id": ""
  1339. },
  1340. {
  1341. "__type__": "cc.CompPrefabInfo",
  1342. "fileId": "ccTdKGKlVM3K8bvvHUp8vk"
  1343. },
  1344. {
  1345. "__type__": "cc.PrefabInfo",
  1346. "root": {
  1347. "__id__": 1
  1348. },
  1349. "asset": {
  1350. "__id__": 0
  1351. },
  1352. "fileId": "1bshCh1l9Mp7FUTGTV2nMK",
  1353. "instance": null,
  1354. "targetOverrides": null,
  1355. "nestedPrefabInstanceRoots": null
  1356. },
  1357. {
  1358. "__type__": "cc.Node",
  1359. "_name": "2",
  1360. "_objFlags": 0,
  1361. "_parent": {
  1362. "__id__": 19
  1363. },
  1364. "_children": [
  1365. {
  1366. "__id__": 61
  1367. },
  1368. {
  1369. "__id__": 65
  1370. }
  1371. ],
  1372. "_active": true,
  1373. "_components": [
  1374. {
  1375. "__id__": 69
  1376. },
  1377. {
  1378. "__id__": 71
  1379. },
  1380. {
  1381. "__id__": 73
  1382. }
  1383. ],
  1384. "_prefab": {
  1385. "__id__": 75
  1386. },
  1387. "_lpos": {
  1388. "__type__": "cc.Vec3",
  1389. "x": -84.132,
  1390. "y": -82.343,
  1391. "z": 0
  1392. },
  1393. "_lrot": {
  1394. "__type__": "cc.Quat",
  1395. "x": 0,
  1396. "y": 0,
  1397. "z": 1,
  1398. "w": 6.123233995736766e-17
  1399. },
  1400. "_lscale": {
  1401. "__type__": "cc.Vec3",
  1402. "x": 1,
  1403. "y": 1,
  1404. "z": 1
  1405. },
  1406. "_mobility": 0,
  1407. "_layer": 33554432,
  1408. "_euler": {
  1409. "__type__": "cc.Vec3",
  1410. "x": 0,
  1411. "y": 0,
  1412. "z": 180
  1413. },
  1414. "_id": ""
  1415. },
  1416. {
  1417. "__type__": "cc.Node",
  1418. "_name": "Node-003",
  1419. "_objFlags": 0,
  1420. "_parent": {
  1421. "__id__": 60
  1422. },
  1423. "_children": [],
  1424. "_active": true,
  1425. "_components": [
  1426. {
  1427. "__id__": 62
  1428. }
  1429. ],
  1430. "_prefab": {
  1431. "__id__": 64
  1432. },
  1433. "_lpos": {
  1434. "__type__": "cc.Vec3",
  1435. "x": 69.452,
  1436. "y": -3.358000000000004,
  1437. "z": 0
  1438. },
  1439. "_lrot": {
  1440. "__type__": "cc.Quat",
  1441. "x": 0,
  1442. "y": 0,
  1443. "z": -0.7071067811865476,
  1444. "w": 0.7071067811865475
  1445. },
  1446. "_lscale": {
  1447. "__type__": "cc.Vec3",
  1448. "x": 1,
  1449. "y": 1,
  1450. "z": 1
  1451. },
  1452. "_mobility": 0,
  1453. "_layer": 33554432,
  1454. "_euler": {
  1455. "__type__": "cc.Vec3",
  1456. "x": 0,
  1457. "y": 0,
  1458. "z": -90
  1459. },
  1460. "_id": ""
  1461. },
  1462. {
  1463. "__type__": "cc.UITransform",
  1464. "_name": "",
  1465. "_objFlags": 0,
  1466. "node": {
  1467. "__id__": 61
  1468. },
  1469. "_enabled": true,
  1470. "__prefab": {
  1471. "__id__": 63
  1472. },
  1473. "_contentSize": {
  1474. "__type__": "cc.Size",
  1475. "width": 277.817,
  1476. "height": 141.423
  1477. },
  1478. "_anchorPoint": {
  1479. "__type__": "cc.Vec2",
  1480. "x": 0.5,
  1481. "y": 0.5
  1482. },
  1483. "_id": ""
  1484. },
  1485. {
  1486. "__type__": "cc.CompPrefabInfo",
  1487. "fileId": "43CWSznadGI7WBPzXBixIR"
  1488. },
  1489. {
  1490. "__type__": "cc.PrefabInfo",
  1491. "root": {
  1492. "__id__": 1
  1493. },
  1494. "asset": {
  1495. "__id__": 0
  1496. },
  1497. "fileId": "71ypbrq7dP6JJN8RRQWNhD",
  1498. "instance": null,
  1499. "targetOverrides": null,
  1500. "nestedPrefabInstanceRoots": null
  1501. },
  1502. {
  1503. "__type__": "cc.Node",
  1504. "_name": "Node-004",
  1505. "_objFlags": 0,
  1506. "_parent": {
  1507. "__id__": 60
  1508. },
  1509. "_children": [],
  1510. "_active": true,
  1511. "_components": [
  1512. {
  1513. "__id__": 66
  1514. }
  1515. ],
  1516. "_prefab": {
  1517. "__id__": 68
  1518. },
  1519. "_lpos": {
  1520. "__type__": "cc.Vec3",
  1521. "x": -71.971,
  1522. "y": 67.35300000000001,
  1523. "z": 0
  1524. },
  1525. "_lrot": {
  1526. "__type__": "cc.Quat",
  1527. "x": 0,
  1528. "y": 0,
  1529. "z": -0.7071067811865476,
  1530. "w": 0.7071067811865475
  1531. },
  1532. "_lscale": {
  1533. "__type__": "cc.Vec3",
  1534. "x": 1,
  1535. "y": 1,
  1536. "z": 1
  1537. },
  1538. "_mobility": 0,
  1539. "_layer": 33554432,
  1540. "_euler": {
  1541. "__type__": "cc.Vec3",
  1542. "x": 0,
  1543. "y": 0,
  1544. "z": -90
  1545. },
  1546. "_id": ""
  1547. },
  1548. {
  1549. "__type__": "cc.UITransform",
  1550. "_name": "",
  1551. "_objFlags": 0,
  1552. "node": {
  1553. "__id__": 65
  1554. },
  1555. "_enabled": true,
  1556. "__prefab": {
  1557. "__id__": 67
  1558. },
  1559. "_contentSize": {
  1560. "__type__": "cc.Size",
  1561. "width": 136.394,
  1562. "height": 141.423
  1563. },
  1564. "_anchorPoint": {
  1565. "__type__": "cc.Vec2",
  1566. "x": 0.5,
  1567. "y": 0.5
  1568. },
  1569. "_id": ""
  1570. },
  1571. {
  1572. "__type__": "cc.CompPrefabInfo",
  1573. "fileId": "efTHCx2KlFML9d93PlLzEu"
  1574. },
  1575. {
  1576. "__type__": "cc.PrefabInfo",
  1577. "root": {
  1578. "__id__": 1
  1579. },
  1580. "asset": {
  1581. "__id__": 0
  1582. },
  1583. "fileId": "4897Bpg91JaIFEvvcpNgBP",
  1584. "instance": null,
  1585. "targetOverrides": null,
  1586. "nestedPrefabInstanceRoots": null
  1587. },
  1588. {
  1589. "__type__": "cc.UITransform",
  1590. "_name": "",
  1591. "_objFlags": 0,
  1592. "node": {
  1593. "__id__": 60
  1594. },
  1595. "_enabled": true,
  1596. "__prefab": {
  1597. "__id__": 70
  1598. },
  1599. "_contentSize": {
  1600. "__type__": "cc.Size",
  1601. "width": 290,
  1602. "height": 285
  1603. },
  1604. "_anchorPoint": {
  1605. "__type__": "cc.Vec2",
  1606. "x": 0.5,
  1607. "y": 0.5
  1608. },
  1609. "_id": ""
  1610. },
  1611. {
  1612. "__type__": "cc.CompPrefabInfo",
  1613. "fileId": "f6S8k931NMyo7XJhirc6E5"
  1614. },
  1615. {
  1616. "__type__": "cc.Sprite",
  1617. "_name": "",
  1618. "_objFlags": 0,
  1619. "node": {
  1620. "__id__": 60
  1621. },
  1622. "_enabled": true,
  1623. "__prefab": {
  1624. "__id__": 72
  1625. },
  1626. "_customMaterial": null,
  1627. "_srcBlendFactor": 2,
  1628. "_dstBlendFactor": 4,
  1629. "_color": {
  1630. "__type__": "cc.Color",
  1631. "r": 255,
  1632. "g": 255,
  1633. "b": 255,
  1634. "a": 255
  1635. },
  1636. "_spriteFrame": {
  1637. "__uuid__": "3466fef5-9e17-4e22-888c-ce9408e22f9b@f9941",
  1638. "__expectedType__": "cc.SpriteFrame"
  1639. },
  1640. "_type": 0,
  1641. "_fillType": 0,
  1642. "_sizeMode": 1,
  1643. "_fillCenter": {
  1644. "__type__": "cc.Vec2",
  1645. "x": 0,
  1646. "y": 0
  1647. },
  1648. "_fillStart": 0,
  1649. "_fillRange": 0,
  1650. "_isTrimmedMode": true,
  1651. "_useGrayscale": false,
  1652. "_atlas": null,
  1653. "_id": ""
  1654. },
  1655. {
  1656. "__type__": "cc.CompPrefabInfo",
  1657. "fileId": "9aLoFBb3VHOqPGbRCFMxUi"
  1658. },
  1659. {
  1660. "__type__": "f491dUFLQtL+YlGuT6VN2oN",
  1661. "_name": "",
  1662. "_objFlags": 0,
  1663. "node": {
  1664. "__id__": 60
  1665. },
  1666. "_enabled": true,
  1667. "__prefab": {
  1668. "__id__": 74
  1669. },
  1670. "_id": ""
  1671. },
  1672. {
  1673. "__type__": "cc.CompPrefabInfo",
  1674. "fileId": "47RymMUFdAWpU4pl+islA7"
  1675. },
  1676. {
  1677. "__type__": "cc.PrefabInfo",
  1678. "root": {
  1679. "__id__": 1
  1680. },
  1681. "asset": {
  1682. "__id__": 0
  1683. },
  1684. "fileId": "1eDTOTD+5Ee6qm7DKyteSa",
  1685. "instance": null,
  1686. "targetOverrides": null,
  1687. "nestedPrefabInstanceRoots": null
  1688. },
  1689. {
  1690. "__type__": "cc.UITransform",
  1691. "_name": "",
  1692. "_objFlags": 0,
  1693. "node": {
  1694. "__id__": 19
  1695. },
  1696. "_enabled": true,
  1697. "__prefab": {
  1698. "__id__": 77
  1699. },
  1700. "_contentSize": {
  1701. "__type__": "cc.Size",
  1702. "width": 1300,
  1703. "height": 500
  1704. },
  1705. "_anchorPoint": {
  1706. "__type__": "cc.Vec2",
  1707. "x": 0.5,
  1708. "y": 0.5
  1709. },
  1710. "_id": ""
  1711. },
  1712. {
  1713. "__type__": "cc.CompPrefabInfo",
  1714. "fileId": "ea9rxlAnNEjIjYk7hjrpf+"
  1715. },
  1716. {
  1717. "__type__": "cc.PrefabInfo",
  1718. "root": {
  1719. "__id__": 1
  1720. },
  1721. "asset": {
  1722. "__id__": 0
  1723. },
  1724. "fileId": "2dUMO25+lO7JrzgZN9zCid",
  1725. "instance": null,
  1726. "targetOverrides": null,
  1727. "nestedPrefabInstanceRoots": null
  1728. },
  1729. {
  1730. "__type__": "cc.UITransform",
  1731. "_name": "",
  1732. "_objFlags": 0,
  1733. "node": {
  1734. "__id__": 2
  1735. },
  1736. "_enabled": true,
  1737. "__prefab": {
  1738. "__id__": 80
  1739. },
  1740. "_contentSize": {
  1741. "__type__": "cc.Size",
  1742. "width": 1355,
  1743. "height": 1177
  1744. },
  1745. "_anchorPoint": {
  1746. "__type__": "cc.Vec2",
  1747. "x": 0.5,
  1748. "y": 0.5
  1749. },
  1750. "_id": ""
  1751. },
  1752. {
  1753. "__type__": "cc.CompPrefabInfo",
  1754. "fileId": "27WzQ1yvhLuYt6X2BrE/iJ"
  1755. },
  1756. {
  1757. "__type__": "cc.Sprite",
  1758. "_name": "",
  1759. "_objFlags": 0,
  1760. "node": {
  1761. "__id__": 2
  1762. },
  1763. "_enabled": true,
  1764. "__prefab": {
  1765. "__id__": 82
  1766. },
  1767. "_customMaterial": null,
  1768. "_srcBlendFactor": 2,
  1769. "_dstBlendFactor": 4,
  1770. "_color": {
  1771. "__type__": "cc.Color",
  1772. "r": 255,
  1773. "g": 255,
  1774. "b": 255,
  1775. "a": 255
  1776. },
  1777. "_spriteFrame": {
  1778. "__uuid__": "4e688368-a9c8-402c-a393-58128b2eaaa1@f9941",
  1779. "__expectedType__": "cc.SpriteFrame"
  1780. },
  1781. "_type": 0,
  1782. "_fillType": 0,
  1783. "_sizeMode": 1,
  1784. "_fillCenter": {
  1785. "__type__": "cc.Vec2",
  1786. "x": 0,
  1787. "y": 0
  1788. },
  1789. "_fillStart": 0,
  1790. "_fillRange": 0,
  1791. "_isTrimmedMode": true,
  1792. "_useGrayscale": false,
  1793. "_atlas": null,
  1794. "_id": ""
  1795. },
  1796. {
  1797. "__type__": "cc.CompPrefabInfo",
  1798. "fileId": "4daamRS2VAFaoRLpv/kyFI"
  1799. },
  1800. {
  1801. "__type__": "cc.PrefabInfo",
  1802. "root": {
  1803. "__id__": 1
  1804. },
  1805. "asset": {
  1806. "__id__": 0
  1807. },
  1808. "fileId": "77qNR5NqJBrof1z0LkY1qT",
  1809. "instance": null,
  1810. "targetOverrides": null,
  1811. "nestedPrefabInstanceRoots": null
  1812. },
  1813. {
  1814. "__type__": "cc.UITransform",
  1815. "_name": "",
  1816. "_objFlags": 0,
  1817. "node": {
  1818. "__id__": 1
  1819. },
  1820. "_enabled": true,
  1821. "__prefab": {
  1822. "__id__": 85
  1823. },
  1824. "_contentSize": {
  1825. "__type__": "cc.Size",
  1826. "width": 2388,
  1827. "height": 1668
  1828. },
  1829. "_anchorPoint": {
  1830. "__type__": "cc.Vec2",
  1831. "x": 0.5,
  1832. "y": 0.5
  1833. },
  1834. "_id": ""
  1835. },
  1836. {
  1837. "__type__": "cc.CompPrefabInfo",
  1838. "fileId": "27y7+3l0FKXpYEtwrQdGW/"
  1839. },
  1840. {
  1841. "__type__": "cc.Widget",
  1842. "_name": "",
  1843. "_objFlags": 0,
  1844. "node": {
  1845. "__id__": 1
  1846. },
  1847. "_enabled": true,
  1848. "__prefab": {
  1849. "__id__": 87
  1850. },
  1851. "_alignFlags": 45,
  1852. "_target": null,
  1853. "_left": 0,
  1854. "_right": 0,
  1855. "_top": 0,
  1856. "_bottom": 0,
  1857. "_horizontalCenter": 0,
  1858. "_verticalCenter": 0,
  1859. "_isAbsLeft": true,
  1860. "_isAbsRight": true,
  1861. "_isAbsTop": true,
  1862. "_isAbsBottom": true,
  1863. "_isAbsHorizontalCenter": true,
  1864. "_isAbsVerticalCenter": true,
  1865. "_originalWidth": 100,
  1866. "_originalHeight": 100,
  1867. "_alignMode": 2,
  1868. "_lockFlags": 0,
  1869. "_id": ""
  1870. },
  1871. {
  1872. "__type__": "cc.CompPrefabInfo",
  1873. "fileId": "96jLZbdT9LXIqOv00ISR4/"
  1874. },
  1875. {
  1876. "__type__": "cc.PrefabInfo",
  1877. "root": {
  1878. "__id__": 1
  1879. },
  1880. "asset": {
  1881. "__id__": 0
  1882. },
  1883. "fileId": "aenvOq1bdJM7+cbnLV/qcF",
  1884. "instance": null,
  1885. "targetOverrides": null
  1886. }
  1887. ]