Lv5_3.prefab 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "Lv5_3",
  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_3",
  16. "_objFlags": 0,
  17. "__editorExtras__": {},
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. }
  23. ],
  24. "_active": true,
  25. "_components": [
  26. {
  27. "__id__": 132
  28. },
  29. {
  30. "__id__": 134
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 136
  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__": 127
  84. },
  85. {
  86. "__id__": 129
  87. }
  88. ],
  89. "_prefab": {
  90. "__id__": 131
  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": 164.676,
  197. "y": 67.633,
  198. "z": 0
  199. },
  200. "_lrot": {
  201. "__type__": "cc.Quat",
  202. "x": 0,
  203. "y": 0,
  204. "z": 0.7071067811865475,
  205. "w": 0.7071067811865476
  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": 90
  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": "aa8JELCD9PlaKfwaMoXlt6"
  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": "b25bKaWbREnaV1AENcqdn3"
  293. },
  294. {
  295. "__type__": "cc.PrefabInfo",
  296. "root": {
  297. "__id__": 1
  298. },
  299. "asset": {
  300. "__id__": 0
  301. },
  302. "fileId": "6dhBEfLU9MpbwGF6ZHK11L",
  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": -141.55,
  330. "y": -69.873,
  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": 290,
  370. "height": 428
  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": "bfBekQbABGM6VjBrOc1nyJ"
  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__": "57d0d810-9a2a-4656-a9a1-1f9aab52c098@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": "dfRV+aeYxLL6egOcdQ0Qp1"
  426. },
  427. {
  428. "__type__": "cc.PrefabInfo",
  429. "root": {
  430. "__id__": 1
  431. },
  432. "asset": {
  433. "__id__": 0
  434. },
  435. "fileId": "b1PklaXzZA/K6UQ9zmfy3u",
  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__": 84
  502. },
  503. {
  504. "__id__": 100
  505. },
  506. {
  507. "__id__": 112
  508. }
  509. ],
  510. "_active": true,
  511. "_components": [
  512. {
  513. "__id__": 124
  514. }
  515. ],
  516. "_prefab": {
  517. "__id__": 126
  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": "2",
  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": 354.626,
  581. "y": 0,
  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": "2",
  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": 211.172,
  913. "y": -71.77,
  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.45600000000002,
  959. "y": 2.9540000000000077,
  960. "z": 0
  961. },
  962. "_lrot": {
  963. "__type__": "cc.Quat",
  964. "x": 0,
  965. "y": 0,
  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": 274.285
  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": -72.48399999999992,
  1045. "y": 69.94400000000002,
  1046. "z": 0
  1047. },
  1048. "_lrot": {
  1049. "__type__": "cc.Quat",
  1050. "x": 0,
  1051. "y": 0,
  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": 290,
  1125. "height": 285
  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__": "3466fef5-9e17-4e22-888c-ce9408e22f9b@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": "1",
  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": 164.676,
  1245. "y": 67.633,
  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": 71.45600000000013,
  1291. "y": 23.177999999999997,
  1292. "z": 0
  1293. },
  1294. "_lrot": {
  1295. "__type__": "cc.Quat",
  1296. "x": 0,
  1297. "y": 0,
  1298. "z": 1,
  1299. "w": -6.123233995736766e-17
  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": -180,
  1312. "y": -180,
  1313. "z": -7.016709298534876e-15
  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": "bbF6YDKHRJnomu80+SaEzz"
  1343. },
  1344. {
  1345. "__type__": "cc.PrefabInfo",
  1346. "root": {
  1347. "__id__": 1
  1348. },
  1349. "asset": {
  1350. "__id__": 0
  1351. },
  1352. "fileId": "ecPWpAoSVO94akIpkg7hh4",
  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.48399999999992,
  1377. "y": 167.14999999999998,
  1378. "z": 0
  1379. },
  1380. "_lrot": {
  1381. "__type__": "cc.Quat",
  1382. "x": 0,
  1383. "y": 0,
  1384. "z": 1,
  1385. "w": -6.123233995736766e-17
  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": -180,
  1398. "y": -180,
  1399. "z": -7.016709298534876e-15
  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": "47evm/OQNOjKPzHP0+JiJt"
  1429. },
  1430. {
  1431. "__type__": "cc.PrefabInfo",
  1432. "root": {
  1433. "__id__": 1
  1434. },
  1435. "asset": {
  1436. "__id__": 0
  1437. },
  1438. "fileId": "62o6aPoHZLX6duQaGtb63P",
  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": 291,
  1457. "height": 473
  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": "51TGRjh+JK4IfRYJ0jPUWB"
  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__": "ea01272c-f86e-4e0e-8579-81d4623506f1@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": "5bndqeIyJECpUWVGebgk3C"
  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": "a6kF+g8ABBDLCOEog3J9oG"
  1530. },
  1531. {
  1532. "__type__": "cc.PrefabInfo",
  1533. "root": {
  1534. "__id__": 1
  1535. },
  1536. "asset": {
  1537. "__id__": 0
  1538. },
  1539. "fileId": "e7nnWRlLVKIIz3TkqkTS1T",
  1540. "instance": null,
  1541. "targetOverrides": null,
  1542. "nestedPrefabInstanceRoots": null
  1543. },
  1544. {
  1545. "__type__": "cc.Node",
  1546. "_name": "1",
  1547. "_objFlags": 0,
  1548. "_parent": {
  1549. "__id__": 19
  1550. },
  1551. "_children": [
  1552. {
  1553. "__id__": 69
  1554. },
  1555. {
  1556. "__id__": 73
  1557. }
  1558. ],
  1559. "_active": true,
  1560. "_components": [
  1561. {
  1562. "__id__": 77
  1563. },
  1564. {
  1565. "__id__": 79
  1566. },
  1567. {
  1568. "__id__": 81
  1569. }
  1570. ],
  1571. "_prefab": {
  1572. "__id__": 83
  1573. },
  1574. "_lpos": {
  1575. "__type__": "cc.Vec3",
  1576. "x": -141.55,
  1577. "y": -69.873,
  1578. "z": 0
  1579. },
  1580. "_lrot": {
  1581. "__type__": "cc.Quat",
  1582. "x": 0,
  1583. "y": 0,
  1584. "z": 0.7071067811865475,
  1585. "w": 0.7071067811865476
  1586. },
  1587. "_lscale": {
  1588. "__type__": "cc.Vec3",
  1589. "x": 1,
  1590. "y": -1,
  1591. "z": 1
  1592. },
  1593. "_mobility": 0,
  1594. "_layer": 33554432,
  1595. "_euler": {
  1596. "__type__": "cc.Vec3",
  1597. "x": 0,
  1598. "y": 0,
  1599. "z": 90
  1600. },
  1601. "_id": ""
  1602. },
  1603. {
  1604. "__type__": "cc.Node",
  1605. "_name": "Node",
  1606. "_objFlags": 0,
  1607. "_parent": {
  1608. "__id__": 68
  1609. },
  1610. "_children": [],
  1611. "_active": true,
  1612. "_components": [
  1613. {
  1614. "__id__": 70
  1615. }
  1616. ],
  1617. "_prefab": {
  1618. "__id__": 72
  1619. },
  1620. "_lpos": {
  1621. "__type__": "cc.Vec3",
  1622. "x": -71.22900000000001,
  1623. "y": 70.72249999999998,
  1624. "z": 0
  1625. },
  1626. "_lrot": {
  1627. "__type__": "cc.Quat",
  1628. "x": 0,
  1629. "y": 0,
  1630. "z": 0,
  1631. "w": 1
  1632. },
  1633. "_lscale": {
  1634. "__type__": "cc.Vec3",
  1635. "x": 1,
  1636. "y": 1,
  1637. "z": 1
  1638. },
  1639. "_mobility": 0,
  1640. "_layer": 33554432,
  1641. "_euler": {
  1642. "__type__": "cc.Vec3",
  1643. "x": 0,
  1644. "y": 0,
  1645. "z": 0
  1646. },
  1647. "_id": ""
  1648. },
  1649. {
  1650. "__type__": "cc.UITransform",
  1651. "_name": "",
  1652. "_objFlags": 0,
  1653. "node": {
  1654. "__id__": 69
  1655. },
  1656. "_enabled": true,
  1657. "__prefab": {
  1658. "__id__": 71
  1659. },
  1660. "_contentSize": {
  1661. "__type__": "cc.Size",
  1662. "width": 142.433,
  1663. "height": 282.87
  1664. },
  1665. "_anchorPoint": {
  1666. "__type__": "cc.Vec2",
  1667. "x": 0.5,
  1668. "y": 0.5
  1669. },
  1670. "_id": ""
  1671. },
  1672. {
  1673. "__type__": "cc.CompPrefabInfo",
  1674. "fileId": "8acQHAhGxL443YCkTKiKTg"
  1675. },
  1676. {
  1677. "__type__": "cc.PrefabInfo",
  1678. "root": {
  1679. "__id__": 1
  1680. },
  1681. "asset": {
  1682. "__id__": 0
  1683. },
  1684. "fileId": "87PXIAE2dMurDrW8LNmwXN",
  1685. "instance": null,
  1686. "targetOverrides": null,
  1687. "nestedPrefabInstanceRoots": null
  1688. },
  1689. {
  1690. "__type__": "cc.Node",
  1691. "_name": "Node-001",
  1692. "_objFlags": 0,
  1693. "_parent": {
  1694. "__id__": 68
  1695. },
  1696. "_children": [],
  1697. "_active": true,
  1698. "_components": [
  1699. {
  1700. "__id__": 74
  1701. }
  1702. ],
  1703. "_prefab": {
  1704. "__id__": 76
  1705. },
  1706. "_lpos": {
  1707. "__type__": "cc.Vec3",
  1708. "x": 70.19350000000007,
  1709. "y": -70.71199999999999,
  1710. "z": 0
  1711. },
  1712. "_lrot": {
  1713. "__type__": "cc.Quat",
  1714. "x": 0,
  1715. "y": 0,
  1716. "z": 0,
  1717. "w": 1
  1718. },
  1719. "_lscale": {
  1720. "__type__": "cc.Vec3",
  1721. "x": 1,
  1722. "y": 1,
  1723. "z": 1
  1724. },
  1725. "_mobility": 0,
  1726. "_layer": 33554432,
  1727. "_euler": {
  1728. "__type__": "cc.Vec3",
  1729. "x": 0,
  1730. "y": 0,
  1731. "z": 0
  1732. },
  1733. "_id": ""
  1734. },
  1735. {
  1736. "__type__": "cc.UITransform",
  1737. "_name": "",
  1738. "_objFlags": 0,
  1739. "node": {
  1740. "__id__": 73
  1741. },
  1742. "_enabled": true,
  1743. "__prefab": {
  1744. "__id__": 75
  1745. },
  1746. "_contentSize": {
  1747. "__type__": "cc.Size",
  1748. "width": 140.412,
  1749. "height": 282.87
  1750. },
  1751. "_anchorPoint": {
  1752. "__type__": "cc.Vec2",
  1753. "x": 0.5,
  1754. "y": 0.5
  1755. },
  1756. "_id": ""
  1757. },
  1758. {
  1759. "__type__": "cc.CompPrefabInfo",
  1760. "fileId": "5fx3o7gKRJabLsEiuuLrbb"
  1761. },
  1762. {
  1763. "__type__": "cc.PrefabInfo",
  1764. "root": {
  1765. "__id__": 1
  1766. },
  1767. "asset": {
  1768. "__id__": 0
  1769. },
  1770. "fileId": "476+ApvS5CA78YTi46Yed6",
  1771. "instance": null,
  1772. "targetOverrides": null,
  1773. "nestedPrefabInstanceRoots": null
  1774. },
  1775. {
  1776. "__type__": "cc.UITransform",
  1777. "_name": "",
  1778. "_objFlags": 0,
  1779. "node": {
  1780. "__id__": 68
  1781. },
  1782. "_enabled": true,
  1783. "__prefab": {
  1784. "__id__": 78
  1785. },
  1786. "_contentSize": {
  1787. "__type__": "cc.Size",
  1788. "width": 290,
  1789. "height": 428
  1790. },
  1791. "_anchorPoint": {
  1792. "__type__": "cc.Vec2",
  1793. "x": 0.5,
  1794. "y": 0.5
  1795. },
  1796. "_id": ""
  1797. },
  1798. {
  1799. "__type__": "cc.CompPrefabInfo",
  1800. "fileId": "5apfaRsypNkY3B2bVNLTlo"
  1801. },
  1802. {
  1803. "__type__": "cc.Sprite",
  1804. "_name": "",
  1805. "_objFlags": 0,
  1806. "node": {
  1807. "__id__": 68
  1808. },
  1809. "_enabled": true,
  1810. "__prefab": {
  1811. "__id__": 80
  1812. },
  1813. "_customMaterial": null,
  1814. "_srcBlendFactor": 2,
  1815. "_dstBlendFactor": 4,
  1816. "_color": {
  1817. "__type__": "cc.Color",
  1818. "r": 255,
  1819. "g": 255,
  1820. "b": 255,
  1821. "a": 255
  1822. },
  1823. "_spriteFrame": {
  1824. "__uuid__": "57d0d810-9a2a-4656-a9a1-1f9aab52c098@f9941",
  1825. "__expectedType__": "cc.SpriteFrame"
  1826. },
  1827. "_type": 0,
  1828. "_fillType": 0,
  1829. "_sizeMode": 1,
  1830. "_fillCenter": {
  1831. "__type__": "cc.Vec2",
  1832. "x": 0,
  1833. "y": 0
  1834. },
  1835. "_fillStart": 0,
  1836. "_fillRange": 0,
  1837. "_isTrimmedMode": true,
  1838. "_useGrayscale": false,
  1839. "_atlas": null,
  1840. "_id": ""
  1841. },
  1842. {
  1843. "__type__": "cc.CompPrefabInfo",
  1844. "fileId": "f6IuujGOhMjoskUnumwejB"
  1845. },
  1846. {
  1847. "__type__": "f491dUFLQtL+YlGuT6VN2oN",
  1848. "_name": "",
  1849. "_objFlags": 0,
  1850. "node": {
  1851. "__id__": 68
  1852. },
  1853. "_enabled": true,
  1854. "__prefab": {
  1855. "__id__": 82
  1856. },
  1857. "_id": ""
  1858. },
  1859. {
  1860. "__type__": "cc.CompPrefabInfo",
  1861. "fileId": "a7btCIz8lAS7yKb0DJn3Lt"
  1862. },
  1863. {
  1864. "__type__": "cc.PrefabInfo",
  1865. "root": {
  1866. "__id__": 1
  1867. },
  1868. "asset": {
  1869. "__id__": 0
  1870. },
  1871. "fileId": "23dEpkpbNOCbtLqZFEpCQB",
  1872. "instance": null,
  1873. "targetOverrides": null,
  1874. "nestedPrefabInstanceRoots": null
  1875. },
  1876. {
  1877. "__type__": "cc.Node",
  1878. "_name": "2",
  1879. "_objFlags": 0,
  1880. "_parent": {
  1881. "__id__": 19
  1882. },
  1883. "_children": [
  1884. {
  1885. "__id__": 85
  1886. },
  1887. {
  1888. "__id__": 89
  1889. }
  1890. ],
  1891. "_active": true,
  1892. "_components": [
  1893. {
  1894. "__id__": 93
  1895. },
  1896. {
  1897. "__id__": 95
  1898. },
  1899. {
  1900. "__id__": 97
  1901. }
  1902. ],
  1903. "_prefab": {
  1904. "__id__": 99
  1905. },
  1906. "_lpos": {
  1907. "__type__": "cc.Vec3",
  1908. "x": -353.68,
  1909. "y": 23.495,
  1910. "z": 0
  1911. },
  1912. "_lrot": {
  1913. "__type__": "cc.Quat",
  1914. "x": 0,
  1915. "y": 0,
  1916. "z": 1,
  1917. "w": 6.123233995736766e-17
  1918. },
  1919. "_lscale": {
  1920. "__type__": "cc.Vec3",
  1921. "x": 1,
  1922. "y": 1,
  1923. "z": 1
  1924. },
  1925. "_mobility": 0,
  1926. "_layer": 33554432,
  1927. "_euler": {
  1928. "__type__": "cc.Vec3",
  1929. "x": 0,
  1930. "y": 0,
  1931. "z": 180
  1932. },
  1933. "_id": ""
  1934. },
  1935. {
  1936. "__type__": "cc.Node",
  1937. "_name": "Node-001",
  1938. "_objFlags": 0,
  1939. "_parent": {
  1940. "__id__": 84
  1941. },
  1942. "_children": [],
  1943. "_active": true,
  1944. "_components": [
  1945. {
  1946. "__id__": 86
  1947. }
  1948. ],
  1949. "_prefab": {
  1950. "__id__": 88
  1951. },
  1952. "_lpos": {
  1953. "__type__": "cc.Vec3",
  1954. "x": 71.45600000000013,
  1955. "y": 23.177999999999997,
  1956. "z": 0
  1957. },
  1958. "_lrot": {
  1959. "__type__": "cc.Quat",
  1960. "x": 0,
  1961. "y": 0,
  1962. "z": 1,
  1963. "w": -6.123233995736766e-17
  1964. },
  1965. "_lscale": {
  1966. "__type__": "cc.Vec3",
  1967. "x": 1,
  1968. "y": 1,
  1969. "z": 1
  1970. },
  1971. "_mobility": 0,
  1972. "_layer": 33554432,
  1973. "_euler": {
  1974. "__type__": "cc.Vec3",
  1975. "x": -180,
  1976. "y": -180,
  1977. "z": -7.016709298534876e-15
  1978. },
  1979. "_id": ""
  1980. },
  1981. {
  1982. "__type__": "cc.UITransform",
  1983. "_name": "",
  1984. "_objFlags": 0,
  1985. "node": {
  1986. "__id__": 85
  1987. },
  1988. "_enabled": true,
  1989. "__prefab": {
  1990. "__id__": 87
  1991. },
  1992. "_contentSize": {
  1993. "__type__": "cc.Size",
  1994. "width": 141.94,
  1995. "height": 421.92400000000004
  1996. },
  1997. "_anchorPoint": {
  1998. "__type__": "cc.Vec2",
  1999. "x": 0.5,
  2000. "y": 0.5
  2001. },
  2002. "_id": ""
  2003. },
  2004. {
  2005. "__type__": "cc.CompPrefabInfo",
  2006. "fileId": "22wImHGbpEWa9vstFeAKPx"
  2007. },
  2008. {
  2009. "__type__": "cc.PrefabInfo",
  2010. "root": {
  2011. "__id__": 1
  2012. },
  2013. "asset": {
  2014. "__id__": 0
  2015. },
  2016. "fileId": "fe7OnqRJJEPrNCPO3boYDI",
  2017. "instance": null,
  2018. "targetOverrides": null,
  2019. "nestedPrefabInstanceRoots": null
  2020. },
  2021. {
  2022. "__type__": "cc.Node",
  2023. "_name": "Node-002",
  2024. "_objFlags": 0,
  2025. "_parent": {
  2026. "__id__": 84
  2027. },
  2028. "_children": [],
  2029. "_active": true,
  2030. "_components": [
  2031. {
  2032. "__id__": 90
  2033. }
  2034. ],
  2035. "_prefab": {
  2036. "__id__": 92
  2037. },
  2038. "_lpos": {
  2039. "__type__": "cc.Vec3",
  2040. "x": -70.48399999999992,
  2041. "y": 167.14999999999998,
  2042. "z": 0
  2043. },
  2044. "_lrot": {
  2045. "__type__": "cc.Quat",
  2046. "x": 0,
  2047. "y": 0,
  2048. "z": 1,
  2049. "w": -6.123233995736766e-17
  2050. },
  2051. "_lscale": {
  2052. "__type__": "cc.Vec3",
  2053. "x": 1,
  2054. "y": 1,
  2055. "z": 1
  2056. },
  2057. "_mobility": 0,
  2058. "_layer": 33554432,
  2059. "_euler": {
  2060. "__type__": "cc.Vec3",
  2061. "x": -180,
  2062. "y": -180,
  2063. "z": -7.016709298534876e-15
  2064. },
  2065. "_id": ""
  2066. },
  2067. {
  2068. "__type__": "cc.UITransform",
  2069. "_name": "",
  2070. "_objFlags": 0,
  2071. "node": {
  2072. "__id__": 89
  2073. },
  2074. "_enabled": true,
  2075. "__prefab": {
  2076. "__id__": 91
  2077. },
  2078. "_contentSize": {
  2079. "__type__": "cc.Size",
  2080. "width": 141.94,
  2081. "height": 133.98000000000008
  2082. },
  2083. "_anchorPoint": {
  2084. "__type__": "cc.Vec2",
  2085. "x": 0.5,
  2086. "y": 0.5
  2087. },
  2088. "_id": ""
  2089. },
  2090. {
  2091. "__type__": "cc.CompPrefabInfo",
  2092. "fileId": "06s/GejTBJzYiIHcFFXr1/"
  2093. },
  2094. {
  2095. "__type__": "cc.PrefabInfo",
  2096. "root": {
  2097. "__id__": 1
  2098. },
  2099. "asset": {
  2100. "__id__": 0
  2101. },
  2102. "fileId": "00h3cc3WFKKLQ5W3ZoAYv3",
  2103. "instance": null,
  2104. "targetOverrides": null,
  2105. "nestedPrefabInstanceRoots": null
  2106. },
  2107. {
  2108. "__type__": "cc.UITransform",
  2109. "_name": "",
  2110. "_objFlags": 0,
  2111. "node": {
  2112. "__id__": 84
  2113. },
  2114. "_enabled": true,
  2115. "__prefab": {
  2116. "__id__": 94
  2117. },
  2118. "_contentSize": {
  2119. "__type__": "cc.Size",
  2120. "width": 291,
  2121. "height": 473
  2122. },
  2123. "_anchorPoint": {
  2124. "__type__": "cc.Vec2",
  2125. "x": 0.5,
  2126. "y": 0.5
  2127. },
  2128. "_id": ""
  2129. },
  2130. {
  2131. "__type__": "cc.CompPrefabInfo",
  2132. "fileId": "b2UVpRrJtCT6nfOzX8CU/f"
  2133. },
  2134. {
  2135. "__type__": "cc.Sprite",
  2136. "_name": "",
  2137. "_objFlags": 0,
  2138. "node": {
  2139. "__id__": 84
  2140. },
  2141. "_enabled": true,
  2142. "__prefab": {
  2143. "__id__": 96
  2144. },
  2145. "_customMaterial": null,
  2146. "_srcBlendFactor": 2,
  2147. "_dstBlendFactor": 4,
  2148. "_color": {
  2149. "__type__": "cc.Color",
  2150. "r": 255,
  2151. "g": 255,
  2152. "b": 255,
  2153. "a": 255
  2154. },
  2155. "_spriteFrame": {
  2156. "__uuid__": "ea01272c-f86e-4e0e-8579-81d4623506f1@f9941",
  2157. "__expectedType__": "cc.SpriteFrame"
  2158. },
  2159. "_type": 0,
  2160. "_fillType": 0,
  2161. "_sizeMode": 1,
  2162. "_fillCenter": {
  2163. "__type__": "cc.Vec2",
  2164. "x": 0,
  2165. "y": 0
  2166. },
  2167. "_fillStart": 0,
  2168. "_fillRange": 0,
  2169. "_isTrimmedMode": true,
  2170. "_useGrayscale": false,
  2171. "_atlas": null,
  2172. "_id": ""
  2173. },
  2174. {
  2175. "__type__": "cc.CompPrefabInfo",
  2176. "fileId": "f7CRVPkwNAU47N4bpNhydI"
  2177. },
  2178. {
  2179. "__type__": "f491dUFLQtL+YlGuT6VN2oN",
  2180. "_name": "",
  2181. "_objFlags": 0,
  2182. "node": {
  2183. "__id__": 84
  2184. },
  2185. "_enabled": true,
  2186. "__prefab": {
  2187. "__id__": 98
  2188. },
  2189. "_id": ""
  2190. },
  2191. {
  2192. "__type__": "cc.CompPrefabInfo",
  2193. "fileId": "80nI5295NLZLntgsDvikKk"
  2194. },
  2195. {
  2196. "__type__": "cc.PrefabInfo",
  2197. "root": {
  2198. "__id__": 1
  2199. },
  2200. "asset": {
  2201. "__id__": 0
  2202. },
  2203. "fileId": "5d0IRiW6BMi7t9DP9IxQro",
  2204. "instance": null,
  2205. "targetOverrides": null,
  2206. "nestedPrefabInstanceRoots": null
  2207. },
  2208. {
  2209. "__type__": "cc.Node",
  2210. "_name": "2",
  2211. "_objFlags": 0,
  2212. "_parent": {
  2213. "__id__": 19
  2214. },
  2215. "_children": [
  2216. {
  2217. "__id__": 101
  2218. }
  2219. ],
  2220. "_active": true,
  2221. "_components": [
  2222. {
  2223. "__id__": 105
  2224. },
  2225. {
  2226. "__id__": 107
  2227. },
  2228. {
  2229. "__id__": 109
  2230. }
  2231. ],
  2232. "_prefab": {
  2233. "__id__": 111
  2234. },
  2235. "_lpos": {
  2236. "__type__": "cc.Vec3",
  2237. "x": -284.05,
  2238. "y": 141,
  2239. "z": 0
  2240. },
  2241. "_lrot": {
  2242. "__type__": "cc.Quat",
  2243. "x": 0,
  2244. "y": 0,
  2245. "z": 0,
  2246. "w": 1
  2247. },
  2248. "_lscale": {
  2249. "__type__": "cc.Vec3",
  2250. "x": 1,
  2251. "y": 1,
  2252. "z": 1
  2253. },
  2254. "_mobility": 0,
  2255. "_layer": 33554432,
  2256. "_euler": {
  2257. "__type__": "cc.Vec3",
  2258. "x": 0,
  2259. "y": 0,
  2260. "z": 0
  2261. },
  2262. "_id": ""
  2263. },
  2264. {
  2265. "__type__": "cc.Node",
  2266. "_name": "Node",
  2267. "_objFlags": 0,
  2268. "_parent": {
  2269. "__id__": 100
  2270. },
  2271. "_children": [],
  2272. "_active": true,
  2273. "_components": [
  2274. {
  2275. "__id__": 102
  2276. }
  2277. ],
  2278. "_prefab": {
  2279. "__id__": 104
  2280. },
  2281. "_lpos": {
  2282. "__type__": "cc.Vec3",
  2283. "x": -0.3634999999999664,
  2284. "y": -1.7095000000000216,
  2285. "z": 0
  2286. },
  2287. "_lrot": {
  2288. "__type__": "cc.Quat",
  2289. "x": 0,
  2290. "y": 0,
  2291. "z": 0,
  2292. "w": 1
  2293. },
  2294. "_lscale": {
  2295. "__type__": "cc.Vec3",
  2296. "x": 1,
  2297. "y": 1,
  2298. "z": 1
  2299. },
  2300. "_mobility": 0,
  2301. "_layer": 33554432,
  2302. "_euler": {
  2303. "__type__": "cc.Vec3",
  2304. "x": 0,
  2305. "y": 0,
  2306. "z": 0
  2307. },
  2308. "_id": ""
  2309. },
  2310. {
  2311. "__type__": "cc.UITransform",
  2312. "_name": "",
  2313. "_objFlags": 0,
  2314. "node": {
  2315. "__id__": 101
  2316. },
  2317. "_enabled": true,
  2318. "__prefab": {
  2319. "__id__": 103
  2320. },
  2321. "_contentSize": {
  2322. "__type__": "cc.Size",
  2323. "width": 139.402,
  2324. "height": 141.423
  2325. },
  2326. "_anchorPoint": {
  2327. "__type__": "cc.Vec2",
  2328. "x": 0.5,
  2329. "y": 0.5
  2330. },
  2331. "_id": ""
  2332. },
  2333. {
  2334. "__type__": "cc.CompPrefabInfo",
  2335. "fileId": "cdHwM5VwdNpKxY4W2Mh7l9"
  2336. },
  2337. {
  2338. "__type__": "cc.PrefabInfo",
  2339. "root": {
  2340. "__id__": 1
  2341. },
  2342. "asset": {
  2343. "__id__": 0
  2344. },
  2345. "fileId": "60+zPZLUpH8J8Tx9tnIYQL",
  2346. "instance": null,
  2347. "targetOverrides": null,
  2348. "nestedPrefabInstanceRoots": null
  2349. },
  2350. {
  2351. "__type__": "cc.UITransform",
  2352. "_name": "",
  2353. "_objFlags": 0,
  2354. "node": {
  2355. "__id__": 100
  2356. },
  2357. "_enabled": true,
  2358. "__prefab": {
  2359. "__id__": 106
  2360. },
  2361. "_contentSize": {
  2362. "__type__": "cc.Size",
  2363. "width": 143,
  2364. "height": 143
  2365. },
  2366. "_anchorPoint": {
  2367. "__type__": "cc.Vec2",
  2368. "x": 0.5,
  2369. "y": 0.5
  2370. },
  2371. "_id": ""
  2372. },
  2373. {
  2374. "__type__": "cc.CompPrefabInfo",
  2375. "fileId": "c0fPxbRVNLj7wAXc/Y9BQE"
  2376. },
  2377. {
  2378. "__type__": "cc.Sprite",
  2379. "_name": "",
  2380. "_objFlags": 0,
  2381. "node": {
  2382. "__id__": 100
  2383. },
  2384. "_enabled": true,
  2385. "__prefab": {
  2386. "__id__": 108
  2387. },
  2388. "_customMaterial": null,
  2389. "_srcBlendFactor": 2,
  2390. "_dstBlendFactor": 4,
  2391. "_color": {
  2392. "__type__": "cc.Color",
  2393. "r": 255,
  2394. "g": 255,
  2395. "b": 255,
  2396. "a": 255
  2397. },
  2398. "_spriteFrame": {
  2399. "__uuid__": "82917f70-2d7c-4c38-853d-e7cfa824b2f3@f9941",
  2400. "__expectedType__": "cc.SpriteFrame"
  2401. },
  2402. "_type": 0,
  2403. "_fillType": 0,
  2404. "_sizeMode": 1,
  2405. "_fillCenter": {
  2406. "__type__": "cc.Vec2",
  2407. "x": 0,
  2408. "y": 0
  2409. },
  2410. "_fillStart": 0,
  2411. "_fillRange": 0,
  2412. "_isTrimmedMode": true,
  2413. "_useGrayscale": false,
  2414. "_atlas": null,
  2415. "_id": ""
  2416. },
  2417. {
  2418. "__type__": "cc.CompPrefabInfo",
  2419. "fileId": "5fcqBqRitGco43E6eRD6ws"
  2420. },
  2421. {
  2422. "__type__": "f491dUFLQtL+YlGuT6VN2oN",
  2423. "_name": "",
  2424. "_objFlags": 0,
  2425. "node": {
  2426. "__id__": 100
  2427. },
  2428. "_enabled": true,
  2429. "__prefab": {
  2430. "__id__": 110
  2431. },
  2432. "_id": ""
  2433. },
  2434. {
  2435. "__type__": "cc.CompPrefabInfo",
  2436. "fileId": "0eCM29J7BMZZdnpFEqiLSR"
  2437. },
  2438. {
  2439. "__type__": "cc.PrefabInfo",
  2440. "root": {
  2441. "__id__": 1
  2442. },
  2443. "asset": {
  2444. "__id__": 0
  2445. },
  2446. "fileId": "cczFQeSWlOmaJM0AOsHJGN",
  2447. "instance": null,
  2448. "targetOverrides": null,
  2449. "nestedPrefabInstanceRoots": null
  2450. },
  2451. {
  2452. "__type__": "cc.Node",
  2453. "_name": "2",
  2454. "_objFlags": 0,
  2455. "_parent": {
  2456. "__id__": 19
  2457. },
  2458. "_children": [
  2459. {
  2460. "__id__": 113
  2461. }
  2462. ],
  2463. "_active": true,
  2464. "_components": [
  2465. {
  2466. "__id__": 117
  2467. },
  2468. {
  2469. "__id__": 119
  2470. },
  2471. {
  2472. "__id__": 121
  2473. }
  2474. ],
  2475. "_prefab": {
  2476. "__id__": 123
  2477. },
  2478. "_lpos": {
  2479. "__type__": "cc.Vec3",
  2480. "x": -141.55,
  2481. "y": 141,
  2482. "z": 0
  2483. },
  2484. "_lrot": {
  2485. "__type__": "cc.Quat",
  2486. "x": 0,
  2487. "y": 0,
  2488. "z": 0,
  2489. "w": 1
  2490. },
  2491. "_lscale": {
  2492. "__type__": "cc.Vec3",
  2493. "x": 1,
  2494. "y": 1,
  2495. "z": 1
  2496. },
  2497. "_mobility": 0,
  2498. "_layer": 33554432,
  2499. "_euler": {
  2500. "__type__": "cc.Vec3",
  2501. "x": 0,
  2502. "y": 0,
  2503. "z": 0
  2504. },
  2505. "_id": ""
  2506. },
  2507. {
  2508. "__type__": "cc.Node",
  2509. "_name": "Node",
  2510. "_objFlags": 0,
  2511. "_parent": {
  2512. "__id__": 112
  2513. },
  2514. "_children": [],
  2515. "_active": true,
  2516. "_components": [
  2517. {
  2518. "__id__": 114
  2519. }
  2520. ],
  2521. "_prefab": {
  2522. "__id__": 116
  2523. },
  2524. "_lpos": {
  2525. "__type__": "cc.Vec3",
  2526. "x": -0.3634999999999664,
  2527. "y": -1.7095000000000216,
  2528. "z": 0
  2529. },
  2530. "_lrot": {
  2531. "__type__": "cc.Quat",
  2532. "x": 0,
  2533. "y": 0,
  2534. "z": 0,
  2535. "w": 1
  2536. },
  2537. "_lscale": {
  2538. "__type__": "cc.Vec3",
  2539. "x": 1,
  2540. "y": 1,
  2541. "z": 1
  2542. },
  2543. "_mobility": 0,
  2544. "_layer": 33554432,
  2545. "_euler": {
  2546. "__type__": "cc.Vec3",
  2547. "x": 0,
  2548. "y": 0,
  2549. "z": 0
  2550. },
  2551. "_id": ""
  2552. },
  2553. {
  2554. "__type__": "cc.UITransform",
  2555. "_name": "",
  2556. "_objFlags": 0,
  2557. "node": {
  2558. "__id__": 113
  2559. },
  2560. "_enabled": true,
  2561. "__prefab": {
  2562. "__id__": 115
  2563. },
  2564. "_contentSize": {
  2565. "__type__": "cc.Size",
  2566. "width": 139.402,
  2567. "height": 141.423
  2568. },
  2569. "_anchorPoint": {
  2570. "__type__": "cc.Vec2",
  2571. "x": 0.5,
  2572. "y": 0.5
  2573. },
  2574. "_id": ""
  2575. },
  2576. {
  2577. "__type__": "cc.CompPrefabInfo",
  2578. "fileId": "947pXmztNFZpfkN58kahZR"
  2579. },
  2580. {
  2581. "__type__": "cc.PrefabInfo",
  2582. "root": {
  2583. "__id__": 1
  2584. },
  2585. "asset": {
  2586. "__id__": 0
  2587. },
  2588. "fileId": "3f7KQMR49DE7crXMWNkGHY",
  2589. "instance": null,
  2590. "targetOverrides": null,
  2591. "nestedPrefabInstanceRoots": null
  2592. },
  2593. {
  2594. "__type__": "cc.UITransform",
  2595. "_name": "",
  2596. "_objFlags": 0,
  2597. "node": {
  2598. "__id__": 112
  2599. },
  2600. "_enabled": true,
  2601. "__prefab": {
  2602. "__id__": 118
  2603. },
  2604. "_contentSize": {
  2605. "__type__": "cc.Size",
  2606. "width": 143,
  2607. "height": 143
  2608. },
  2609. "_anchorPoint": {
  2610. "__type__": "cc.Vec2",
  2611. "x": 0.5,
  2612. "y": 0.5
  2613. },
  2614. "_id": ""
  2615. },
  2616. {
  2617. "__type__": "cc.CompPrefabInfo",
  2618. "fileId": "19ruh+qnVM/KseObzAXdDE"
  2619. },
  2620. {
  2621. "__type__": "cc.Sprite",
  2622. "_name": "",
  2623. "_objFlags": 0,
  2624. "node": {
  2625. "__id__": 112
  2626. },
  2627. "_enabled": true,
  2628. "__prefab": {
  2629. "__id__": 120
  2630. },
  2631. "_customMaterial": null,
  2632. "_srcBlendFactor": 2,
  2633. "_dstBlendFactor": 4,
  2634. "_color": {
  2635. "__type__": "cc.Color",
  2636. "r": 255,
  2637. "g": 255,
  2638. "b": 255,
  2639. "a": 255
  2640. },
  2641. "_spriteFrame": {
  2642. "__uuid__": "82917f70-2d7c-4c38-853d-e7cfa824b2f3@f9941",
  2643. "__expectedType__": "cc.SpriteFrame"
  2644. },
  2645. "_type": 0,
  2646. "_fillType": 0,
  2647. "_sizeMode": 1,
  2648. "_fillCenter": {
  2649. "__type__": "cc.Vec2",
  2650. "x": 0,
  2651. "y": 0
  2652. },
  2653. "_fillStart": 0,
  2654. "_fillRange": 0,
  2655. "_isTrimmedMode": true,
  2656. "_useGrayscale": false,
  2657. "_atlas": null,
  2658. "_id": ""
  2659. },
  2660. {
  2661. "__type__": "cc.CompPrefabInfo",
  2662. "fileId": "22DS0KZp1IsaBhRQu9nnmM"
  2663. },
  2664. {
  2665. "__type__": "f491dUFLQtL+YlGuT6VN2oN",
  2666. "_name": "",
  2667. "_objFlags": 0,
  2668. "node": {
  2669. "__id__": 112
  2670. },
  2671. "_enabled": true,
  2672. "__prefab": {
  2673. "__id__": 122
  2674. },
  2675. "_id": ""
  2676. },
  2677. {
  2678. "__type__": "cc.CompPrefabInfo",
  2679. "fileId": "6bI/QzO+BIeq6t4aS1OW16"
  2680. },
  2681. {
  2682. "__type__": "cc.PrefabInfo",
  2683. "root": {
  2684. "__id__": 1
  2685. },
  2686. "asset": {
  2687. "__id__": 0
  2688. },
  2689. "fileId": "29gxWcFIxGu4cDGQw0GVj0",
  2690. "instance": null,
  2691. "targetOverrides": null,
  2692. "nestedPrefabInstanceRoots": null
  2693. },
  2694. {
  2695. "__type__": "cc.UITransform",
  2696. "_name": "",
  2697. "_objFlags": 0,
  2698. "node": {
  2699. "__id__": 19
  2700. },
  2701. "_enabled": true,
  2702. "__prefab": {
  2703. "__id__": 125
  2704. },
  2705. "_contentSize": {
  2706. "__type__": "cc.Size",
  2707. "width": 1300,
  2708. "height": 500
  2709. },
  2710. "_anchorPoint": {
  2711. "__type__": "cc.Vec2",
  2712. "x": 0.5,
  2713. "y": 0.5
  2714. },
  2715. "_id": ""
  2716. },
  2717. {
  2718. "__type__": "cc.CompPrefabInfo",
  2719. "fileId": "b8Jur5NUBKRogGsfLKSNFk"
  2720. },
  2721. {
  2722. "__type__": "cc.PrefabInfo",
  2723. "root": {
  2724. "__id__": 1
  2725. },
  2726. "asset": {
  2727. "__id__": 0
  2728. },
  2729. "fileId": "0e0BTxTBhNyLtyuM/xyTG+",
  2730. "instance": null,
  2731. "targetOverrides": null,
  2732. "nestedPrefabInstanceRoots": null
  2733. },
  2734. {
  2735. "__type__": "cc.UITransform",
  2736. "_name": "",
  2737. "_objFlags": 0,
  2738. "node": {
  2739. "__id__": 2
  2740. },
  2741. "_enabled": true,
  2742. "__prefab": {
  2743. "__id__": 128
  2744. },
  2745. "_contentSize": {
  2746. "__type__": "cc.Size",
  2747. "width": 1355,
  2748. "height": 1177
  2749. },
  2750. "_anchorPoint": {
  2751. "__type__": "cc.Vec2",
  2752. "x": 0.5,
  2753. "y": 0.5
  2754. },
  2755. "_id": ""
  2756. },
  2757. {
  2758. "__type__": "cc.CompPrefabInfo",
  2759. "fileId": "b1603yGVJIMrdObBqiy9M0"
  2760. },
  2761. {
  2762. "__type__": "cc.Sprite",
  2763. "_name": "",
  2764. "_objFlags": 0,
  2765. "node": {
  2766. "__id__": 2
  2767. },
  2768. "_enabled": true,
  2769. "__prefab": {
  2770. "__id__": 130
  2771. },
  2772. "_customMaterial": null,
  2773. "_srcBlendFactor": 2,
  2774. "_dstBlendFactor": 4,
  2775. "_color": {
  2776. "__type__": "cc.Color",
  2777. "r": 255,
  2778. "g": 255,
  2779. "b": 255,
  2780. "a": 255
  2781. },
  2782. "_spriteFrame": {
  2783. "__uuid__": "4e688368-a9c8-402c-a393-58128b2eaaa1@f9941",
  2784. "__expectedType__": "cc.SpriteFrame"
  2785. },
  2786. "_type": 0,
  2787. "_fillType": 0,
  2788. "_sizeMode": 1,
  2789. "_fillCenter": {
  2790. "__type__": "cc.Vec2",
  2791. "x": 0,
  2792. "y": 0
  2793. },
  2794. "_fillStart": 0,
  2795. "_fillRange": 0,
  2796. "_isTrimmedMode": true,
  2797. "_useGrayscale": false,
  2798. "_atlas": null,
  2799. "_id": ""
  2800. },
  2801. {
  2802. "__type__": "cc.CompPrefabInfo",
  2803. "fileId": "3cVJT3TC1AzJP9CbhjF9q8"
  2804. },
  2805. {
  2806. "__type__": "cc.PrefabInfo",
  2807. "root": {
  2808. "__id__": 1
  2809. },
  2810. "asset": {
  2811. "__id__": 0
  2812. },
  2813. "fileId": "e6tTpb0ipD373bCSXYJlkK",
  2814. "instance": null,
  2815. "targetOverrides": null,
  2816. "nestedPrefabInstanceRoots": null
  2817. },
  2818. {
  2819. "__type__": "cc.UITransform",
  2820. "_name": "",
  2821. "_objFlags": 0,
  2822. "node": {
  2823. "__id__": 1
  2824. },
  2825. "_enabled": true,
  2826. "__prefab": {
  2827. "__id__": 133
  2828. },
  2829. "_contentSize": {
  2830. "__type__": "cc.Size",
  2831. "width": 2388,
  2832. "height": 1668
  2833. },
  2834. "_anchorPoint": {
  2835. "__type__": "cc.Vec2",
  2836. "x": 0.5,
  2837. "y": 0.5
  2838. },
  2839. "_id": ""
  2840. },
  2841. {
  2842. "__type__": "cc.CompPrefabInfo",
  2843. "fileId": "f2FeaKsEBB4602zKH55T43"
  2844. },
  2845. {
  2846. "__type__": "cc.Widget",
  2847. "_name": "",
  2848. "_objFlags": 0,
  2849. "node": {
  2850. "__id__": 1
  2851. },
  2852. "_enabled": true,
  2853. "__prefab": {
  2854. "__id__": 135
  2855. },
  2856. "_alignFlags": 45,
  2857. "_target": null,
  2858. "_left": 0,
  2859. "_right": 0,
  2860. "_top": 0,
  2861. "_bottom": 0,
  2862. "_horizontalCenter": 0,
  2863. "_verticalCenter": 0,
  2864. "_isAbsLeft": true,
  2865. "_isAbsRight": true,
  2866. "_isAbsTop": true,
  2867. "_isAbsBottom": true,
  2868. "_isAbsHorizontalCenter": true,
  2869. "_isAbsVerticalCenter": true,
  2870. "_originalWidth": 100,
  2871. "_originalHeight": 100,
  2872. "_alignMode": 2,
  2873. "_lockFlags": 0,
  2874. "_id": ""
  2875. },
  2876. {
  2877. "__type__": "cc.CompPrefabInfo",
  2878. "fileId": "f59SFruKROhqEgGNV0//SS"
  2879. },
  2880. {
  2881. "__type__": "cc.PrefabInfo",
  2882. "root": {
  2883. "__id__": 1
  2884. },
  2885. "asset": {
  2886. "__id__": 0
  2887. },
  2888. "fileId": "1dkS24ZFBMu6WobAfu02Yf",
  2889. "instance": null,
  2890. "targetOverrides": null
  2891. }
  2892. ]