Lv5_4.prefab 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "Lv5_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": "Lv5_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__": 124
  28. },
  29. {
  30. "__id__": 126
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 128
  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__": 119
  84. },
  85. {
  86. "__id__": 121
  87. }
  88. ],
  89. "_prefab": {
  90. "__id__": 123
  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": -141.454,
  197. "y": -30.37,
  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": 291,
  237. "height": 473
  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": "a0l0RI9QVCv4TdxOZpfBnI"
  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__": "ea01272c-f86e-4e0e-8579-81d4623506f1@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": "2f+Y+aGORG+ZN4t7JHkixb"
  293. },
  294. {
  295. "__type__": "cc.PrefabInfo",
  296. "root": {
  297. "__id__": 1
  298. },
  299. "asset": {
  300. "__id__": 0
  301. },
  302. "fileId": "98N64jTElGsYlAV8HITVpk",
  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": 0,
  330. "y": -53.548,
  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": 285,
  370. "height": 425
  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": "f4dhPquthFP4Ch3rQkplOY"
  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__": "d18fbcd7-78fd-4c29-8891-65d6d0dd4621@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": "21XHw3UOtCyrttc++K4alL"
  426. },
  427. {
  428. "__type__": "cc.PrefabInfo",
  429. "root": {
  430. "__id__": 1
  431. },
  432. "asset": {
  433. "__id__": 0
  434. },
  435. "fileId": "f3LOT2FtFBqpr58IiNHn+G",
  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": "ff+NaL3S5PqpVzX5tcCjHe"
  466. },
  467. {
  468. "__type__": "cc.PrefabInfo",
  469. "root": {
  470. "__id__": 1
  471. },
  472. "asset": {
  473. "__id__": 0
  474. },
  475. "fileId": "7ei3DHJz9EZbsHNzRYN8mA",
  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__": 52
  496. },
  497. {
  498. "__id__": 68
  499. },
  500. {
  501. "__id__": 80
  502. },
  503. {
  504. "__id__": 92
  505. },
  506. {
  507. "__id__": 104
  508. }
  509. ],
  510. "_active": true,
  511. "_components": [
  512. {
  513. "__id__": 116
  514. }
  515. ],
  516. "_prefab": {
  517. "__id__": 118
  518. },
  519. "_lpos": {
  520. "__type__": "cc.Vec3",
  521. "x": 0,
  522. "y": -300,
  523. "z": 0
  524. },
  525. "_lrot": {
  526. "__type__": "cc.Quat",
  527. "x": 0,
  528. "y": 0,
  529. "z": 0,
  530. "w": 1
  531. },
  532. "_lscale": {
  533. "__type__": "cc.Vec3",
  534. "x": 1,
  535. "y": 1,
  536. "z": 1
  537. },
  538. "_mobility": 0,
  539. "_layer": 33554432,
  540. "_euler": {
  541. "__type__": "cc.Vec3",
  542. "x": 0,
  543. "y": 0,
  544. "z": 0
  545. },
  546. "_id": ""
  547. },
  548. {
  549. "__type__": "cc.Node",
  550. "_name": "1",
  551. "_objFlags": 0,
  552. "_parent": {
  553. "__id__": 19
  554. },
  555. "_children": [
  556. {
  557. "__id__": 21
  558. },
  559. {
  560. "__id__": 25
  561. }
  562. ],
  563. "_active": true,
  564. "_components": [
  565. {
  566. "__id__": 29
  567. },
  568. {
  569. "__id__": 31
  570. },
  571. {
  572. "__id__": 33
  573. }
  574. ],
  575. "_prefab": {
  576. "__id__": 35
  577. },
  578. "_lpos": {
  579. "__type__": "cc.Vec3",
  580. "x": 0,
  581. "y": -53.548,
  582. "z": 0
  583. },
  584. "_lrot": {
  585. "__type__": "cc.Quat",
  586. "x": 0,
  587. "y": 0,
  588. "z": 0,
  589. "w": 1
  590. },
  591. "_lscale": {
  592. "__type__": "cc.Vec3",
  593. "x": 1,
  594. "y": 1,
  595. "z": 1
  596. },
  597. "_mobility": 0,
  598. "_layer": 33554432,
  599. "_euler": {
  600. "__type__": "cc.Vec3",
  601. "x": 0,
  602. "y": 0,
  603. "z": 0
  604. },
  605. "_id": ""
  606. },
  607. {
  608. "__type__": "cc.Node",
  609. "_name": "Node-001",
  610. "_objFlags": 0,
  611. "_parent": {
  612. "__id__": 20
  613. },
  614. "_children": [],
  615. "_active": true,
  616. "_components": [
  617. {
  618. "__id__": 22
  619. }
  620. ],
  621. "_prefab": {
  622. "__id__": 24
  623. },
  624. "_lpos": {
  625. "__type__": "cc.Vec3",
  626. "x": 70.97000000000003,
  627. "y": 0,
  628. "z": 0
  629. },
  630. "_lrot": {
  631. "__type__": "cc.Quat",
  632. "x": 0,
  633. "y": 0,
  634. "z": 0,
  635. "w": 1
  636. },
  637. "_lscale": {
  638. "__type__": "cc.Vec3",
  639. "x": 1,
  640. "y": 1,
  641. "z": 1
  642. },
  643. "_mobility": 0,
  644. "_layer": 33554432,
  645. "_euler": {
  646. "__type__": "cc.Vec3",
  647. "x": 0,
  648. "y": 0,
  649. "z": 0
  650. },
  651. "_id": ""
  652. },
  653. {
  654. "__type__": "cc.UITransform",
  655. "_name": "",
  656. "_objFlags": 0,
  657. "node": {
  658. "__id__": 21
  659. },
  660. "_enabled": true,
  661. "__prefab": {
  662. "__id__": 23
  663. },
  664. "_contentSize": {
  665. "__type__": "cc.Size",
  666. "width": 141.94,
  667. "height": 421.92400000000004
  668. },
  669. "_anchorPoint": {
  670. "__type__": "cc.Vec2",
  671. "x": 0.5,
  672. "y": 0.5
  673. },
  674. "_id": ""
  675. },
  676. {
  677. "__type__": "cc.CompPrefabInfo",
  678. "fileId": "6aXEbMDe1Pl5zQ9KfU6+WR"
  679. },
  680. {
  681. "__type__": "cc.PrefabInfo",
  682. "root": {
  683. "__id__": 1
  684. },
  685. "asset": {
  686. "__id__": 0
  687. },
  688. "fileId": "5es9AGarxEu4d8OXBTbZzr",
  689. "instance": null,
  690. "targetOverrides": null,
  691. "nestedPrefabInstanceRoots": null
  692. },
  693. {
  694. "__type__": "cc.Node",
  695. "_name": "Node-002",
  696. "_objFlags": 0,
  697. "_parent": {
  698. "__id__": 20
  699. },
  700. "_children": [],
  701. "_active": true,
  702. "_components": [
  703. {
  704. "__id__": 26
  705. }
  706. ],
  707. "_prefab": {
  708. "__id__": 28
  709. },
  710. "_lpos": {
  711. "__type__": "cc.Vec3",
  712. "x": -70.97000000000003,
  713. "y": -5.557000000000016,
  714. "z": 0
  715. },
  716. "_lrot": {
  717. "__type__": "cc.Quat",
  718. "x": 0,
  719. "y": 0,
  720. "z": 0,
  721. "w": 1
  722. },
  723. "_lscale": {
  724. "__type__": "cc.Vec3",
  725. "x": 1,
  726. "y": 1,
  727. "z": 1
  728. },
  729. "_mobility": 0,
  730. "_layer": 33554432,
  731. "_euler": {
  732. "__type__": "cc.Vec3",
  733. "x": 0,
  734. "y": 0,
  735. "z": 0
  736. },
  737. "_id": ""
  738. },
  739. {
  740. "__type__": "cc.UITransform",
  741. "_name": "",
  742. "_objFlags": 0,
  743. "node": {
  744. "__id__": 25
  745. },
  746. "_enabled": true,
  747. "__prefab": {
  748. "__id__": 27
  749. },
  750. "_contentSize": {
  751. "__type__": "cc.Size",
  752. "width": 141.94,
  753. "height": 133.98000000000008
  754. },
  755. "_anchorPoint": {
  756. "__type__": "cc.Vec2",
  757. "x": 0.5,
  758. "y": 0.5
  759. },
  760. "_id": ""
  761. },
  762. {
  763. "__type__": "cc.CompPrefabInfo",
  764. "fileId": "d6j/2LGfVEw5gSNXg1JqiM"
  765. },
  766. {
  767. "__type__": "cc.PrefabInfo",
  768. "root": {
  769. "__id__": 1
  770. },
  771. "asset": {
  772. "__id__": 0
  773. },
  774. "fileId": "d9R3//mh1AcILct7rMl/A3",
  775. "instance": null,
  776. "targetOverrides": null,
  777. "nestedPrefabInstanceRoots": null
  778. },
  779. {
  780. "__type__": "cc.UITransform",
  781. "_name": "",
  782. "_objFlags": 0,
  783. "node": {
  784. "__id__": 20
  785. },
  786. "_enabled": true,
  787. "__prefab": {
  788. "__id__": 30
  789. },
  790. "_contentSize": {
  791. "__type__": "cc.Size",
  792. "width": 285,
  793. "height": 425
  794. },
  795. "_anchorPoint": {
  796. "__type__": "cc.Vec2",
  797. "x": 0.5,
  798. "y": 0.5
  799. },
  800. "_id": ""
  801. },
  802. {
  803. "__type__": "cc.CompPrefabInfo",
  804. "fileId": "d5EjJsKlBHqbHCKmqqebru"
  805. },
  806. {
  807. "__type__": "cc.Sprite",
  808. "_name": "",
  809. "_objFlags": 0,
  810. "node": {
  811. "__id__": 20
  812. },
  813. "_enabled": true,
  814. "__prefab": {
  815. "__id__": 32
  816. },
  817. "_customMaterial": null,
  818. "_srcBlendFactor": 2,
  819. "_dstBlendFactor": 4,
  820. "_color": {
  821. "__type__": "cc.Color",
  822. "r": 255,
  823. "g": 255,
  824. "b": 255,
  825. "a": 255
  826. },
  827. "_spriteFrame": {
  828. "__uuid__": "d18fbcd7-78fd-4c29-8891-65d6d0dd4621@f9941",
  829. "__expectedType__": "cc.SpriteFrame"
  830. },
  831. "_type": 0,
  832. "_fillType": 0,
  833. "_sizeMode": 1,
  834. "_fillCenter": {
  835. "__type__": "cc.Vec2",
  836. "x": 0,
  837. "y": 0
  838. },
  839. "_fillStart": 0,
  840. "_fillRange": 0,
  841. "_isTrimmedMode": true,
  842. "_useGrayscale": false,
  843. "_atlas": null,
  844. "_id": ""
  845. },
  846. {
  847. "__type__": "cc.CompPrefabInfo",
  848. "fileId": "d38K5KTIFPrYksgbZ0f+fs"
  849. },
  850. {
  851. "__type__": "f491dUFLQtL+YlGuT6VN2oN",
  852. "_name": "",
  853. "_objFlags": 0,
  854. "node": {
  855. "__id__": 20
  856. },
  857. "_enabled": true,
  858. "__prefab": {
  859. "__id__": 34
  860. },
  861. "_id": ""
  862. },
  863. {
  864. "__type__": "cc.CompPrefabInfo",
  865. "fileId": "2fgk0LlpFH4rQqUV6Hn3gX"
  866. },
  867. {
  868. "__type__": "cc.PrefabInfo",
  869. "root": {
  870. "__id__": 1
  871. },
  872. "asset": {
  873. "__id__": 0
  874. },
  875. "fileId": "b8pINlcRhDU4bI75KG0W+1",
  876. "instance": null,
  877. "targetOverrides": null,
  878. "nestedPrefabInstanceRoots": null
  879. },
  880. {
  881. "__type__": "cc.Node",
  882. "_name": "1",
  883. "_objFlags": 0,
  884. "_parent": {
  885. "__id__": 19
  886. },
  887. "_children": [
  888. {
  889. "__id__": 37
  890. },
  891. {
  892. "__id__": 41
  893. }
  894. ],
  895. "_active": true,
  896. "_components": [
  897. {
  898. "__id__": 45
  899. },
  900. {
  901. "__id__": 47
  902. },
  903. {
  904. "__id__": 49
  905. }
  906. ],
  907. "_prefab": {
  908. "__id__": 51
  909. },
  910. "_lpos": {
  911. "__type__": "cc.Vec3",
  912. "x": -141.454,
  913. "y": -30.37,
  914. "z": 0
  915. },
  916. "_lrot": {
  917. "__type__": "cc.Quat",
  918. "x": 0,
  919. "y": 0,
  920. "z": 1,
  921. "w": 6.123233995736766e-17
  922. },
  923. "_lscale": {
  924. "__type__": "cc.Vec3",
  925. "x": 1,
  926. "y": 1,
  927. "z": 1
  928. },
  929. "_mobility": 0,
  930. "_layer": 33554432,
  931. "_euler": {
  932. "__type__": "cc.Vec3",
  933. "x": 0,
  934. "y": 0,
  935. "z": 180
  936. },
  937. "_id": ""
  938. },
  939. {
  940. "__type__": "cc.Node",
  941. "_name": "Node-001",
  942. "_objFlags": 0,
  943. "_parent": {
  944. "__id__": 36
  945. },
  946. "_children": [],
  947. "_active": true,
  948. "_components": [
  949. {
  950. "__id__": 38
  951. }
  952. ],
  953. "_prefab": {
  954. "__id__": 40
  955. },
  956. "_lpos": {
  957. "__type__": "cc.Vec3",
  958. "x": 71.45600000000013,
  959. "y": 23.177999999999997,
  960. "z": 0
  961. },
  962. "_lrot": {
  963. "__type__": "cc.Quat",
  964. "x": -6.123233995736766e-17,
  965. "y": -6.123233995736766e-17,
  966. "z": -1,
  967. "w": 6.123233995736766e-17
  968. },
  969. "_lscale": {
  970. "__type__": "cc.Vec3",
  971. "x": 1,
  972. "y": 1,
  973. "z": 1
  974. },
  975. "_mobility": 0,
  976. "_layer": 33554432,
  977. "_euler": {
  978. "__type__": "cc.Vec3",
  979. "x": -180,
  980. "y": -180,
  981. "z": -7.016709298534876e-15
  982. },
  983. "_id": ""
  984. },
  985. {
  986. "__type__": "cc.UITransform",
  987. "_name": "",
  988. "_objFlags": 0,
  989. "node": {
  990. "__id__": 37
  991. },
  992. "_enabled": true,
  993. "__prefab": {
  994. "__id__": 39
  995. },
  996. "_contentSize": {
  997. "__type__": "cc.Size",
  998. "width": 141.94,
  999. "height": 421.92400000000004
  1000. },
  1001. "_anchorPoint": {
  1002. "__type__": "cc.Vec2",
  1003. "x": 0.5,
  1004. "y": 0.5
  1005. },
  1006. "_id": ""
  1007. },
  1008. {
  1009. "__type__": "cc.CompPrefabInfo",
  1010. "fileId": "c8i4BTCBxKrqLDqVdcroGj"
  1011. },
  1012. {
  1013. "__type__": "cc.PrefabInfo",
  1014. "root": {
  1015. "__id__": 1
  1016. },
  1017. "asset": {
  1018. "__id__": 0
  1019. },
  1020. "fileId": "73BgRyAcpO3aBLjrCvETDn",
  1021. "instance": null,
  1022. "targetOverrides": null,
  1023. "nestedPrefabInstanceRoots": null
  1024. },
  1025. {
  1026. "__type__": "cc.Node",
  1027. "_name": "Node-002",
  1028. "_objFlags": 0,
  1029. "_parent": {
  1030. "__id__": 36
  1031. },
  1032. "_children": [],
  1033. "_active": true,
  1034. "_components": [
  1035. {
  1036. "__id__": 42
  1037. }
  1038. ],
  1039. "_prefab": {
  1040. "__id__": 44
  1041. },
  1042. "_lpos": {
  1043. "__type__": "cc.Vec3",
  1044. "x": -70.48399999999992,
  1045. "y": 167.14999999999998,
  1046. "z": 0
  1047. },
  1048. "_lrot": {
  1049. "__type__": "cc.Quat",
  1050. "x": -6.123233995736766e-17,
  1051. "y": -6.123233995736766e-17,
  1052. "z": -1,
  1053. "w": 6.123233995736766e-17
  1054. },
  1055. "_lscale": {
  1056. "__type__": "cc.Vec3",
  1057. "x": 1,
  1058. "y": 1,
  1059. "z": 1
  1060. },
  1061. "_mobility": 0,
  1062. "_layer": 33554432,
  1063. "_euler": {
  1064. "__type__": "cc.Vec3",
  1065. "x": -180,
  1066. "y": -180,
  1067. "z": -7.016709298534876e-15
  1068. },
  1069. "_id": ""
  1070. },
  1071. {
  1072. "__type__": "cc.UITransform",
  1073. "_name": "",
  1074. "_objFlags": 0,
  1075. "node": {
  1076. "__id__": 41
  1077. },
  1078. "_enabled": true,
  1079. "__prefab": {
  1080. "__id__": 43
  1081. },
  1082. "_contentSize": {
  1083. "__type__": "cc.Size",
  1084. "width": 141.94,
  1085. "height": 133.98000000000008
  1086. },
  1087. "_anchorPoint": {
  1088. "__type__": "cc.Vec2",
  1089. "x": 0.5,
  1090. "y": 0.5
  1091. },
  1092. "_id": ""
  1093. },
  1094. {
  1095. "__type__": "cc.CompPrefabInfo",
  1096. "fileId": "31qVBIryZB9J0nUHJLdWws"
  1097. },
  1098. {
  1099. "__type__": "cc.PrefabInfo",
  1100. "root": {
  1101. "__id__": 1
  1102. },
  1103. "asset": {
  1104. "__id__": 0
  1105. },
  1106. "fileId": "9e1MtEDAlESrNsRVplj7TT",
  1107. "instance": null,
  1108. "targetOverrides": null,
  1109. "nestedPrefabInstanceRoots": null
  1110. },
  1111. {
  1112. "__type__": "cc.UITransform",
  1113. "_name": "",
  1114. "_objFlags": 0,
  1115. "node": {
  1116. "__id__": 36
  1117. },
  1118. "_enabled": true,
  1119. "__prefab": {
  1120. "__id__": 46
  1121. },
  1122. "_contentSize": {
  1123. "__type__": "cc.Size",
  1124. "width": 291,
  1125. "height": 473
  1126. },
  1127. "_anchorPoint": {
  1128. "__type__": "cc.Vec2",
  1129. "x": 0.5,
  1130. "y": 0.5
  1131. },
  1132. "_id": ""
  1133. },
  1134. {
  1135. "__type__": "cc.CompPrefabInfo",
  1136. "fileId": "2bkg0ogH5OwZswPNrD+sUy"
  1137. },
  1138. {
  1139. "__type__": "cc.Sprite",
  1140. "_name": "",
  1141. "_objFlags": 0,
  1142. "node": {
  1143. "__id__": 36
  1144. },
  1145. "_enabled": true,
  1146. "__prefab": {
  1147. "__id__": 48
  1148. },
  1149. "_customMaterial": null,
  1150. "_srcBlendFactor": 2,
  1151. "_dstBlendFactor": 4,
  1152. "_color": {
  1153. "__type__": "cc.Color",
  1154. "r": 255,
  1155. "g": 255,
  1156. "b": 255,
  1157. "a": 255
  1158. },
  1159. "_spriteFrame": {
  1160. "__uuid__": "ea01272c-f86e-4e0e-8579-81d4623506f1@f9941",
  1161. "__expectedType__": "cc.SpriteFrame"
  1162. },
  1163. "_type": 0,
  1164. "_fillType": 0,
  1165. "_sizeMode": 1,
  1166. "_fillCenter": {
  1167. "__type__": "cc.Vec2",
  1168. "x": 0,
  1169. "y": 0
  1170. },
  1171. "_fillStart": 0,
  1172. "_fillRange": 0,
  1173. "_isTrimmedMode": true,
  1174. "_useGrayscale": false,
  1175. "_atlas": null,
  1176. "_id": ""
  1177. },
  1178. {
  1179. "__type__": "cc.CompPrefabInfo",
  1180. "fileId": "e51JMcGxdCaohksTy+a5/+"
  1181. },
  1182. {
  1183. "__type__": "f491dUFLQtL+YlGuT6VN2oN",
  1184. "_name": "",
  1185. "_objFlags": 0,
  1186. "node": {
  1187. "__id__": 36
  1188. },
  1189. "_enabled": true,
  1190. "__prefab": {
  1191. "__id__": 50
  1192. },
  1193. "_id": ""
  1194. },
  1195. {
  1196. "__type__": "cc.CompPrefabInfo",
  1197. "fileId": "aeDaT3Wh5IA7j/BYeNGBT8"
  1198. },
  1199. {
  1200. "__type__": "cc.PrefabInfo",
  1201. "root": {
  1202. "__id__": 1
  1203. },
  1204. "asset": {
  1205. "__id__": 0
  1206. },
  1207. "fileId": "eeeogF+OdJ9bp0D52Gbh2S",
  1208. "instance": null,
  1209. "targetOverrides": null,
  1210. "nestedPrefabInstanceRoots": null
  1211. },
  1212. {
  1213. "__type__": "cc.Node",
  1214. "_name": "2",
  1215. "_objFlags": 0,
  1216. "_parent": {
  1217. "__id__": 19
  1218. },
  1219. "_children": [
  1220. {
  1221. "__id__": 53
  1222. },
  1223. {
  1224. "__id__": 57
  1225. }
  1226. ],
  1227. "_active": true,
  1228. "_components": [
  1229. {
  1230. "__id__": 61
  1231. },
  1232. {
  1233. "__id__": 63
  1234. },
  1235. {
  1236. "__id__": 65
  1237. }
  1238. ],
  1239. "_prefab": {
  1240. "__id__": 67
  1241. },
  1242. "_lpos": {
  1243. "__type__": "cc.Vec3",
  1244. "x": -72.276,
  1245. "y": 152.188,
  1246. "z": 0
  1247. },
  1248. "_lrot": {
  1249. "__type__": "cc.Quat",
  1250. "x": 0,
  1251. "y": 0,
  1252. "z": 0.7071067811865475,
  1253. "w": 0.7071067811865476
  1254. },
  1255. "_lscale": {
  1256. "__type__": "cc.Vec3",
  1257. "x": 1,
  1258. "y": 1,
  1259. "z": 1
  1260. },
  1261. "_mobility": 0,
  1262. "_layer": 33554432,
  1263. "_euler": {
  1264. "__type__": "cc.Vec3",
  1265. "x": 0,
  1266. "y": 0,
  1267. "z": 90
  1268. },
  1269. "_id": ""
  1270. },
  1271. {
  1272. "__type__": "cc.Node",
  1273. "_name": "Node-001",
  1274. "_objFlags": 0,
  1275. "_parent": {
  1276. "__id__": 52
  1277. },
  1278. "_children": [],
  1279. "_active": true,
  1280. "_components": [
  1281. {
  1282. "__id__": 54
  1283. }
  1284. ],
  1285. "_prefab": {
  1286. "__id__": 56
  1287. },
  1288. "_lpos": {
  1289. "__type__": "cc.Vec3",
  1290. "x": 70.97000000000003,
  1291. "y": 0,
  1292. "z": 0
  1293. },
  1294. "_lrot": {
  1295. "__type__": "cc.Quat",
  1296. "x": 0,
  1297. "y": 0,
  1298. "z": 0,
  1299. "w": 1
  1300. },
  1301. "_lscale": {
  1302. "__type__": "cc.Vec3",
  1303. "x": 1,
  1304. "y": 1,
  1305. "z": 1
  1306. },
  1307. "_mobility": 0,
  1308. "_layer": 33554432,
  1309. "_euler": {
  1310. "__type__": "cc.Vec3",
  1311. "x": 0,
  1312. "y": 0,
  1313. "z": 0
  1314. },
  1315. "_id": ""
  1316. },
  1317. {
  1318. "__type__": "cc.UITransform",
  1319. "_name": "",
  1320. "_objFlags": 0,
  1321. "node": {
  1322. "__id__": 53
  1323. },
  1324. "_enabled": true,
  1325. "__prefab": {
  1326. "__id__": 55
  1327. },
  1328. "_contentSize": {
  1329. "__type__": "cc.Size",
  1330. "width": 141.94,
  1331. "height": 421.92400000000004
  1332. },
  1333. "_anchorPoint": {
  1334. "__type__": "cc.Vec2",
  1335. "x": 0.5,
  1336. "y": 0.5
  1337. },
  1338. "_id": ""
  1339. },
  1340. {
  1341. "__type__": "cc.CompPrefabInfo",
  1342. "fileId": "97Yzu+D6RNobgZIlsBWZLf"
  1343. },
  1344. {
  1345. "__type__": "cc.PrefabInfo",
  1346. "root": {
  1347. "__id__": 1
  1348. },
  1349. "asset": {
  1350. "__id__": 0
  1351. },
  1352. "fileId": "1b/e51qDJEQJQvKrs+ks7J",
  1353. "instance": null,
  1354. "targetOverrides": null,
  1355. "nestedPrefabInstanceRoots": null
  1356. },
  1357. {
  1358. "__type__": "cc.Node",
  1359. "_name": "Node-002",
  1360. "_objFlags": 0,
  1361. "_parent": {
  1362. "__id__": 52
  1363. },
  1364. "_children": [],
  1365. "_active": true,
  1366. "_components": [
  1367. {
  1368. "__id__": 58
  1369. }
  1370. ],
  1371. "_prefab": {
  1372. "__id__": 60
  1373. },
  1374. "_lpos": {
  1375. "__type__": "cc.Vec3",
  1376. "x": -70.97000000000003,
  1377. "y": -5.557000000000016,
  1378. "z": 0
  1379. },
  1380. "_lrot": {
  1381. "__type__": "cc.Quat",
  1382. "x": 0,
  1383. "y": 0,
  1384. "z": 0,
  1385. "w": 1
  1386. },
  1387. "_lscale": {
  1388. "__type__": "cc.Vec3",
  1389. "x": 1,
  1390. "y": 1,
  1391. "z": 1
  1392. },
  1393. "_mobility": 0,
  1394. "_layer": 33554432,
  1395. "_euler": {
  1396. "__type__": "cc.Vec3",
  1397. "x": 0,
  1398. "y": 0,
  1399. "z": 0
  1400. },
  1401. "_id": ""
  1402. },
  1403. {
  1404. "__type__": "cc.UITransform",
  1405. "_name": "",
  1406. "_objFlags": 0,
  1407. "node": {
  1408. "__id__": 57
  1409. },
  1410. "_enabled": true,
  1411. "__prefab": {
  1412. "__id__": 59
  1413. },
  1414. "_contentSize": {
  1415. "__type__": "cc.Size",
  1416. "width": 141.94,
  1417. "height": 133.98000000000008
  1418. },
  1419. "_anchorPoint": {
  1420. "__type__": "cc.Vec2",
  1421. "x": 0.5,
  1422. "y": 0.5
  1423. },
  1424. "_id": ""
  1425. },
  1426. {
  1427. "__type__": "cc.CompPrefabInfo",
  1428. "fileId": "59EwpLUKxDQJoVX9cPjsNa"
  1429. },
  1430. {
  1431. "__type__": "cc.PrefabInfo",
  1432. "root": {
  1433. "__id__": 1
  1434. },
  1435. "asset": {
  1436. "__id__": 0
  1437. },
  1438. "fileId": "dbooW36PVHfYqRSvi9YHCi",
  1439. "instance": null,
  1440. "targetOverrides": null,
  1441. "nestedPrefabInstanceRoots": null
  1442. },
  1443. {
  1444. "__type__": "cc.UITransform",
  1445. "_name": "",
  1446. "_objFlags": 0,
  1447. "node": {
  1448. "__id__": 52
  1449. },
  1450. "_enabled": true,
  1451. "__prefab": {
  1452. "__id__": 62
  1453. },
  1454. "_contentSize": {
  1455. "__type__": "cc.Size",
  1456. "width": 285,
  1457. "height": 425
  1458. },
  1459. "_anchorPoint": {
  1460. "__type__": "cc.Vec2",
  1461. "x": 0.5,
  1462. "y": 0.5
  1463. },
  1464. "_id": ""
  1465. },
  1466. {
  1467. "__type__": "cc.CompPrefabInfo",
  1468. "fileId": "0aqc2cK41OOqlBebNbXQE/"
  1469. },
  1470. {
  1471. "__type__": "cc.Sprite",
  1472. "_name": "",
  1473. "_objFlags": 0,
  1474. "node": {
  1475. "__id__": 52
  1476. },
  1477. "_enabled": true,
  1478. "__prefab": {
  1479. "__id__": 64
  1480. },
  1481. "_customMaterial": null,
  1482. "_srcBlendFactor": 2,
  1483. "_dstBlendFactor": 4,
  1484. "_color": {
  1485. "__type__": "cc.Color",
  1486. "r": 255,
  1487. "g": 255,
  1488. "b": 255,
  1489. "a": 255
  1490. },
  1491. "_spriteFrame": {
  1492. "__uuid__": "d18fbcd7-78fd-4c29-8891-65d6d0dd4621@f9941",
  1493. "__expectedType__": "cc.SpriteFrame"
  1494. },
  1495. "_type": 0,
  1496. "_fillType": 0,
  1497. "_sizeMode": 1,
  1498. "_fillCenter": {
  1499. "__type__": "cc.Vec2",
  1500. "x": 0,
  1501. "y": 0
  1502. },
  1503. "_fillStart": 0,
  1504. "_fillRange": 0,
  1505. "_isTrimmedMode": true,
  1506. "_useGrayscale": false,
  1507. "_atlas": null,
  1508. "_id": ""
  1509. },
  1510. {
  1511. "__type__": "cc.CompPrefabInfo",
  1512. "fileId": "65wJwxnsZPd5joLCzltPo+"
  1513. },
  1514. {
  1515. "__type__": "f491dUFLQtL+YlGuT6VN2oN",
  1516. "_name": "",
  1517. "_objFlags": 0,
  1518. "node": {
  1519. "__id__": 52
  1520. },
  1521. "_enabled": true,
  1522. "__prefab": {
  1523. "__id__": 66
  1524. },
  1525. "_id": ""
  1526. },
  1527. {
  1528. "__type__": "cc.CompPrefabInfo",
  1529. "fileId": "ef+O3CV1xHzKbtFzwjVzhs"
  1530. },
  1531. {
  1532. "__type__": "cc.PrefabInfo",
  1533. "root": {
  1534. "__id__": 1
  1535. },
  1536. "asset": {
  1537. "__id__": 0
  1538. },
  1539. "fileId": "abOt6EfqRDubrl0fSq8vAT",
  1540. "instance": null,
  1541. "targetOverrides": null,
  1542. "nestedPrefabInstanceRoots": null
  1543. },
  1544. {
  1545. "__type__": "cc.Node",
  1546. "_name": "2",
  1547. "_objFlags": 0,
  1548. "_parent": {
  1549. "__id__": 19
  1550. },
  1551. "_children": [
  1552. {
  1553. "__id__": 69
  1554. }
  1555. ],
  1556. "_active": true,
  1557. "_components": [
  1558. {
  1559. "__id__": 73
  1560. },
  1561. {
  1562. "__id__": 75
  1563. },
  1564. {
  1565. "__id__": 77
  1566. }
  1567. ],
  1568. "_prefab": {
  1569. "__id__": 79
  1570. },
  1571. "_lpos": {
  1572. "__type__": "cc.Vec3",
  1573. "x": -355.61,
  1574. "y": -194.73000000000002,
  1575. "z": 0
  1576. },
  1577. "_lrot": {
  1578. "__type__": "cc.Quat",
  1579. "x": 0,
  1580. "y": 0,
  1581. "z": 0,
  1582. "w": 1
  1583. },
  1584. "_lscale": {
  1585. "__type__": "cc.Vec3",
  1586. "x": 1,
  1587. "y": 1,
  1588. "z": 1
  1589. },
  1590. "_mobility": 0,
  1591. "_layer": 33554432,
  1592. "_euler": {
  1593. "__type__": "cc.Vec3",
  1594. "x": 0,
  1595. "y": 0,
  1596. "z": 0
  1597. },
  1598. "_id": ""
  1599. },
  1600. {
  1601. "__type__": "cc.Node",
  1602. "_name": "Node",
  1603. "_objFlags": 0,
  1604. "_parent": {
  1605. "__id__": 68
  1606. },
  1607. "_children": [],
  1608. "_active": true,
  1609. "_components": [
  1610. {
  1611. "__id__": 70
  1612. }
  1613. ],
  1614. "_prefab": {
  1615. "__id__": 72
  1616. },
  1617. "_lpos": {
  1618. "__type__": "cc.Vec3",
  1619. "x": -0.3634999999999664,
  1620. "y": -1.7095000000000216,
  1621. "z": 0
  1622. },
  1623. "_lrot": {
  1624. "__type__": "cc.Quat",
  1625. "x": 0,
  1626. "y": 0,
  1627. "z": 0,
  1628. "w": 1
  1629. },
  1630. "_lscale": {
  1631. "__type__": "cc.Vec3",
  1632. "x": 1,
  1633. "y": 1,
  1634. "z": 1
  1635. },
  1636. "_mobility": 0,
  1637. "_layer": 33554432,
  1638. "_euler": {
  1639. "__type__": "cc.Vec3",
  1640. "x": 0,
  1641. "y": 0,
  1642. "z": 0
  1643. },
  1644. "_id": ""
  1645. },
  1646. {
  1647. "__type__": "cc.UITransform",
  1648. "_name": "",
  1649. "_objFlags": 0,
  1650. "node": {
  1651. "__id__": 69
  1652. },
  1653. "_enabled": true,
  1654. "__prefab": {
  1655. "__id__": 71
  1656. },
  1657. "_contentSize": {
  1658. "__type__": "cc.Size",
  1659. "width": 139.402,
  1660. "height": 141.423
  1661. },
  1662. "_anchorPoint": {
  1663. "__type__": "cc.Vec2",
  1664. "x": 0.5,
  1665. "y": 0.5
  1666. },
  1667. "_id": ""
  1668. },
  1669. {
  1670. "__type__": "cc.CompPrefabInfo",
  1671. "fileId": "a7zzdWt0BAz5qayJY9D8LK"
  1672. },
  1673. {
  1674. "__type__": "cc.PrefabInfo",
  1675. "root": {
  1676. "__id__": 1
  1677. },
  1678. "asset": {
  1679. "__id__": 0
  1680. },
  1681. "fileId": "e7g+cNnV9B/ZQ3Qu9QBaxh",
  1682. "instance": null,
  1683. "targetOverrides": null,
  1684. "nestedPrefabInstanceRoots": null
  1685. },
  1686. {
  1687. "__type__": "cc.UITransform",
  1688. "_name": "",
  1689. "_objFlags": 0,
  1690. "node": {
  1691. "__id__": 68
  1692. },
  1693. "_enabled": true,
  1694. "__prefab": {
  1695. "__id__": 74
  1696. },
  1697. "_contentSize": {
  1698. "__type__": "cc.Size",
  1699. "width": 143,
  1700. "height": 143
  1701. },
  1702. "_anchorPoint": {
  1703. "__type__": "cc.Vec2",
  1704. "x": 0.5,
  1705. "y": 0.5
  1706. },
  1707. "_id": ""
  1708. },
  1709. {
  1710. "__type__": "cc.CompPrefabInfo",
  1711. "fileId": "c4siwl7m9LhpI3nBTu3huC"
  1712. },
  1713. {
  1714. "__type__": "cc.Sprite",
  1715. "_name": "",
  1716. "_objFlags": 0,
  1717. "node": {
  1718. "__id__": 68
  1719. },
  1720. "_enabled": true,
  1721. "__prefab": {
  1722. "__id__": 76
  1723. },
  1724. "_customMaterial": null,
  1725. "_srcBlendFactor": 2,
  1726. "_dstBlendFactor": 4,
  1727. "_color": {
  1728. "__type__": "cc.Color",
  1729. "r": 255,
  1730. "g": 255,
  1731. "b": 255,
  1732. "a": 255
  1733. },
  1734. "_spriteFrame": {
  1735. "__uuid__": "82917f70-2d7c-4c38-853d-e7cfa824b2f3@f9941",
  1736. "__expectedType__": "cc.SpriteFrame"
  1737. },
  1738. "_type": 0,
  1739. "_fillType": 0,
  1740. "_sizeMode": 1,
  1741. "_fillCenter": {
  1742. "__type__": "cc.Vec2",
  1743. "x": 0,
  1744. "y": 0
  1745. },
  1746. "_fillStart": 0,
  1747. "_fillRange": 0,
  1748. "_isTrimmedMode": true,
  1749. "_useGrayscale": false,
  1750. "_atlas": null,
  1751. "_id": ""
  1752. },
  1753. {
  1754. "__type__": "cc.CompPrefabInfo",
  1755. "fileId": "b3bZwrowBBkIDXBpMP92Dg"
  1756. },
  1757. {
  1758. "__type__": "f491dUFLQtL+YlGuT6VN2oN",
  1759. "_name": "",
  1760. "_objFlags": 0,
  1761. "node": {
  1762. "__id__": 68
  1763. },
  1764. "_enabled": true,
  1765. "__prefab": {
  1766. "__id__": 78
  1767. },
  1768. "_id": ""
  1769. },
  1770. {
  1771. "__type__": "cc.CompPrefabInfo",
  1772. "fileId": "5896ELs/xKO7srAN1/gLks"
  1773. },
  1774. {
  1775. "__type__": "cc.PrefabInfo",
  1776. "root": {
  1777. "__id__": 1
  1778. },
  1779. "asset": {
  1780. "__id__": 0
  1781. },
  1782. "fileId": "96Rq5tz+pKPJxNMruWVs0U",
  1783. "instance": null,
  1784. "targetOverrides": null,
  1785. "nestedPrefabInstanceRoots": null
  1786. },
  1787. {
  1788. "__type__": "cc.Node",
  1789. "_name": "2",
  1790. "_objFlags": 0,
  1791. "_parent": {
  1792. "__id__": 19
  1793. },
  1794. "_children": [
  1795. {
  1796. "__id__": 81
  1797. }
  1798. ],
  1799. "_active": true,
  1800. "_components": [
  1801. {
  1802. "__id__": 85
  1803. },
  1804. {
  1805. "__id__": 87
  1806. },
  1807. {
  1808. "__id__": 89
  1809. }
  1810. ],
  1811. "_prefab": {
  1812. "__id__": 91
  1813. },
  1814. "_lpos": {
  1815. "__type__": "cc.Vec3",
  1816. "x": -355.61,
  1817. "y": 87.26999999999998,
  1818. "z": 0
  1819. },
  1820. "_lrot": {
  1821. "__type__": "cc.Quat",
  1822. "x": 0,
  1823. "y": 0,
  1824. "z": 0,
  1825. "w": 1
  1826. },
  1827. "_lscale": {
  1828. "__type__": "cc.Vec3",
  1829. "x": 1,
  1830. "y": 1,
  1831. "z": 1
  1832. },
  1833. "_mobility": 0,
  1834. "_layer": 33554432,
  1835. "_euler": {
  1836. "__type__": "cc.Vec3",
  1837. "x": 0,
  1838. "y": 0,
  1839. "z": 0
  1840. },
  1841. "_id": ""
  1842. },
  1843. {
  1844. "__type__": "cc.Node",
  1845. "_name": "Node",
  1846. "_objFlags": 0,
  1847. "_parent": {
  1848. "__id__": 80
  1849. },
  1850. "_children": [],
  1851. "_active": true,
  1852. "_components": [
  1853. {
  1854. "__id__": 82
  1855. }
  1856. ],
  1857. "_prefab": {
  1858. "__id__": 84
  1859. },
  1860. "_lpos": {
  1861. "__type__": "cc.Vec3",
  1862. "x": -0.3634999999999664,
  1863. "y": -1.7095000000000216,
  1864. "z": 0
  1865. },
  1866. "_lrot": {
  1867. "__type__": "cc.Quat",
  1868. "x": 0,
  1869. "y": 0,
  1870. "z": 0,
  1871. "w": 1
  1872. },
  1873. "_lscale": {
  1874. "__type__": "cc.Vec3",
  1875. "x": 1,
  1876. "y": 1,
  1877. "z": 1
  1878. },
  1879. "_mobility": 0,
  1880. "_layer": 33554432,
  1881. "_euler": {
  1882. "__type__": "cc.Vec3",
  1883. "x": 0,
  1884. "y": 0,
  1885. "z": 0
  1886. },
  1887. "_id": ""
  1888. },
  1889. {
  1890. "__type__": "cc.UITransform",
  1891. "_name": "",
  1892. "_objFlags": 0,
  1893. "node": {
  1894. "__id__": 81
  1895. },
  1896. "_enabled": true,
  1897. "__prefab": {
  1898. "__id__": 83
  1899. },
  1900. "_contentSize": {
  1901. "__type__": "cc.Size",
  1902. "width": 139.402,
  1903. "height": 141.423
  1904. },
  1905. "_anchorPoint": {
  1906. "__type__": "cc.Vec2",
  1907. "x": 0.5,
  1908. "y": 0.5
  1909. },
  1910. "_id": ""
  1911. },
  1912. {
  1913. "__type__": "cc.CompPrefabInfo",
  1914. "fileId": "1daGQngUFL9pog5Z71KMcF"
  1915. },
  1916. {
  1917. "__type__": "cc.PrefabInfo",
  1918. "root": {
  1919. "__id__": 1
  1920. },
  1921. "asset": {
  1922. "__id__": 0
  1923. },
  1924. "fileId": "87P5rj6VdLUYIPf2FKjUI1",
  1925. "instance": null,
  1926. "targetOverrides": null,
  1927. "nestedPrefabInstanceRoots": null
  1928. },
  1929. {
  1930. "__type__": "cc.UITransform",
  1931. "_name": "",
  1932. "_objFlags": 0,
  1933. "node": {
  1934. "__id__": 80
  1935. },
  1936. "_enabled": true,
  1937. "__prefab": {
  1938. "__id__": 86
  1939. },
  1940. "_contentSize": {
  1941. "__type__": "cc.Size",
  1942. "width": 143,
  1943. "height": 143
  1944. },
  1945. "_anchorPoint": {
  1946. "__type__": "cc.Vec2",
  1947. "x": 0.5,
  1948. "y": 0.5
  1949. },
  1950. "_id": ""
  1951. },
  1952. {
  1953. "__type__": "cc.CompPrefabInfo",
  1954. "fileId": "12quDP2+FMDpJF8g/QMUVg"
  1955. },
  1956. {
  1957. "__type__": "cc.Sprite",
  1958. "_name": "",
  1959. "_objFlags": 0,
  1960. "node": {
  1961. "__id__": 80
  1962. },
  1963. "_enabled": true,
  1964. "__prefab": {
  1965. "__id__": 88
  1966. },
  1967. "_customMaterial": null,
  1968. "_srcBlendFactor": 2,
  1969. "_dstBlendFactor": 4,
  1970. "_color": {
  1971. "__type__": "cc.Color",
  1972. "r": 255,
  1973. "g": 255,
  1974. "b": 255,
  1975. "a": 255
  1976. },
  1977. "_spriteFrame": {
  1978. "__uuid__": "82917f70-2d7c-4c38-853d-e7cfa824b2f3@f9941",
  1979. "__expectedType__": "cc.SpriteFrame"
  1980. },
  1981. "_type": 0,
  1982. "_fillType": 0,
  1983. "_sizeMode": 1,
  1984. "_fillCenter": {
  1985. "__type__": "cc.Vec2",
  1986. "x": 0,
  1987. "y": 0
  1988. },
  1989. "_fillStart": 0,
  1990. "_fillRange": 0,
  1991. "_isTrimmedMode": true,
  1992. "_useGrayscale": false,
  1993. "_atlas": null,
  1994. "_id": ""
  1995. },
  1996. {
  1997. "__type__": "cc.CompPrefabInfo",
  1998. "fileId": "d7rkxpq9lGGKPNH8gu/RLC"
  1999. },
  2000. {
  2001. "__type__": "f491dUFLQtL+YlGuT6VN2oN",
  2002. "_name": "",
  2003. "_objFlags": 0,
  2004. "node": {
  2005. "__id__": 80
  2006. },
  2007. "_enabled": true,
  2008. "__prefab": {
  2009. "__id__": 90
  2010. },
  2011. "_id": ""
  2012. },
  2013. {
  2014. "__type__": "cc.CompPrefabInfo",
  2015. "fileId": "2aacR5iABNmraTESJAn2pa"
  2016. },
  2017. {
  2018. "__type__": "cc.PrefabInfo",
  2019. "root": {
  2020. "__id__": 1
  2021. },
  2022. "asset": {
  2023. "__id__": 0
  2024. },
  2025. "fileId": "dbmHNjIhlGtIeDZ2EgQe8l",
  2026. "instance": null,
  2027. "targetOverrides": null,
  2028. "nestedPrefabInstanceRoots": null
  2029. },
  2030. {
  2031. "__type__": "cc.Node",
  2032. "_name": "2",
  2033. "_objFlags": 0,
  2034. "_parent": {
  2035. "__id__": 19
  2036. },
  2037. "_children": [
  2038. {
  2039. "__id__": 93
  2040. }
  2041. ],
  2042. "_active": true,
  2043. "_components": [
  2044. {
  2045. "__id__": 97
  2046. },
  2047. {
  2048. "__id__": 99
  2049. },
  2050. {
  2051. "__id__": 101
  2052. }
  2053. ],
  2054. "_prefab": {
  2055. "__id__": 103
  2056. },
  2057. "_lpos": {
  2058. "__type__": "cc.Vec3",
  2059. "x": -355.61,
  2060. "y": -52.73000000000002,
  2061. "z": 0
  2062. },
  2063. "_lrot": {
  2064. "__type__": "cc.Quat",
  2065. "x": 0,
  2066. "y": 0,
  2067. "z": 0,
  2068. "w": 1
  2069. },
  2070. "_lscale": {
  2071. "__type__": "cc.Vec3",
  2072. "x": 1,
  2073. "y": 1,
  2074. "z": 1
  2075. },
  2076. "_mobility": 0,
  2077. "_layer": 33554432,
  2078. "_euler": {
  2079. "__type__": "cc.Vec3",
  2080. "x": 0,
  2081. "y": 0,
  2082. "z": 0
  2083. },
  2084. "_id": ""
  2085. },
  2086. {
  2087. "__type__": "cc.Node",
  2088. "_name": "Node",
  2089. "_objFlags": 0,
  2090. "_parent": {
  2091. "__id__": 92
  2092. },
  2093. "_children": [],
  2094. "_active": true,
  2095. "_components": [
  2096. {
  2097. "__id__": 94
  2098. }
  2099. ],
  2100. "_prefab": {
  2101. "__id__": 96
  2102. },
  2103. "_lpos": {
  2104. "__type__": "cc.Vec3",
  2105. "x": -0.3634999999999664,
  2106. "y": -1.7095000000000216,
  2107. "z": 0
  2108. },
  2109. "_lrot": {
  2110. "__type__": "cc.Quat",
  2111. "x": 0,
  2112. "y": 0,
  2113. "z": 0,
  2114. "w": 1
  2115. },
  2116. "_lscale": {
  2117. "__type__": "cc.Vec3",
  2118. "x": 1,
  2119. "y": 1,
  2120. "z": 1
  2121. },
  2122. "_mobility": 0,
  2123. "_layer": 33554432,
  2124. "_euler": {
  2125. "__type__": "cc.Vec3",
  2126. "x": 0,
  2127. "y": 0,
  2128. "z": 0
  2129. },
  2130. "_id": ""
  2131. },
  2132. {
  2133. "__type__": "cc.UITransform",
  2134. "_name": "",
  2135. "_objFlags": 0,
  2136. "node": {
  2137. "__id__": 93
  2138. },
  2139. "_enabled": true,
  2140. "__prefab": {
  2141. "__id__": 95
  2142. },
  2143. "_contentSize": {
  2144. "__type__": "cc.Size",
  2145. "width": 139.402,
  2146. "height": 141.423
  2147. },
  2148. "_anchorPoint": {
  2149. "__type__": "cc.Vec2",
  2150. "x": 0.5,
  2151. "y": 0.5
  2152. },
  2153. "_id": ""
  2154. },
  2155. {
  2156. "__type__": "cc.CompPrefabInfo",
  2157. "fileId": "d3xZus2RRL/KKY6j5HXZZ8"
  2158. },
  2159. {
  2160. "__type__": "cc.PrefabInfo",
  2161. "root": {
  2162. "__id__": 1
  2163. },
  2164. "asset": {
  2165. "__id__": 0
  2166. },
  2167. "fileId": "ebccnG43BM7aKgmEBbQG2i",
  2168. "instance": null,
  2169. "targetOverrides": null,
  2170. "nestedPrefabInstanceRoots": null
  2171. },
  2172. {
  2173. "__type__": "cc.UITransform",
  2174. "_name": "",
  2175. "_objFlags": 0,
  2176. "node": {
  2177. "__id__": 92
  2178. },
  2179. "_enabled": true,
  2180. "__prefab": {
  2181. "__id__": 98
  2182. },
  2183. "_contentSize": {
  2184. "__type__": "cc.Size",
  2185. "width": 143,
  2186. "height": 143
  2187. },
  2188. "_anchorPoint": {
  2189. "__type__": "cc.Vec2",
  2190. "x": 0.5,
  2191. "y": 0.5
  2192. },
  2193. "_id": ""
  2194. },
  2195. {
  2196. "__type__": "cc.CompPrefabInfo",
  2197. "fileId": "1164l7GgJP2r8vKxFKloaQ"
  2198. },
  2199. {
  2200. "__type__": "cc.Sprite",
  2201. "_name": "",
  2202. "_objFlags": 0,
  2203. "node": {
  2204. "__id__": 92
  2205. },
  2206. "_enabled": true,
  2207. "__prefab": {
  2208. "__id__": 100
  2209. },
  2210. "_customMaterial": null,
  2211. "_srcBlendFactor": 2,
  2212. "_dstBlendFactor": 4,
  2213. "_color": {
  2214. "__type__": "cc.Color",
  2215. "r": 255,
  2216. "g": 255,
  2217. "b": 255,
  2218. "a": 255
  2219. },
  2220. "_spriteFrame": {
  2221. "__uuid__": "82917f70-2d7c-4c38-853d-e7cfa824b2f3@f9941",
  2222. "__expectedType__": "cc.SpriteFrame"
  2223. },
  2224. "_type": 0,
  2225. "_fillType": 0,
  2226. "_sizeMode": 1,
  2227. "_fillCenter": {
  2228. "__type__": "cc.Vec2",
  2229. "x": 0,
  2230. "y": 0
  2231. },
  2232. "_fillStart": 0,
  2233. "_fillRange": 0,
  2234. "_isTrimmedMode": true,
  2235. "_useGrayscale": false,
  2236. "_atlas": null,
  2237. "_id": ""
  2238. },
  2239. {
  2240. "__type__": "cc.CompPrefabInfo",
  2241. "fileId": "314sDTYkxMJJis0/IokPL1"
  2242. },
  2243. {
  2244. "__type__": "f491dUFLQtL+YlGuT6VN2oN",
  2245. "_name": "",
  2246. "_objFlags": 0,
  2247. "node": {
  2248. "__id__": 92
  2249. },
  2250. "_enabled": true,
  2251. "__prefab": {
  2252. "__id__": 102
  2253. },
  2254. "_id": ""
  2255. },
  2256. {
  2257. "__type__": "cc.CompPrefabInfo",
  2258. "fileId": "b3B2D5+PFJ84DbP9QUWIgT"
  2259. },
  2260. {
  2261. "__type__": "cc.PrefabInfo",
  2262. "root": {
  2263. "__id__": 1
  2264. },
  2265. "asset": {
  2266. "__id__": 0
  2267. },
  2268. "fileId": "05KHJ8qhJInLo6CNA7LvZs",
  2269. "instance": null,
  2270. "targetOverrides": null,
  2271. "nestedPrefabInstanceRoots": null
  2272. },
  2273. {
  2274. "__type__": "cc.Node",
  2275. "_name": "2",
  2276. "_objFlags": 0,
  2277. "_parent": {
  2278. "__id__": 19
  2279. },
  2280. "_children": [
  2281. {
  2282. "__id__": 105
  2283. }
  2284. ],
  2285. "_active": true,
  2286. "_components": [
  2287. {
  2288. "__id__": 109
  2289. },
  2290. {
  2291. "__id__": 111
  2292. },
  2293. {
  2294. "__id__": 113
  2295. }
  2296. ],
  2297. "_prefab": {
  2298. "__id__": 115
  2299. },
  2300. "_lpos": {
  2301. "__type__": "cc.Vec3",
  2302. "x": -355.61,
  2303. "y": 223.188,
  2304. "z": 0
  2305. },
  2306. "_lrot": {
  2307. "__type__": "cc.Quat",
  2308. "x": 0,
  2309. "y": 0,
  2310. "z": 0,
  2311. "w": 1
  2312. },
  2313. "_lscale": {
  2314. "__type__": "cc.Vec3",
  2315. "x": 1,
  2316. "y": 1,
  2317. "z": 1
  2318. },
  2319. "_mobility": 0,
  2320. "_layer": 33554432,
  2321. "_euler": {
  2322. "__type__": "cc.Vec3",
  2323. "x": 0,
  2324. "y": 0,
  2325. "z": 0
  2326. },
  2327. "_id": ""
  2328. },
  2329. {
  2330. "__type__": "cc.Node",
  2331. "_name": "Node",
  2332. "_objFlags": 0,
  2333. "_parent": {
  2334. "__id__": 104
  2335. },
  2336. "_children": [],
  2337. "_active": true,
  2338. "_components": [
  2339. {
  2340. "__id__": 106
  2341. }
  2342. ],
  2343. "_prefab": {
  2344. "__id__": 108
  2345. },
  2346. "_lpos": {
  2347. "__type__": "cc.Vec3",
  2348. "x": -0.3634999999999664,
  2349. "y": -1.7095000000000216,
  2350. "z": 0
  2351. },
  2352. "_lrot": {
  2353. "__type__": "cc.Quat",
  2354. "x": 0,
  2355. "y": 0,
  2356. "z": 0,
  2357. "w": 1
  2358. },
  2359. "_lscale": {
  2360. "__type__": "cc.Vec3",
  2361. "x": 1,
  2362. "y": 1,
  2363. "z": 1
  2364. },
  2365. "_mobility": 0,
  2366. "_layer": 33554432,
  2367. "_euler": {
  2368. "__type__": "cc.Vec3",
  2369. "x": 0,
  2370. "y": 0,
  2371. "z": 0
  2372. },
  2373. "_id": ""
  2374. },
  2375. {
  2376. "__type__": "cc.UITransform",
  2377. "_name": "",
  2378. "_objFlags": 0,
  2379. "node": {
  2380. "__id__": 105
  2381. },
  2382. "_enabled": true,
  2383. "__prefab": {
  2384. "__id__": 107
  2385. },
  2386. "_contentSize": {
  2387. "__type__": "cc.Size",
  2388. "width": 139.402,
  2389. "height": 141.423
  2390. },
  2391. "_anchorPoint": {
  2392. "__type__": "cc.Vec2",
  2393. "x": 0.5,
  2394. "y": 0.5
  2395. },
  2396. "_id": ""
  2397. },
  2398. {
  2399. "__type__": "cc.CompPrefabInfo",
  2400. "fileId": "2dVr47s6tCGqnHGgsWqqY2"
  2401. },
  2402. {
  2403. "__type__": "cc.PrefabInfo",
  2404. "root": {
  2405. "__id__": 1
  2406. },
  2407. "asset": {
  2408. "__id__": 0
  2409. },
  2410. "fileId": "50z2vYImNIrKm2H+BwYmo/",
  2411. "nestedPrefabInstanceRoots": null
  2412. },
  2413. {
  2414. "__type__": "cc.UITransform",
  2415. "_name": "",
  2416. "_objFlags": 0,
  2417. "node": {
  2418. "__id__": 104
  2419. },
  2420. "_enabled": true,
  2421. "__prefab": {
  2422. "__id__": 110
  2423. },
  2424. "_contentSize": {
  2425. "__type__": "cc.Size",
  2426. "width": 143,
  2427. "height": 143
  2428. },
  2429. "_anchorPoint": {
  2430. "__type__": "cc.Vec2",
  2431. "x": 0.5,
  2432. "y": 0.5
  2433. },
  2434. "_id": ""
  2435. },
  2436. {
  2437. "__type__": "cc.CompPrefabInfo",
  2438. "fileId": "49msYOvV9AR5c6ZGkELBFM"
  2439. },
  2440. {
  2441. "__type__": "cc.Sprite",
  2442. "_name": "",
  2443. "_objFlags": 0,
  2444. "node": {
  2445. "__id__": 104
  2446. },
  2447. "_enabled": true,
  2448. "__prefab": {
  2449. "__id__": 112
  2450. },
  2451. "_customMaterial": null,
  2452. "_srcBlendFactor": 2,
  2453. "_dstBlendFactor": 4,
  2454. "_color": {
  2455. "__type__": "cc.Color",
  2456. "r": 255,
  2457. "g": 255,
  2458. "b": 255,
  2459. "a": 255
  2460. },
  2461. "_spriteFrame": {
  2462. "__uuid__": "82917f70-2d7c-4c38-853d-e7cfa824b2f3@f9941",
  2463. "__expectedType__": "cc.SpriteFrame"
  2464. },
  2465. "_type": 0,
  2466. "_fillType": 0,
  2467. "_sizeMode": 1,
  2468. "_fillCenter": {
  2469. "__type__": "cc.Vec2",
  2470. "x": 0,
  2471. "y": 0
  2472. },
  2473. "_fillStart": 0,
  2474. "_fillRange": 0,
  2475. "_isTrimmedMode": true,
  2476. "_useGrayscale": false,
  2477. "_atlas": null,
  2478. "_id": ""
  2479. },
  2480. {
  2481. "__type__": "cc.CompPrefabInfo",
  2482. "fileId": "9dx7X9AERMNYu1Lugwf7ub"
  2483. },
  2484. {
  2485. "__type__": "f491dUFLQtL+YlGuT6VN2oN",
  2486. "_name": "",
  2487. "_objFlags": 0,
  2488. "node": {
  2489. "__id__": 104
  2490. },
  2491. "_enabled": true,
  2492. "__prefab": {
  2493. "__id__": 114
  2494. },
  2495. "_id": ""
  2496. },
  2497. {
  2498. "__type__": "cc.CompPrefabInfo",
  2499. "fileId": "59C9fhbTtG24hAMicpdV6/"
  2500. },
  2501. {
  2502. "__type__": "cc.PrefabInfo",
  2503. "root": {
  2504. "__id__": 1
  2505. },
  2506. "asset": {
  2507. "__id__": 0
  2508. },
  2509. "fileId": "d72vCjbOZJnb8e3cNgQea3",
  2510. "instance": null,
  2511. "targetOverrides": null,
  2512. "nestedPrefabInstanceRoots": null
  2513. },
  2514. {
  2515. "__type__": "cc.UITransform",
  2516. "_name": "",
  2517. "_objFlags": 0,
  2518. "node": {
  2519. "__id__": 19
  2520. },
  2521. "_enabled": true,
  2522. "__prefab": {
  2523. "__id__": 117
  2524. },
  2525. "_contentSize": {
  2526. "__type__": "cc.Size",
  2527. "width": 1300,
  2528. "height": 500
  2529. },
  2530. "_anchorPoint": {
  2531. "__type__": "cc.Vec2",
  2532. "x": 0.5,
  2533. "y": 0.5
  2534. },
  2535. "_id": ""
  2536. },
  2537. {
  2538. "__type__": "cc.CompPrefabInfo",
  2539. "fileId": "b8Jur5NUBKRogGsfLKSNFk"
  2540. },
  2541. {
  2542. "__type__": "cc.PrefabInfo",
  2543. "root": {
  2544. "__id__": 1
  2545. },
  2546. "asset": {
  2547. "__id__": 0
  2548. },
  2549. "fileId": "0e0BTxTBhNyLtyuM/xyTG+",
  2550. "instance": null,
  2551. "targetOverrides": null,
  2552. "nestedPrefabInstanceRoots": null
  2553. },
  2554. {
  2555. "__type__": "cc.UITransform",
  2556. "_name": "",
  2557. "_objFlags": 0,
  2558. "node": {
  2559. "__id__": 2
  2560. },
  2561. "_enabled": true,
  2562. "__prefab": {
  2563. "__id__": 120
  2564. },
  2565. "_contentSize": {
  2566. "__type__": "cc.Size",
  2567. "width": 1355,
  2568. "height": 1177
  2569. },
  2570. "_anchorPoint": {
  2571. "__type__": "cc.Vec2",
  2572. "x": 0.5,
  2573. "y": 0.5
  2574. },
  2575. "_id": ""
  2576. },
  2577. {
  2578. "__type__": "cc.CompPrefabInfo",
  2579. "fileId": "b1603yGVJIMrdObBqiy9M0"
  2580. },
  2581. {
  2582. "__type__": "cc.Sprite",
  2583. "_name": "",
  2584. "_objFlags": 0,
  2585. "node": {
  2586. "__id__": 2
  2587. },
  2588. "_enabled": true,
  2589. "__prefab": {
  2590. "__id__": 122
  2591. },
  2592. "_customMaterial": null,
  2593. "_srcBlendFactor": 2,
  2594. "_dstBlendFactor": 4,
  2595. "_color": {
  2596. "__type__": "cc.Color",
  2597. "r": 255,
  2598. "g": 255,
  2599. "b": 255,
  2600. "a": 255
  2601. },
  2602. "_spriteFrame": {
  2603. "__uuid__": "4e688368-a9c8-402c-a393-58128b2eaaa1@f9941",
  2604. "__expectedType__": "cc.SpriteFrame"
  2605. },
  2606. "_type": 0,
  2607. "_fillType": 0,
  2608. "_sizeMode": 1,
  2609. "_fillCenter": {
  2610. "__type__": "cc.Vec2",
  2611. "x": 0,
  2612. "y": 0
  2613. },
  2614. "_fillStart": 0,
  2615. "_fillRange": 0,
  2616. "_isTrimmedMode": true,
  2617. "_useGrayscale": false,
  2618. "_atlas": null,
  2619. "_id": ""
  2620. },
  2621. {
  2622. "__type__": "cc.CompPrefabInfo",
  2623. "fileId": "3cVJT3TC1AzJP9CbhjF9q8"
  2624. },
  2625. {
  2626. "__type__": "cc.PrefabInfo",
  2627. "root": {
  2628. "__id__": 1
  2629. },
  2630. "asset": {
  2631. "__id__": 0
  2632. },
  2633. "fileId": "e6tTpb0ipD373bCSXYJlkK",
  2634. "instance": null,
  2635. "targetOverrides": null,
  2636. "nestedPrefabInstanceRoots": null
  2637. },
  2638. {
  2639. "__type__": "cc.UITransform",
  2640. "_name": "",
  2641. "_objFlags": 0,
  2642. "node": {
  2643. "__id__": 1
  2644. },
  2645. "_enabled": true,
  2646. "__prefab": {
  2647. "__id__": 125
  2648. },
  2649. "_contentSize": {
  2650. "__type__": "cc.Size",
  2651. "width": 2388,
  2652. "height": 1668
  2653. },
  2654. "_anchorPoint": {
  2655. "__type__": "cc.Vec2",
  2656. "x": 0.5,
  2657. "y": 0.5
  2658. },
  2659. "_id": ""
  2660. },
  2661. {
  2662. "__type__": "cc.CompPrefabInfo",
  2663. "fileId": "f2FeaKsEBB4602zKH55T43"
  2664. },
  2665. {
  2666. "__type__": "cc.Widget",
  2667. "_name": "",
  2668. "_objFlags": 0,
  2669. "node": {
  2670. "__id__": 1
  2671. },
  2672. "_enabled": true,
  2673. "__prefab": {
  2674. "__id__": 127
  2675. },
  2676. "_alignFlags": 45,
  2677. "_target": null,
  2678. "_left": 0,
  2679. "_right": 0,
  2680. "_top": 0,
  2681. "_bottom": 0,
  2682. "_horizontalCenter": 0,
  2683. "_verticalCenter": 0,
  2684. "_isAbsLeft": true,
  2685. "_isAbsRight": true,
  2686. "_isAbsTop": true,
  2687. "_isAbsBottom": true,
  2688. "_isAbsHorizontalCenter": true,
  2689. "_isAbsVerticalCenter": true,
  2690. "_originalWidth": 100,
  2691. "_originalHeight": 100,
  2692. "_alignMode": 2,
  2693. "_lockFlags": 0,
  2694. "_id": ""
  2695. },
  2696. {
  2697. "__type__": "cc.CompPrefabInfo",
  2698. "fileId": "f59SFruKROhqEgGNV0//SS"
  2699. },
  2700. {
  2701. "__type__": "cc.PrefabInfo",
  2702. "root": {
  2703. "__id__": 1
  2704. },
  2705. "asset": {
  2706. "__id__": 0
  2707. },
  2708. "fileId": "1dkS24ZFBMu6WobAfu02Yf",
  2709. "instance": null,
  2710. "targetOverrides": null
  2711. }
  2712. ]