FightingUI.prefab 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false
  12. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "FightingUI",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 6
  24. },
  25. {
  26. "__id__": 22
  27. },
  28. {
  29. "__id__": 38
  30. },
  31. {
  32. "__id__": 47
  33. },
  34. {
  35. "__id__": 52
  36. }
  37. ],
  38. "_active": true,
  39. "_components": [
  40. {
  41. "__id__": 79
  42. },
  43. {
  44. "__id__": 80
  45. },
  46. {
  47. "__id__": 81
  48. }
  49. ],
  50. "_prefab": {
  51. "__id__": 82
  52. },
  53. "_lpos": {
  54. "__type__": "cc.Vec3",
  55. "x": 0,
  56. "y": 0,
  57. "z": 0
  58. },
  59. "_lrot": {
  60. "__type__": "cc.Quat",
  61. "x": 0,
  62. "y": 0,
  63. "z": 0,
  64. "w": 1
  65. },
  66. "_lscale": {
  67. "__type__": "cc.Vec3",
  68. "x": 1,
  69. "y": 1,
  70. "z": 1
  71. },
  72. "_layer": 1073741824,
  73. "_euler": {
  74. "__type__": "cc.Vec3",
  75. "x": 0,
  76. "y": 0,
  77. "z": 0
  78. },
  79. "_id": ""
  80. },
  81. {
  82. "__type__": "cc.Node",
  83. "_name": "Design",
  84. "_objFlags": 0,
  85. "_parent": {
  86. "__id__": 1
  87. },
  88. "_children": [],
  89. "_active": false,
  90. "_components": [
  91. {
  92. "__id__": 3
  93. },
  94. {
  95. "__id__": 4
  96. }
  97. ],
  98. "_prefab": {
  99. "__id__": 5
  100. },
  101. "_lpos": {
  102. "__type__": "cc.Vec3",
  103. "x": 0,
  104. "y": 0,
  105. "z": 0
  106. },
  107. "_lrot": {
  108. "__type__": "cc.Quat",
  109. "x": 0,
  110. "y": 0,
  111. "z": 0,
  112. "w": 1
  113. },
  114. "_lscale": {
  115. "__type__": "cc.Vec3",
  116. "x": 1,
  117. "y": 1,
  118. "z": 1
  119. },
  120. "_layer": 33554432,
  121. "_euler": {
  122. "__type__": "cc.Vec3",
  123. "x": 0,
  124. "y": 0,
  125. "z": 0
  126. },
  127. "_id": ""
  128. },
  129. {
  130. "__type__": "cc.UITransformComponent",
  131. "_name": "",
  132. "_objFlags": 0,
  133. "node": {
  134. "__id__": 2
  135. },
  136. "_enabled": true,
  137. "_priority": 0,
  138. "_contentSize": {
  139. "__type__": "cc.Size",
  140. "width": 750,
  141. "height": 1334
  142. },
  143. "_anchorPoint": {
  144. "__type__": "cc.Vec2",
  145. "x": 0.5,
  146. "y": 0.5
  147. },
  148. "_id": ""
  149. },
  150. {
  151. "__type__": "cc.SpriteComponent",
  152. "_name": "",
  153. "_objFlags": 0,
  154. "node": {
  155. "__id__": 2
  156. },
  157. "_enabled": true,
  158. "_srcBlendFactor": 2,
  159. "_dstBlendFactor": 4,
  160. "_color": {
  161. "__type__": "cc.Color",
  162. "r": 255,
  163. "g": 255,
  164. "b": 255,
  165. "a": 255
  166. },
  167. "_sharedMaterial": null,
  168. "_spriteFrame": {
  169. "__uuid__": "bf64a62d-470d-4f55-a9e8-09be46ca2a51@f9941"
  170. },
  171. "_type": 0,
  172. "_fillType": 0,
  173. "_sizeMode": 1,
  174. "_fillCenter": {
  175. "__type__": "cc.Vec2",
  176. "x": 0,
  177. "y": 0
  178. },
  179. "_fillStart": 0,
  180. "_fillRange": 0,
  181. "_isTrimmedMode": true,
  182. "_useGrayscale": false,
  183. "_atlas": null,
  184. "_id": ""
  185. },
  186. {
  187. "__type__": "cc.PrefabInfo",
  188. "root": {
  189. "__id__": 1
  190. },
  191. "asset": {
  192. "__id__": 0
  193. },
  194. "fileId": "c7L05FIVxDZIKKb7UWHEPk",
  195. "sync": false,
  196. "_synced": {
  197. "default": false,
  198. "serializable": false
  199. }
  200. },
  201. {
  202. "__type__": "cc.Node",
  203. "_name": "GlodView",
  204. "_objFlags": 0,
  205. "_parent": {
  206. "__id__": 1
  207. },
  208. "_children": [
  209. {
  210. "__id__": 7
  211. },
  212. {
  213. "__id__": 12
  214. },
  215. {
  216. "__id__": 16
  217. }
  218. ],
  219. "_active": true,
  220. "_components": [
  221. {
  222. "__id__": 20
  223. }
  224. ],
  225. "_prefab": {
  226. "__id__": 21
  227. },
  228. "_lpos": {
  229. "__type__": "cc.Vec3",
  230. "x": -194.195,
  231. "y": 578.91,
  232. "z": 0
  233. },
  234. "_lrot": {
  235. "__type__": "cc.Quat",
  236. "x": 0,
  237. "y": 0,
  238. "z": 0,
  239. "w": 1
  240. },
  241. "_lscale": {
  242. "__type__": "cc.Vec3",
  243. "x": 1,
  244. "y": 1,
  245. "z": 1
  246. },
  247. "_layer": 1073741824,
  248. "_euler": {
  249. "__type__": "cc.Vec3",
  250. "x": 0,
  251. "y": 0,
  252. "z": 0
  253. },
  254. "_id": ""
  255. },
  256. {
  257. "__type__": "cc.Node",
  258. "_name": "Background",
  259. "_objFlags": 0,
  260. "_parent": {
  261. "__id__": 6
  262. },
  263. "_children": [],
  264. "_active": true,
  265. "_components": [
  266. {
  267. "__id__": 8
  268. },
  269. {
  270. "__id__": 9
  271. },
  272. {
  273. "__id__": 10
  274. }
  275. ],
  276. "_prefab": {
  277. "__id__": 11
  278. },
  279. "_lpos": {
  280. "__type__": "cc.Vec3",
  281. "x": 78.731,
  282. "y": 0,
  283. "z": 0
  284. },
  285. "_lrot": {
  286. "__type__": "cc.Quat",
  287. "x": 0,
  288. "y": 0,
  289. "z": 0,
  290. "w": 1
  291. },
  292. "_lscale": {
  293. "__type__": "cc.Vec3",
  294. "x": 1,
  295. "y": 1,
  296. "z": 1
  297. },
  298. "_layer": 33554432,
  299. "_euler": {
  300. "__type__": "cc.Vec3",
  301. "x": 0,
  302. "y": 0,
  303. "z": 0
  304. },
  305. "_id": ""
  306. },
  307. {
  308. "__type__": "cc.UITransformComponent",
  309. "_name": "",
  310. "_objFlags": 0,
  311. "node": {
  312. "__id__": 7
  313. },
  314. "_enabled": true,
  315. "_priority": 0,
  316. "_contentSize": {
  317. "__type__": "cc.Size",
  318. "width": 180,
  319. "height": 40
  320. },
  321. "_anchorPoint": {
  322. "__type__": "cc.Vec2",
  323. "x": 0.5,
  324. "y": 0.5
  325. },
  326. "_id": ""
  327. },
  328. {
  329. "__type__": "cc.SpriteComponent",
  330. "_name": "",
  331. "_objFlags": 0,
  332. "node": {
  333. "__id__": 7
  334. },
  335. "_enabled": true,
  336. "_srcBlendFactor": 2,
  337. "_dstBlendFactor": 4,
  338. "_color": {
  339. "__type__": "cc.Color",
  340. "r": 255,
  341. "g": 255,
  342. "b": 255,
  343. "a": 255
  344. },
  345. "_sharedMaterial": null,
  346. "_spriteFrame": {
  347. "__uuid__": "72e319bc-562c-4474-b068-4d153e08dc18@f9941"
  348. },
  349. "_type": 1,
  350. "_fillType": 0,
  351. "_sizeMode": 0,
  352. "_fillCenter": {
  353. "__type__": "cc.Vec2",
  354. "x": 0,
  355. "y": 0
  356. },
  357. "_fillStart": 0,
  358. "_fillRange": 0,
  359. "_isTrimmedMode": true,
  360. "_useGrayscale": false,
  361. "_atlas": null,
  362. "_id": ""
  363. },
  364. {
  365. "__type__": "cc.UIOpacityComponent",
  366. "_name": "",
  367. "_objFlags": 0,
  368. "node": {
  369. "__id__": 7
  370. },
  371. "_enabled": true,
  372. "_opacity": 100,
  373. "_id": ""
  374. },
  375. {
  376. "__type__": "cc.PrefabInfo",
  377. "root": {
  378. "__id__": 1
  379. },
  380. "asset": {
  381. "__id__": 0
  382. },
  383. "fileId": "38P0DewgVJALt7ErCwX3SR",
  384. "sync": false,
  385. "_synced": {
  386. "default": false,
  387. "serializable": false
  388. }
  389. },
  390. {
  391. "__type__": "cc.Node",
  392. "_name": "GlodIcon",
  393. "_objFlags": 0,
  394. "_parent": {
  395. "__id__": 6
  396. },
  397. "_children": [],
  398. "_active": true,
  399. "_components": [
  400. {
  401. "__id__": 13
  402. },
  403. {
  404. "__id__": 14
  405. }
  406. ],
  407. "_prefab": {
  408. "__id__": 15
  409. },
  410. "_lpos": {
  411. "__type__": "cc.Vec3",
  412. "x": 0,
  413. "y": 0,
  414. "z": 0
  415. },
  416. "_lrot": {
  417. "__type__": "cc.Quat",
  418. "x": 0,
  419. "y": 0,
  420. "z": 0,
  421. "w": 1
  422. },
  423. "_lscale": {
  424. "__type__": "cc.Vec3",
  425. "x": 1,
  426. "y": 1,
  427. "z": 1
  428. },
  429. "_layer": 33554432,
  430. "_euler": {
  431. "__type__": "cc.Vec3",
  432. "x": 0,
  433. "y": 0,
  434. "z": 0
  435. },
  436. "_id": ""
  437. },
  438. {
  439. "__type__": "cc.UITransformComponent",
  440. "_name": "",
  441. "_objFlags": 0,
  442. "node": {
  443. "__id__": 12
  444. },
  445. "_enabled": true,
  446. "_priority": 0,
  447. "_contentSize": {
  448. "__type__": "cc.Size",
  449. "width": 62,
  450. "height": 54
  451. },
  452. "_anchorPoint": {
  453. "__type__": "cc.Vec2",
  454. "x": 0.5,
  455. "y": 0.5
  456. },
  457. "_id": ""
  458. },
  459. {
  460. "__type__": "cc.SpriteComponent",
  461. "_name": "",
  462. "_objFlags": 0,
  463. "node": {
  464. "__id__": 12
  465. },
  466. "_enabled": true,
  467. "_srcBlendFactor": 2,
  468. "_dstBlendFactor": 4,
  469. "_color": {
  470. "__type__": "cc.Color",
  471. "r": 255,
  472. "g": 255,
  473. "b": 255,
  474. "a": 255
  475. },
  476. "_sharedMaterial": null,
  477. "_spriteFrame": {
  478. "__uuid__": "b84db5b7-37f7-4e6a-8382-12e7603ecb45@f9941"
  479. },
  480. "_type": 0,
  481. "_fillType": 0,
  482. "_sizeMode": 1,
  483. "_fillCenter": {
  484. "__type__": "cc.Vec2",
  485. "x": 0,
  486. "y": 0
  487. },
  488. "_fillStart": 0,
  489. "_fillRange": 0,
  490. "_isTrimmedMode": true,
  491. "_useGrayscale": false,
  492. "_atlas": null,
  493. "_id": ""
  494. },
  495. {
  496. "__type__": "cc.PrefabInfo",
  497. "root": {
  498. "__id__": 1
  499. },
  500. "asset": {
  501. "__id__": 0
  502. },
  503. "fileId": "8dYjWpfwdGwIKQPIiHy/9G",
  504. "sync": false,
  505. "_synced": {
  506. "default": false,
  507. "serializable": false
  508. }
  509. },
  510. {
  511. "__type__": "cc.Node",
  512. "_name": "Label",
  513. "_objFlags": 0,
  514. "_parent": {
  515. "__id__": 6
  516. },
  517. "_children": [],
  518. "_active": true,
  519. "_components": [
  520. {
  521. "__id__": 17
  522. },
  523. {
  524. "__id__": 18
  525. }
  526. ],
  527. "_prefab": {
  528. "__id__": 19
  529. },
  530. "_lpos": {
  531. "__type__": "cc.Vec3",
  532. "x": 98.863,
  533. "y": -2.354,
  534. "z": 0
  535. },
  536. "_lrot": {
  537. "__type__": "cc.Quat",
  538. "x": 0,
  539. "y": 0,
  540. "z": 0,
  541. "w": 1
  542. },
  543. "_lscale": {
  544. "__type__": "cc.Vec3",
  545. "x": 1,
  546. "y": 1,
  547. "z": 1
  548. },
  549. "_layer": 33554432,
  550. "_euler": {
  551. "__type__": "cc.Vec3",
  552. "x": 0,
  553. "y": 0,
  554. "z": 0
  555. },
  556. "_id": ""
  557. },
  558. {
  559. "__type__": "cc.UITransformComponent",
  560. "_name": "Label<UITransformComponent>",
  561. "_objFlags": 0,
  562. "node": {
  563. "__id__": 16
  564. },
  565. "_enabled": true,
  566. "_priority": 0,
  567. "_contentSize": {
  568. "__type__": "cc.Size",
  569. "width": 16.68,
  570. "height": 50.4
  571. },
  572. "_anchorPoint": {
  573. "__type__": "cc.Vec2",
  574. "x": 0.5,
  575. "y": 0.5
  576. },
  577. "_id": ""
  578. },
  579. {
  580. "__type__": "cc.LabelComponent",
  581. "_name": "Label<LabelComponent>",
  582. "_objFlags": 0,
  583. "node": {
  584. "__id__": 16
  585. },
  586. "_enabled": true,
  587. "_srcBlendFactor": 2,
  588. "_dstBlendFactor": 4,
  589. "_color": {
  590. "__type__": "cc.Color",
  591. "r": 255,
  592. "g": 255,
  593. "b": 0,
  594. "a": 255
  595. },
  596. "_sharedMaterial": null,
  597. "_useOriginalSize": true,
  598. "_string": "0",
  599. "_horizontalAlign": 1,
  600. "_verticalAlign": 1,
  601. "_actualFontSize": 30,
  602. "_fontSize": 30,
  603. "_fontFamily": "Arial",
  604. "_lineHeight": 40,
  605. "_overflow": 0,
  606. "_enableWrapText": true,
  607. "_font": null,
  608. "_isSystemFontUsed": true,
  609. "_isItalic": false,
  610. "_isBold": true,
  611. "_isUnderline": false,
  612. "_cacheMode": 0,
  613. "_id": ""
  614. },
  615. {
  616. "__type__": "cc.PrefabInfo",
  617. "root": {
  618. "__id__": 1
  619. },
  620. "asset": {
  621. "__id__": 0
  622. },
  623. "fileId": "960JbMmjdL/r8sL95lenHm",
  624. "sync": false,
  625. "_synced": {
  626. "default": false,
  627. "serializable": false
  628. }
  629. },
  630. {
  631. "__type__": "cc.UITransformComponent",
  632. "_name": "",
  633. "_objFlags": 0,
  634. "node": {
  635. "__id__": 6
  636. },
  637. "_enabled": true,
  638. "_priority": 0,
  639. "_contentSize": {
  640. "__type__": "cc.Size",
  641. "width": 100,
  642. "height": 100
  643. },
  644. "_anchorPoint": {
  645. "__type__": "cc.Vec2",
  646. "x": 0.5,
  647. "y": 0.5
  648. },
  649. "_id": ""
  650. },
  651. {
  652. "__type__": "cc.PrefabInfo",
  653. "root": {
  654. "__id__": 1
  655. },
  656. "asset": {
  657. "__id__": 0
  658. },
  659. "fileId": "ebtVf5Gd1Fb7qxnjS5KCE6",
  660. "sync": false,
  661. "_synced": {
  662. "default": false,
  663. "serializable": false
  664. }
  665. },
  666. {
  667. "__type__": "cc.Node",
  668. "_name": "KillView",
  669. "_objFlags": 0,
  670. "_parent": {
  671. "__id__": 1
  672. },
  673. "_children": [
  674. {
  675. "__id__": 23
  676. },
  677. {
  678. "__id__": 28
  679. },
  680. {
  681. "__id__": 32
  682. }
  683. ],
  684. "_active": true,
  685. "_components": [
  686. {
  687. "__id__": 36
  688. }
  689. ],
  690. "_prefab": {
  691. "__id__": 37
  692. },
  693. "_lpos": {
  694. "__type__": "cc.Vec3",
  695. "x": 14.123,
  696. "y": 578.91,
  697. "z": 0
  698. },
  699. "_lrot": {
  700. "__type__": "cc.Quat",
  701. "x": 0,
  702. "y": 0,
  703. "z": 0,
  704. "w": 1
  705. },
  706. "_lscale": {
  707. "__type__": "cc.Vec3",
  708. "x": 1,
  709. "y": 1,
  710. "z": 1
  711. },
  712. "_layer": 1073741824,
  713. "_euler": {
  714. "__type__": "cc.Vec3",
  715. "x": 0,
  716. "y": 0,
  717. "z": 0
  718. },
  719. "_id": ""
  720. },
  721. {
  722. "__type__": "cc.Node",
  723. "_name": "Background",
  724. "_objFlags": 0,
  725. "_parent": {
  726. "__id__": 22
  727. },
  728. "_children": [],
  729. "_active": true,
  730. "_components": [
  731. {
  732. "__id__": 24
  733. },
  734. {
  735. "__id__": 25
  736. },
  737. {
  738. "__id__": 26
  739. }
  740. ],
  741. "_prefab": {
  742. "__id__": 27
  743. },
  744. "_lpos": {
  745. "__type__": "cc.Vec3",
  746. "x": 78.731,
  747. "y": 0,
  748. "z": 0
  749. },
  750. "_lrot": {
  751. "__type__": "cc.Quat",
  752. "x": 0,
  753. "y": 0,
  754. "z": 0,
  755. "w": 1
  756. },
  757. "_lscale": {
  758. "__type__": "cc.Vec3",
  759. "x": 1,
  760. "y": 1,
  761. "z": 1
  762. },
  763. "_layer": 33554432,
  764. "_euler": {
  765. "__type__": "cc.Vec3",
  766. "x": 0,
  767. "y": 0,
  768. "z": 0
  769. },
  770. "_id": ""
  771. },
  772. {
  773. "__type__": "cc.UITransformComponent",
  774. "_name": "",
  775. "_objFlags": 0,
  776. "node": {
  777. "__id__": 23
  778. },
  779. "_enabled": true,
  780. "_priority": 0,
  781. "_contentSize": {
  782. "__type__": "cc.Size",
  783. "width": 180,
  784. "height": 40
  785. },
  786. "_anchorPoint": {
  787. "__type__": "cc.Vec2",
  788. "x": 0.5,
  789. "y": 0.5
  790. },
  791. "_id": ""
  792. },
  793. {
  794. "__type__": "cc.SpriteComponent",
  795. "_name": "",
  796. "_objFlags": 0,
  797. "node": {
  798. "__id__": 23
  799. },
  800. "_enabled": true,
  801. "_srcBlendFactor": 2,
  802. "_dstBlendFactor": 4,
  803. "_color": {
  804. "__type__": "cc.Color",
  805. "r": 255,
  806. "g": 255,
  807. "b": 255,
  808. "a": 255
  809. },
  810. "_sharedMaterial": null,
  811. "_spriteFrame": {
  812. "__uuid__": "72e319bc-562c-4474-b068-4d153e08dc18@f9941"
  813. },
  814. "_type": 1,
  815. "_fillType": 0,
  816. "_sizeMode": 0,
  817. "_fillCenter": {
  818. "__type__": "cc.Vec2",
  819. "x": 0,
  820. "y": 0
  821. },
  822. "_fillStart": 0,
  823. "_fillRange": 0,
  824. "_isTrimmedMode": true,
  825. "_useGrayscale": false,
  826. "_atlas": null,
  827. "_id": ""
  828. },
  829. {
  830. "__type__": "cc.UIOpacityComponent",
  831. "_name": "",
  832. "_objFlags": 0,
  833. "node": {
  834. "__id__": 23
  835. },
  836. "_enabled": true,
  837. "_opacity": 100,
  838. "_id": ""
  839. },
  840. {
  841. "__type__": "cc.PrefabInfo",
  842. "root": {
  843. "__id__": 1
  844. },
  845. "asset": {
  846. "__id__": 0
  847. },
  848. "fileId": "0adyHKg6lIx4+07os/FcuR",
  849. "sync": false,
  850. "_synced": {
  851. "default": false,
  852. "serializable": false
  853. }
  854. },
  855. {
  856. "__type__": "cc.Node",
  857. "_name": "Icon",
  858. "_objFlags": 0,
  859. "_parent": {
  860. "__id__": 22
  861. },
  862. "_children": [],
  863. "_active": true,
  864. "_components": [
  865. {
  866. "__id__": 29
  867. },
  868. {
  869. "__id__": 30
  870. }
  871. ],
  872. "_prefab": {
  873. "__id__": 31
  874. },
  875. "_lpos": {
  876. "__type__": "cc.Vec3",
  877. "x": 0,
  878. "y": 0,
  879. "z": 0
  880. },
  881. "_lrot": {
  882. "__type__": "cc.Quat",
  883. "x": 0,
  884. "y": 0,
  885. "z": 0,
  886. "w": 1
  887. },
  888. "_lscale": {
  889. "__type__": "cc.Vec3",
  890. "x": 1,
  891. "y": 1,
  892. "z": 1
  893. },
  894. "_layer": 33554432,
  895. "_euler": {
  896. "__type__": "cc.Vec3",
  897. "x": 0,
  898. "y": 0,
  899. "z": 0
  900. },
  901. "_id": ""
  902. },
  903. {
  904. "__type__": "cc.UITransformComponent",
  905. "_name": "GlodIcon<UITransformComponent>",
  906. "_objFlags": 0,
  907. "node": {
  908. "__id__": 28
  909. },
  910. "_enabled": true,
  911. "_priority": 0,
  912. "_contentSize": {
  913. "__type__": "cc.Size",
  914. "width": 49,
  915. "height": 50
  916. },
  917. "_anchorPoint": {
  918. "__type__": "cc.Vec2",
  919. "x": 0.5,
  920. "y": 0.5
  921. },
  922. "_id": ""
  923. },
  924. {
  925. "__type__": "cc.SpriteComponent",
  926. "_name": "GlodIcon<SpriteComponent>",
  927. "_objFlags": 0,
  928. "node": {
  929. "__id__": 28
  930. },
  931. "_enabled": true,
  932. "_srcBlendFactor": 2,
  933. "_dstBlendFactor": 4,
  934. "_color": {
  935. "__type__": "cc.Color",
  936. "r": 255,
  937. "g": 255,
  938. "b": 255,
  939. "a": 255
  940. },
  941. "_sharedMaterial": null,
  942. "_spriteFrame": {
  943. "__uuid__": "6b61934e-46b1-48a9-8db7-b0dbca9fe53b@f9941"
  944. },
  945. "_type": 0,
  946. "_fillType": 0,
  947. "_sizeMode": 1,
  948. "_fillCenter": {
  949. "__type__": "cc.Vec2",
  950. "x": 0,
  951. "y": 0
  952. },
  953. "_fillStart": 0,
  954. "_fillRange": 0,
  955. "_isTrimmedMode": true,
  956. "_useGrayscale": false,
  957. "_atlas": null,
  958. "_id": ""
  959. },
  960. {
  961. "__type__": "cc.PrefabInfo",
  962. "root": {
  963. "__id__": 1
  964. },
  965. "asset": {
  966. "__id__": 0
  967. },
  968. "fileId": "32N1LDV9ZKrJjF+mPNaoZb",
  969. "sync": false,
  970. "_synced": {
  971. "default": false,
  972. "serializable": false
  973. }
  974. },
  975. {
  976. "__type__": "cc.Node",
  977. "_name": "Label",
  978. "_objFlags": 0,
  979. "_parent": {
  980. "__id__": 22
  981. },
  982. "_children": [],
  983. "_active": true,
  984. "_components": [
  985. {
  986. "__id__": 33
  987. },
  988. {
  989. "__id__": 34
  990. }
  991. ],
  992. "_prefab": {
  993. "__id__": 35
  994. },
  995. "_lpos": {
  996. "__type__": "cc.Vec3",
  997. "x": 98.863,
  998. "y": -2.354,
  999. "z": 0
  1000. },
  1001. "_lrot": {
  1002. "__type__": "cc.Quat",
  1003. "x": 0,
  1004. "y": 0,
  1005. "z": 0,
  1006. "w": 1
  1007. },
  1008. "_lscale": {
  1009. "__type__": "cc.Vec3",
  1010. "x": 1,
  1011. "y": 1,
  1012. "z": 1
  1013. },
  1014. "_layer": 33554432,
  1015. "_euler": {
  1016. "__type__": "cc.Vec3",
  1017. "x": 0,
  1018. "y": 0,
  1019. "z": 0
  1020. },
  1021. "_id": ""
  1022. },
  1023. {
  1024. "__type__": "cc.UITransformComponent",
  1025. "_name": "Label<UITransformComponent>",
  1026. "_objFlags": 0,
  1027. "node": {
  1028. "__id__": 32
  1029. },
  1030. "_enabled": true,
  1031. "_priority": 0,
  1032. "_contentSize": {
  1033. "__type__": "cc.Size",
  1034. "width": 41.7,
  1035. "height": 50.4
  1036. },
  1037. "_anchorPoint": {
  1038. "__type__": "cc.Vec2",
  1039. "x": 0.5,
  1040. "y": 0.5
  1041. },
  1042. "_id": ""
  1043. },
  1044. {
  1045. "__type__": "cc.LabelComponent",
  1046. "_name": "Label<LabelComponent>",
  1047. "_objFlags": 0,
  1048. "node": {
  1049. "__id__": 32
  1050. },
  1051. "_enabled": true,
  1052. "_srcBlendFactor": 2,
  1053. "_dstBlendFactor": 4,
  1054. "_color": {
  1055. "__type__": "cc.Color",
  1056. "r": 255,
  1057. "g": 255,
  1058. "b": 255,
  1059. "a": 255
  1060. },
  1061. "_sharedMaterial": null,
  1062. "_useOriginalSize": true,
  1063. "_string": "0/0",
  1064. "_horizontalAlign": 1,
  1065. "_verticalAlign": 1,
  1066. "_actualFontSize": 30,
  1067. "_fontSize": 30,
  1068. "_fontFamily": "Arial",
  1069. "_lineHeight": 40,
  1070. "_overflow": 0,
  1071. "_enableWrapText": true,
  1072. "_font": null,
  1073. "_isSystemFontUsed": true,
  1074. "_isItalic": false,
  1075. "_isBold": true,
  1076. "_isUnderline": false,
  1077. "_cacheMode": 0,
  1078. "_id": ""
  1079. },
  1080. {
  1081. "__type__": "cc.PrefabInfo",
  1082. "root": {
  1083. "__id__": 1
  1084. },
  1085. "asset": {
  1086. "__id__": 0
  1087. },
  1088. "fileId": "b9Q27DZspLzJcTVKOVg/bo",
  1089. "sync": false,
  1090. "_synced": {
  1091. "default": false,
  1092. "serializable": false
  1093. }
  1094. },
  1095. {
  1096. "__type__": "cc.UITransformComponent",
  1097. "_name": "",
  1098. "_objFlags": 0,
  1099. "node": {
  1100. "__id__": 22
  1101. },
  1102. "_enabled": true,
  1103. "_priority": 0,
  1104. "_contentSize": {
  1105. "__type__": "cc.Size",
  1106. "width": 100,
  1107. "height": 100
  1108. },
  1109. "_anchorPoint": {
  1110. "__type__": "cc.Vec2",
  1111. "x": 0.5,
  1112. "y": 0.5
  1113. },
  1114. "_id": ""
  1115. },
  1116. {
  1117. "__type__": "cc.PrefabInfo",
  1118. "root": {
  1119. "__id__": 1
  1120. },
  1121. "asset": {
  1122. "__id__": 0
  1123. },
  1124. "fileId": "da1GcFwEFNR6yRB2Dvj/gw",
  1125. "sync": false,
  1126. "_synced": {
  1127. "default": false,
  1128. "serializable": false
  1129. }
  1130. },
  1131. {
  1132. "__type__": "cc.Node",
  1133. "_name": "BackButton",
  1134. "_objFlags": 0,
  1135. "_parent": {
  1136. "__id__": 1
  1137. },
  1138. "_children": [
  1139. {
  1140. "__id__": 39
  1141. }
  1142. ],
  1143. "_active": true,
  1144. "_components": [
  1145. {
  1146. "__id__": 43
  1147. },
  1148. {
  1149. "__id__": 44
  1150. },
  1151. {
  1152. "__id__": 45
  1153. }
  1154. ],
  1155. "_prefab": {
  1156. "__id__": 46
  1157. },
  1158. "_lpos": {
  1159. "__type__": "cc.Vec3",
  1160. "x": -305.502,
  1161. "y": 548.432,
  1162. "z": 0
  1163. },
  1164. "_lrot": {
  1165. "__type__": "cc.Quat",
  1166. "x": 0,
  1167. "y": 0,
  1168. "z": 0,
  1169. "w": 1
  1170. },
  1171. "_lscale": {
  1172. "__type__": "cc.Vec3",
  1173. "x": 1,
  1174. "y": 1,
  1175. "z": 1
  1176. },
  1177. "_layer": 33554432,
  1178. "_euler": {
  1179. "__type__": "cc.Vec3",
  1180. "x": 0,
  1181. "y": 0,
  1182. "z": 0
  1183. },
  1184. "_id": ""
  1185. },
  1186. {
  1187. "__type__": "cc.Node",
  1188. "_name": "Sprite",
  1189. "_objFlags": 0,
  1190. "_parent": {
  1191. "__id__": 38
  1192. },
  1193. "_children": [],
  1194. "_active": true,
  1195. "_components": [
  1196. {
  1197. "__id__": 40
  1198. },
  1199. {
  1200. "__id__": 41
  1201. }
  1202. ],
  1203. "_prefab": {
  1204. "__id__": 42
  1205. },
  1206. "_lpos": {
  1207. "__type__": "cc.Vec3",
  1208. "x": -4.908,
  1209. "y": 3.681,
  1210. "z": 0
  1211. },
  1212. "_lrot": {
  1213. "__type__": "cc.Quat",
  1214. "x": 0,
  1215. "y": 0,
  1216. "z": 0,
  1217. "w": 1
  1218. },
  1219. "_lscale": {
  1220. "__type__": "cc.Vec3",
  1221. "x": 1,
  1222. "y": 1,
  1223. "z": 1
  1224. },
  1225. "_layer": 33554432,
  1226. "_euler": {
  1227. "__type__": "cc.Vec3",
  1228. "x": 0,
  1229. "y": 0,
  1230. "z": 0
  1231. },
  1232. "_id": ""
  1233. },
  1234. {
  1235. "__type__": "cc.UITransformComponent",
  1236. "_name": "",
  1237. "_objFlags": 0,
  1238. "node": {
  1239. "__id__": 39
  1240. },
  1241. "_enabled": true,
  1242. "_priority": 0,
  1243. "_contentSize": {
  1244. "__type__": "cc.Size",
  1245. "width": 56,
  1246. "height": 57
  1247. },
  1248. "_anchorPoint": {
  1249. "__type__": "cc.Vec2",
  1250. "x": 0.5,
  1251. "y": 0.5
  1252. },
  1253. "_id": ""
  1254. },
  1255. {
  1256. "__type__": "cc.SpriteComponent",
  1257. "_name": "",
  1258. "_objFlags": 0,
  1259. "node": {
  1260. "__id__": 39
  1261. },
  1262. "_enabled": true,
  1263. "_srcBlendFactor": 2,
  1264. "_dstBlendFactor": 4,
  1265. "_color": {
  1266. "__type__": "cc.Color",
  1267. "r": 255,
  1268. "g": 255,
  1269. "b": 255,
  1270. "a": 255
  1271. },
  1272. "_sharedMaterial": null,
  1273. "_spriteFrame": {
  1274. "__uuid__": "bd3be807-f387-461c-9aae-9051d64fa928@f9941"
  1275. },
  1276. "_type": 0,
  1277. "_fillType": 0,
  1278. "_sizeMode": 1,
  1279. "_fillCenter": {
  1280. "__type__": "cc.Vec2",
  1281. "x": 0,
  1282. "y": 0
  1283. },
  1284. "_fillStart": 0,
  1285. "_fillRange": 0,
  1286. "_isTrimmedMode": true,
  1287. "_useGrayscale": false,
  1288. "_atlas": null,
  1289. "_id": ""
  1290. },
  1291. {
  1292. "__type__": "cc.PrefabInfo",
  1293. "root": {
  1294. "__id__": 1
  1295. },
  1296. "asset": {
  1297. "__id__": 0
  1298. },
  1299. "fileId": "00WudovgZIgYPAPu8mFdTU",
  1300. "sync": false,
  1301. "_synced": {
  1302. "default": false,
  1303. "serializable": false
  1304. }
  1305. },
  1306. {
  1307. "__type__": "cc.UITransformComponent",
  1308. "_name": "",
  1309. "_objFlags": 0,
  1310. "node": {
  1311. "__id__": 38
  1312. },
  1313. "_enabled": true,
  1314. "_priority": 0,
  1315. "_contentSize": {
  1316. "__type__": "cc.Size",
  1317. "width": 105,
  1318. "height": 111
  1319. },
  1320. "_anchorPoint": {
  1321. "__type__": "cc.Vec2",
  1322. "x": 0.5,
  1323. "y": 0.5
  1324. },
  1325. "_id": ""
  1326. },
  1327. {
  1328. "__type__": "cc.SpriteComponent",
  1329. "_name": "",
  1330. "_objFlags": 0,
  1331. "node": {
  1332. "__id__": 38
  1333. },
  1334. "_enabled": true,
  1335. "_srcBlendFactor": 2,
  1336. "_dstBlendFactor": 4,
  1337. "_color": {
  1338. "__type__": "cc.Color",
  1339. "r": 255,
  1340. "g": 255,
  1341. "b": 255,
  1342. "a": 255
  1343. },
  1344. "_sharedMaterial": null,
  1345. "_spriteFrame": {
  1346. "__uuid__": "bc24ff58-f7d3-4f54-8e23-fb3a5e9d8469@f9941"
  1347. },
  1348. "_type": 1,
  1349. "_fillType": 0,
  1350. "_sizeMode": 0,
  1351. "_fillCenter": {
  1352. "__type__": "cc.Vec2",
  1353. "x": 0,
  1354. "y": 0
  1355. },
  1356. "_fillStart": 0,
  1357. "_fillRange": 0,
  1358. "_isTrimmedMode": true,
  1359. "_useGrayscale": false,
  1360. "_atlas": null,
  1361. "_id": ""
  1362. },
  1363. {
  1364. "__type__": "cc.ButtonComponent",
  1365. "_name": "",
  1366. "_objFlags": 0,
  1367. "node": {
  1368. "__id__": 38
  1369. },
  1370. "_enabled": true,
  1371. "clickEvents": [],
  1372. "_interactable": true,
  1373. "_transition": 2,
  1374. "_normalColor": {
  1375. "__type__": "cc.Color",
  1376. "r": 214,
  1377. "g": 214,
  1378. "b": 214,
  1379. "a": 255
  1380. },
  1381. "_hoverColor": {
  1382. "__type__": "cc.Color",
  1383. "r": 211,
  1384. "g": 211,
  1385. "b": 211,
  1386. "a": 255
  1387. },
  1388. "_pressColor": {
  1389. "__type__": "cc.Color",
  1390. "r": 255,
  1391. "g": 255,
  1392. "b": 255,
  1393. "a": 255
  1394. },
  1395. "_disabledColor": {
  1396. "__type__": "cc.Color",
  1397. "r": 124,
  1398. "g": 124,
  1399. "b": 124,
  1400. "a": 255
  1401. },
  1402. "_normalSprite": {
  1403. "__uuid__": "bc24ff58-f7d3-4f54-8e23-fb3a5e9d8469@f9941"
  1404. },
  1405. "_hoverSprite": {
  1406. "__uuid__": "bc24ff58-f7d3-4f54-8e23-fb3a5e9d8469@f9941"
  1407. },
  1408. "_pressedSprite": {
  1409. "__uuid__": "bc24ff58-f7d3-4f54-8e23-fb3a5e9d8469@f9941"
  1410. },
  1411. "_disabledSprite": {
  1412. "__uuid__": "bc24ff58-f7d3-4f54-8e23-fb3a5e9d8469@f9941"
  1413. },
  1414. "_duration": 0.1,
  1415. "_zoomScale": 1.2,
  1416. "_target": {
  1417. "__id__": 38
  1418. },
  1419. "_id": ""
  1420. },
  1421. {
  1422. "__type__": "cc.PrefabInfo",
  1423. "root": {
  1424. "__id__": 1
  1425. },
  1426. "asset": {
  1427. "__id__": 0
  1428. },
  1429. "fileId": "fb8QfzSFJJ85VKP/1KsHMo",
  1430. "sync": false,
  1431. "_synced": {
  1432. "default": false,
  1433. "serializable": false
  1434. }
  1435. },
  1436. {
  1437. "__type__": "cc.Node",
  1438. "_name": "ClipView",
  1439. "_objFlags": 0,
  1440. "_parent": {
  1441. "__id__": 1
  1442. },
  1443. "_children": [],
  1444. "_active": true,
  1445. "_components": [
  1446. {
  1447. "__id__": 48
  1448. },
  1449. {
  1450. "__id__": 49
  1451. },
  1452. {
  1453. "__id__": 50
  1454. }
  1455. ],
  1456. "_prefab": {
  1457. "__id__": 51
  1458. },
  1459. "_lpos": {
  1460. "__type__": "cc.Vec3",
  1461. "x": 332.118,
  1462. "y": -116.45000000000005,
  1463. "z": 0
  1464. },
  1465. "_lrot": {
  1466. "__type__": "cc.Quat",
  1467. "x": 0,
  1468. "y": 0,
  1469. "z": 0,
  1470. "w": 1
  1471. },
  1472. "_lscale": {
  1473. "__type__": "cc.Vec3",
  1474. "x": 1,
  1475. "y": 1,
  1476. "z": 1
  1477. },
  1478. "_layer": 33554432,
  1479. "_euler": {
  1480. "__type__": "cc.Vec3",
  1481. "x": 0,
  1482. "y": 0,
  1483. "z": 0
  1484. },
  1485. "_id": ""
  1486. },
  1487. {
  1488. "__type__": "cc.UITransformComponent",
  1489. "_name": "ClipView<UITransformComponent>",
  1490. "_objFlags": 0,
  1491. "node": {
  1492. "__id__": 47
  1493. },
  1494. "_enabled": true,
  1495. "_priority": 0,
  1496. "_contentSize": {
  1497. "__type__": "cc.Size",
  1498. "width": 100,
  1499. "height": 100
  1500. },
  1501. "_anchorPoint": {
  1502. "__type__": "cc.Vec2",
  1503. "x": 0.5,
  1504. "y": 0
  1505. },
  1506. "_id": ""
  1507. },
  1508. {
  1509. "__type__": "cc.LayoutComponent",
  1510. "_name": "ClipView<LayoutComponent>",
  1511. "_objFlags": 0,
  1512. "node": {
  1513. "__id__": 47
  1514. },
  1515. "_enabled": true,
  1516. "_resizeMode": 0,
  1517. "_N$layoutType": 2,
  1518. "_N$padding": 0,
  1519. "_cellSize": {
  1520. "__type__": "cc.Size",
  1521. "width": 40,
  1522. "height": 40
  1523. },
  1524. "_startAxis": 0,
  1525. "_paddingLeft": 0,
  1526. "_paddingRight": 0,
  1527. "_paddingTop": 0,
  1528. "_paddingBottom": 0,
  1529. "_spacingX": 0,
  1530. "_spacingY": 5,
  1531. "_verticalDirection": 0,
  1532. "_horizontalDirection": 0,
  1533. "_affectedByScale": false,
  1534. "_id": ""
  1535. },
  1536. {
  1537. "__type__": "cc.WidgetComponent",
  1538. "_name": "ClipView<WidgetComponent>",
  1539. "_objFlags": 0,
  1540. "node": {
  1541. "__id__": 47
  1542. },
  1543. "_enabled": true,
  1544. "_alignFlags": 36,
  1545. "_target": null,
  1546. "_left": 0,
  1547. "_right": -7.117999999999995,
  1548. "_top": 0,
  1549. "_bottom": 550.55,
  1550. "_horizontalCenter": 0,
  1551. "_verticalCenter": 0,
  1552. "_isAbsLeft": true,
  1553. "_isAbsRight": true,
  1554. "_isAbsTop": true,
  1555. "_isAbsBottom": true,
  1556. "_isAbsHorizontalCenter": true,
  1557. "_isAbsVerticalCenter": true,
  1558. "_originalWidth": 0,
  1559. "_originalHeight": 0,
  1560. "_alignMode": 2,
  1561. "_lockFlags": 0,
  1562. "_id": ""
  1563. },
  1564. {
  1565. "__type__": "cc.PrefabInfo",
  1566. "root": {
  1567. "__id__": 1
  1568. },
  1569. "asset": {
  1570. "__id__": 0
  1571. },
  1572. "fileId": "c7EEnDWPBFLJeFiMS3T85Q",
  1573. "sync": false,
  1574. "_synced": {
  1575. "default": false,
  1576. "serializable": false
  1577. }
  1578. },
  1579. {
  1580. "__type__": "cc.Node",
  1581. "_name": "BottomView",
  1582. "_objFlags": 0,
  1583. "_parent": {
  1584. "__id__": 1
  1585. },
  1586. "_children": [
  1587. {
  1588. "__id__": 53
  1589. },
  1590. {
  1591. "__id__": 58
  1592. },
  1593. {
  1594. "__id__": 64
  1595. },
  1596. {
  1597. "__id__": 70
  1598. }
  1599. ],
  1600. "_active": true,
  1601. "_components": [
  1602. {
  1603. "__id__": 76
  1604. },
  1605. {
  1606. "__id__": 77
  1607. }
  1608. ],
  1609. "_prefab": {
  1610. "__id__": 78
  1611. },
  1612. "_lpos": {
  1613. "__type__": "cc.Vec3",
  1614. "x": 0,
  1615. "y": -574.207,
  1616. "z": 0
  1617. },
  1618. "_lrot": {
  1619. "__type__": "cc.Quat",
  1620. "x": 0,
  1621. "y": 0,
  1622. "z": 0,
  1623. "w": 1
  1624. },
  1625. "_lscale": {
  1626. "__type__": "cc.Vec3",
  1627. "x": 1,
  1628. "y": 1,
  1629. "z": 1
  1630. },
  1631. "_layer": 1073741824,
  1632. "_euler": {
  1633. "__type__": "cc.Vec3",
  1634. "x": 0,
  1635. "y": 0,
  1636. "z": 0
  1637. },
  1638. "_id": ""
  1639. },
  1640. {
  1641. "__type__": "cc.Node",
  1642. "_name": "Background",
  1643. "_objFlags": 0,
  1644. "_parent": {
  1645. "__id__": 52
  1646. },
  1647. "_children": [],
  1648. "_active": true,
  1649. "_components": [
  1650. {
  1651. "__id__": 54
  1652. },
  1653. {
  1654. "__id__": 55
  1655. },
  1656. {
  1657. "__id__": 56
  1658. }
  1659. ],
  1660. "_prefab": {
  1661. "__id__": 57
  1662. },
  1663. "_lpos": {
  1664. "__type__": "cc.Vec3",
  1665. "x": 0,
  1666. "y": 0,
  1667. "z": 0
  1668. },
  1669. "_lrot": {
  1670. "__type__": "cc.Quat",
  1671. "x": 0,
  1672. "y": 0,
  1673. "z": 0,
  1674. "w": 1
  1675. },
  1676. "_lscale": {
  1677. "__type__": "cc.Vec3",
  1678. "x": 1,
  1679. "y": 1,
  1680. "z": 1
  1681. },
  1682. "_layer": 33554432,
  1683. "_euler": {
  1684. "__type__": "cc.Vec3",
  1685. "x": 0,
  1686. "y": 0,
  1687. "z": 0
  1688. },
  1689. "_id": ""
  1690. },
  1691. {
  1692. "__type__": "cc.UITransformComponent",
  1693. "_name": "",
  1694. "_objFlags": 0,
  1695. "node": {
  1696. "__id__": 53
  1697. },
  1698. "_enabled": true,
  1699. "_priority": 0,
  1700. "_contentSize": {
  1701. "__type__": "cc.Size",
  1702. "width": 750,
  1703. "height": 185
  1704. },
  1705. "_anchorPoint": {
  1706. "__type__": "cc.Vec2",
  1707. "x": 0.5,
  1708. "y": 0.5
  1709. },
  1710. "_id": ""
  1711. },
  1712. {
  1713. "__type__": "cc.SpriteComponent",
  1714. "_name": "",
  1715. "_objFlags": 0,
  1716. "node": {
  1717. "__id__": 53
  1718. },
  1719. "_enabled": true,
  1720. "_srcBlendFactor": 2,
  1721. "_dstBlendFactor": 4,
  1722. "_color": {
  1723. "__type__": "cc.Color",
  1724. "r": 255,
  1725. "g": 255,
  1726. "b": 255,
  1727. "a": 255
  1728. },
  1729. "_sharedMaterial": null,
  1730. "_spriteFrame": {
  1731. "__uuid__": "1757d516-9a86-431b-b833-79869a4d7a75@f9941"
  1732. },
  1733. "_type": 1,
  1734. "_fillType": 0,
  1735. "_sizeMode": 0,
  1736. "_fillCenter": {
  1737. "__type__": "cc.Vec2",
  1738. "x": 0,
  1739. "y": 0
  1740. },
  1741. "_fillStart": 0,
  1742. "_fillRange": 0,
  1743. "_isTrimmedMode": true,
  1744. "_useGrayscale": false,
  1745. "_atlas": null,
  1746. "_id": ""
  1747. },
  1748. {
  1749. "__type__": "cc.WidgetComponent",
  1750. "_name": "Background<WidgetComponent>",
  1751. "_objFlags": 0,
  1752. "node": {
  1753. "__id__": 53
  1754. },
  1755. "_enabled": true,
  1756. "_alignFlags": 45,
  1757. "_target": null,
  1758. "_left": 0,
  1759. "_right": 0,
  1760. "_top": 0,
  1761. "_bottom": 0,
  1762. "_horizontalCenter": 0,
  1763. "_verticalCenter": 0,
  1764. "_isAbsLeft": true,
  1765. "_isAbsRight": true,
  1766. "_isAbsTop": true,
  1767. "_isAbsBottom": true,
  1768. "_isAbsHorizontalCenter": true,
  1769. "_isAbsVerticalCenter": true,
  1770. "_originalWidth": 750,
  1771. "_originalHeight": 185,
  1772. "_alignMode": 2,
  1773. "_lockFlags": 0,
  1774. "_id": ""
  1775. },
  1776. {
  1777. "__type__": "cc.PrefabInfo",
  1778. "root": {
  1779. "__id__": 1
  1780. },
  1781. "asset": {
  1782. "__id__": 0
  1783. },
  1784. "fileId": "6dDXTSfgxObYzws3ZApo3N",
  1785. "sync": false,
  1786. "_synced": {
  1787. "default": false,
  1788. "serializable": false
  1789. }
  1790. },
  1791. {
  1792. "__type__": "cc.Node",
  1793. "_name": "LeftFireButton",
  1794. "_objFlags": 0,
  1795. "_parent": {
  1796. "__id__": 52
  1797. },
  1798. "_children": [],
  1799. "_active": true,
  1800. "_components": [
  1801. {
  1802. "__id__": 59
  1803. },
  1804. {
  1805. "__id__": 60
  1806. },
  1807. {
  1808. "__id__": 61
  1809. },
  1810. {
  1811. "__id__": 62
  1812. }
  1813. ],
  1814. "_prefab": {
  1815. "__id__": 63
  1816. },
  1817. "_lpos": {
  1818. "__type__": "cc.Vec3",
  1819. "x": -261.936,
  1820. "y": 19,
  1821. "z": 0
  1822. },
  1823. "_lrot": {
  1824. "__type__": "cc.Quat",
  1825. "x": 0,
  1826. "y": 0,
  1827. "z": 0,
  1828. "w": 1
  1829. },
  1830. "_lscale": {
  1831. "__type__": "cc.Vec3",
  1832. "x": 1,
  1833. "y": 1,
  1834. "z": 1
  1835. },
  1836. "_layer": 33554432,
  1837. "_euler": {
  1838. "__type__": "cc.Vec3",
  1839. "x": 0,
  1840. "y": 0,
  1841. "z": 0
  1842. },
  1843. "_id": ""
  1844. },
  1845. {
  1846. "__type__": "cc.UITransformComponent",
  1847. "_name": "",
  1848. "_objFlags": 0,
  1849. "node": {
  1850. "__id__": 58
  1851. },
  1852. "_enabled": true,
  1853. "_priority": 0,
  1854. "_contentSize": {
  1855. "__type__": "cc.Size",
  1856. "width": 200,
  1857. "height": 217
  1858. },
  1859. "_anchorPoint": {
  1860. "__type__": "cc.Vec2",
  1861. "x": 0.5,
  1862. "y": 0.5
  1863. },
  1864. "_id": ""
  1865. },
  1866. {
  1867. "__type__": "cc.SpriteComponent",
  1868. "_name": "",
  1869. "_objFlags": 0,
  1870. "node": {
  1871. "__id__": 58
  1872. },
  1873. "_enabled": true,
  1874. "_srcBlendFactor": 2,
  1875. "_dstBlendFactor": 4,
  1876. "_color": {
  1877. "__type__": "cc.Color",
  1878. "r": 255,
  1879. "g": 255,
  1880. "b": 255,
  1881. "a": 255
  1882. },
  1883. "_sharedMaterial": null,
  1884. "_spriteFrame": {
  1885. "__uuid__": "4bd0149a-ec9f-4281-ac64-c5113acef501@f9941"
  1886. },
  1887. "_type": 1,
  1888. "_fillType": 0,
  1889. "_sizeMode": 0,
  1890. "_fillCenter": {
  1891. "__type__": "cc.Vec2",
  1892. "x": 0,
  1893. "y": 0
  1894. },
  1895. "_fillStart": 0,
  1896. "_fillRange": 0,
  1897. "_isTrimmedMode": true,
  1898. "_useGrayscale": false,
  1899. "_atlas": null,
  1900. "_id": ""
  1901. },
  1902. {
  1903. "__type__": "cc.ButtonComponent",
  1904. "_name": "",
  1905. "_objFlags": 0,
  1906. "node": {
  1907. "__id__": 58
  1908. },
  1909. "_enabled": true,
  1910. "clickEvents": [],
  1911. "_interactable": true,
  1912. "_transition": 2,
  1913. "_normalColor": {
  1914. "__type__": "cc.Color",
  1915. "r": 214,
  1916. "g": 214,
  1917. "b": 214,
  1918. "a": 255
  1919. },
  1920. "_hoverColor": {
  1921. "__type__": "cc.Color",
  1922. "r": 211,
  1923. "g": 211,
  1924. "b": 211,
  1925. "a": 255
  1926. },
  1927. "_pressColor": {
  1928. "__type__": "cc.Color",
  1929. "r": 255,
  1930. "g": 255,
  1931. "b": 255,
  1932. "a": 255
  1933. },
  1934. "_disabledColor": {
  1935. "__type__": "cc.Color",
  1936. "r": 124,
  1937. "g": 124,
  1938. "b": 124,
  1939. "a": 255
  1940. },
  1941. "_normalSprite": {
  1942. "__uuid__": "4bd0149a-ec9f-4281-ac64-c5113acef501@f9941"
  1943. },
  1944. "_hoverSprite": {
  1945. "__uuid__": "46559712-fa53-4769-9b57-f467711a7dbb@f9941"
  1946. },
  1947. "_pressedSprite": {
  1948. "__uuid__": "46559712-fa53-4769-9b57-f467711a7dbb@f9941"
  1949. },
  1950. "_disabledSprite": {
  1951. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941"
  1952. },
  1953. "_duration": 0.1,
  1954. "_zoomScale": 1.2,
  1955. "_target": {
  1956. "__id__": 58
  1957. },
  1958. "_id": ""
  1959. },
  1960. {
  1961. "__type__": "cc.WidgetComponent",
  1962. "_name": "LeftFireButton<WidgetComponent>",
  1963. "_objFlags": 0,
  1964. "node": {
  1965. "__id__": 58
  1966. },
  1967. "_enabled": true,
  1968. "_alignFlags": 12,
  1969. "_target": null,
  1970. "_left": 13.064000000000021,
  1971. "_right": 0,
  1972. "_top": 0,
  1973. "_bottom": 3,
  1974. "_horizontalCenter": 0,
  1975. "_verticalCenter": 0,
  1976. "_isAbsLeft": true,
  1977. "_isAbsRight": true,
  1978. "_isAbsTop": true,
  1979. "_isAbsBottom": true,
  1980. "_isAbsHorizontalCenter": true,
  1981. "_isAbsVerticalCenter": true,
  1982. "_originalWidth": 0,
  1983. "_originalHeight": 0,
  1984. "_alignMode": 2,
  1985. "_lockFlags": 0,
  1986. "_id": ""
  1987. },
  1988. {
  1989. "__type__": "cc.PrefabInfo",
  1990. "root": {
  1991. "__id__": 1
  1992. },
  1993. "asset": {
  1994. "__id__": 0
  1995. },
  1996. "fileId": "9a0fCuR+xOfLsasKZ8PANw",
  1997. "sync": false,
  1998. "_synced": {
  1999. "default": false,
  2000. "serializable": false
  2001. }
  2002. },
  2003. {
  2004. "__type__": "cc.Node",
  2005. "_name": "MiddleFireButton",
  2006. "_objFlags": 0,
  2007. "_parent": {
  2008. "__id__": 52
  2009. },
  2010. "_children": [],
  2011. "_active": true,
  2012. "_components": [
  2013. {
  2014. "__id__": 65
  2015. },
  2016. {
  2017. "__id__": 66
  2018. },
  2019. {
  2020. "__id__": 67
  2021. },
  2022. {
  2023. "__id__": 68
  2024. }
  2025. ],
  2026. "_prefab": {
  2027. "__id__": 69
  2028. },
  2029. "_lpos": {
  2030. "__type__": "cc.Vec3",
  2031. "x": 0,
  2032. "y": 19,
  2033. "z": 0
  2034. },
  2035. "_lrot": {
  2036. "__type__": "cc.Quat",
  2037. "x": 0,
  2038. "y": 0,
  2039. "z": 0,
  2040. "w": 1
  2041. },
  2042. "_lscale": {
  2043. "__type__": "cc.Vec3",
  2044. "x": 1,
  2045. "y": 1,
  2046. "z": 1
  2047. },
  2048. "_layer": 33554432,
  2049. "_euler": {
  2050. "__type__": "cc.Vec3",
  2051. "x": 0,
  2052. "y": 0,
  2053. "z": 0
  2054. },
  2055. "_id": ""
  2056. },
  2057. {
  2058. "__type__": "cc.UITransformComponent",
  2059. "_name": "",
  2060. "_objFlags": 0,
  2061. "node": {
  2062. "__id__": 64
  2063. },
  2064. "_enabled": true,
  2065. "_priority": 0,
  2066. "_contentSize": {
  2067. "__type__": "cc.Size",
  2068. "width": 200,
  2069. "height": 217
  2070. },
  2071. "_anchorPoint": {
  2072. "__type__": "cc.Vec2",
  2073. "x": 0.5,
  2074. "y": 0.5
  2075. },
  2076. "_id": ""
  2077. },
  2078. {
  2079. "__type__": "cc.SpriteComponent",
  2080. "_name": "",
  2081. "_objFlags": 0,
  2082. "node": {
  2083. "__id__": 64
  2084. },
  2085. "_enabled": true,
  2086. "_srcBlendFactor": 2,
  2087. "_dstBlendFactor": 4,
  2088. "_color": {
  2089. "__type__": "cc.Color",
  2090. "r": 255,
  2091. "g": 255,
  2092. "b": 255,
  2093. "a": 255
  2094. },
  2095. "_sharedMaterial": null,
  2096. "_spriteFrame": {
  2097. "__uuid__": "4bd0149a-ec9f-4281-ac64-c5113acef501@f9941"
  2098. },
  2099. "_type": 1,
  2100. "_fillType": 0,
  2101. "_sizeMode": 0,
  2102. "_fillCenter": {
  2103. "__type__": "cc.Vec2",
  2104. "x": 0,
  2105. "y": 0
  2106. },
  2107. "_fillStart": 0,
  2108. "_fillRange": 0,
  2109. "_isTrimmedMode": true,
  2110. "_useGrayscale": false,
  2111. "_atlas": null,
  2112. "_id": ""
  2113. },
  2114. {
  2115. "__type__": "cc.ButtonComponent",
  2116. "_name": "",
  2117. "_objFlags": 0,
  2118. "node": {
  2119. "__id__": 64
  2120. },
  2121. "_enabled": true,
  2122. "clickEvents": [],
  2123. "_interactable": true,
  2124. "_transition": 2,
  2125. "_normalColor": {
  2126. "__type__": "cc.Color",
  2127. "r": 214,
  2128. "g": 214,
  2129. "b": 214,
  2130. "a": 255
  2131. },
  2132. "_hoverColor": {
  2133. "__type__": "cc.Color",
  2134. "r": 211,
  2135. "g": 211,
  2136. "b": 211,
  2137. "a": 255
  2138. },
  2139. "_pressColor": {
  2140. "__type__": "cc.Color",
  2141. "r": 255,
  2142. "g": 255,
  2143. "b": 255,
  2144. "a": 255
  2145. },
  2146. "_disabledColor": {
  2147. "__type__": "cc.Color",
  2148. "r": 124,
  2149. "g": 124,
  2150. "b": 124,
  2151. "a": 255
  2152. },
  2153. "_normalSprite": {
  2154. "__uuid__": "4bd0149a-ec9f-4281-ac64-c5113acef501@f9941"
  2155. },
  2156. "_hoverSprite": {
  2157. "__uuid__": "46559712-fa53-4769-9b57-f467711a7dbb@f9941"
  2158. },
  2159. "_pressedSprite": {
  2160. "__uuid__": "46559712-fa53-4769-9b57-f467711a7dbb@f9941"
  2161. },
  2162. "_disabledSprite": {
  2163. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941"
  2164. },
  2165. "_duration": 0.1,
  2166. "_zoomScale": 1.2,
  2167. "_target": {
  2168. "__id__": 64
  2169. },
  2170. "_id": ""
  2171. },
  2172. {
  2173. "__type__": "cc.WidgetComponent",
  2174. "_name": "MiddleFireButton<WidgetComponent>",
  2175. "_objFlags": 0,
  2176. "node": {
  2177. "__id__": 64
  2178. },
  2179. "_enabled": true,
  2180. "_alignFlags": 20,
  2181. "_target": null,
  2182. "_left": 0,
  2183. "_right": 0,
  2184. "_top": 0,
  2185. "_bottom": 3,
  2186. "_horizontalCenter": 0,
  2187. "_verticalCenter": 0,
  2188. "_isAbsLeft": true,
  2189. "_isAbsRight": true,
  2190. "_isAbsTop": true,
  2191. "_isAbsBottom": true,
  2192. "_isAbsHorizontalCenter": true,
  2193. "_isAbsVerticalCenter": true,
  2194. "_originalWidth": 0,
  2195. "_originalHeight": 0,
  2196. "_alignMode": 2,
  2197. "_lockFlags": 0,
  2198. "_id": ""
  2199. },
  2200. {
  2201. "__type__": "cc.PrefabInfo",
  2202. "root": {
  2203. "__id__": 1
  2204. },
  2205. "asset": {
  2206. "__id__": 0
  2207. },
  2208. "fileId": "98Vvjne6pOzLTHJnoPSiYm",
  2209. "sync": false,
  2210. "_synced": {
  2211. "default": false,
  2212. "serializable": false
  2213. }
  2214. },
  2215. {
  2216. "__type__": "cc.Node",
  2217. "_name": "RightFireButton",
  2218. "_objFlags": 0,
  2219. "_parent": {
  2220. "__id__": 52
  2221. },
  2222. "_children": [],
  2223. "_active": true,
  2224. "_components": [
  2225. {
  2226. "__id__": 71
  2227. },
  2228. {
  2229. "__id__": 72
  2230. },
  2231. {
  2232. "__id__": 73
  2233. },
  2234. {
  2235. "__id__": 74
  2236. }
  2237. ],
  2238. "_prefab": {
  2239. "__id__": 75
  2240. },
  2241. "_lpos": {
  2242. "__type__": "cc.Vec3",
  2243. "x": 259.864,
  2244. "y": 19,
  2245. "z": 0
  2246. },
  2247. "_lrot": {
  2248. "__type__": "cc.Quat",
  2249. "x": 0,
  2250. "y": 0,
  2251. "z": 0,
  2252. "w": 1
  2253. },
  2254. "_lscale": {
  2255. "__type__": "cc.Vec3",
  2256. "x": 1,
  2257. "y": 1,
  2258. "z": 1
  2259. },
  2260. "_layer": 33554432,
  2261. "_euler": {
  2262. "__type__": "cc.Vec3",
  2263. "x": 0,
  2264. "y": 0,
  2265. "z": 0
  2266. },
  2267. "_id": ""
  2268. },
  2269. {
  2270. "__type__": "cc.UITransformComponent",
  2271. "_name": "",
  2272. "_objFlags": 0,
  2273. "node": {
  2274. "__id__": 70
  2275. },
  2276. "_enabled": true,
  2277. "_priority": 0,
  2278. "_contentSize": {
  2279. "__type__": "cc.Size",
  2280. "width": 200,
  2281. "height": 217
  2282. },
  2283. "_anchorPoint": {
  2284. "__type__": "cc.Vec2",
  2285. "x": 0.5,
  2286. "y": 0.5
  2287. },
  2288. "_id": ""
  2289. },
  2290. {
  2291. "__type__": "cc.SpriteComponent",
  2292. "_name": "",
  2293. "_objFlags": 0,
  2294. "node": {
  2295. "__id__": 70
  2296. },
  2297. "_enabled": true,
  2298. "_srcBlendFactor": 2,
  2299. "_dstBlendFactor": 4,
  2300. "_color": {
  2301. "__type__": "cc.Color",
  2302. "r": 255,
  2303. "g": 255,
  2304. "b": 255,
  2305. "a": 255
  2306. },
  2307. "_sharedMaterial": null,
  2308. "_spriteFrame": {
  2309. "__uuid__": "4bd0149a-ec9f-4281-ac64-c5113acef501@f9941"
  2310. },
  2311. "_type": 1,
  2312. "_fillType": 0,
  2313. "_sizeMode": 0,
  2314. "_fillCenter": {
  2315. "__type__": "cc.Vec2",
  2316. "x": 0,
  2317. "y": 0
  2318. },
  2319. "_fillStart": 0,
  2320. "_fillRange": 0,
  2321. "_isTrimmedMode": true,
  2322. "_useGrayscale": false,
  2323. "_atlas": null,
  2324. "_id": ""
  2325. },
  2326. {
  2327. "__type__": "cc.ButtonComponent",
  2328. "_name": "",
  2329. "_objFlags": 0,
  2330. "node": {
  2331. "__id__": 70
  2332. },
  2333. "_enabled": true,
  2334. "clickEvents": [],
  2335. "_interactable": true,
  2336. "_transition": 2,
  2337. "_normalColor": {
  2338. "__type__": "cc.Color",
  2339. "r": 214,
  2340. "g": 214,
  2341. "b": 214,
  2342. "a": 255
  2343. },
  2344. "_hoverColor": {
  2345. "__type__": "cc.Color",
  2346. "r": 211,
  2347. "g": 211,
  2348. "b": 211,
  2349. "a": 255
  2350. },
  2351. "_pressColor": {
  2352. "__type__": "cc.Color",
  2353. "r": 255,
  2354. "g": 255,
  2355. "b": 255,
  2356. "a": 255
  2357. },
  2358. "_disabledColor": {
  2359. "__type__": "cc.Color",
  2360. "r": 124,
  2361. "g": 124,
  2362. "b": 124,
  2363. "a": 255
  2364. },
  2365. "_normalSprite": {
  2366. "__uuid__": "4bd0149a-ec9f-4281-ac64-c5113acef501@f9941"
  2367. },
  2368. "_hoverSprite": {
  2369. "__uuid__": "46559712-fa53-4769-9b57-f467711a7dbb@f9941"
  2370. },
  2371. "_pressedSprite": {
  2372. "__uuid__": "46559712-fa53-4769-9b57-f467711a7dbb@f9941"
  2373. },
  2374. "_disabledSprite": {
  2375. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941"
  2376. },
  2377. "_duration": 0.1,
  2378. "_zoomScale": 1.2,
  2379. "_target": {
  2380. "__id__": 70
  2381. },
  2382. "_id": ""
  2383. },
  2384. {
  2385. "__type__": "cc.WidgetComponent",
  2386. "_name": "RightFireButton<WidgetComponent>",
  2387. "_objFlags": 0,
  2388. "node": {
  2389. "__id__": 70
  2390. },
  2391. "_enabled": true,
  2392. "_alignFlags": 36,
  2393. "_target": null,
  2394. "_left": 0,
  2395. "_right": 15.136000000000024,
  2396. "_top": 0,
  2397. "_bottom": 3,
  2398. "_horizontalCenter": 0,
  2399. "_verticalCenter": 0,
  2400. "_isAbsLeft": true,
  2401. "_isAbsRight": true,
  2402. "_isAbsTop": true,
  2403. "_isAbsBottom": true,
  2404. "_isAbsHorizontalCenter": true,
  2405. "_isAbsVerticalCenter": true,
  2406. "_originalWidth": 0,
  2407. "_originalHeight": 0,
  2408. "_alignMode": 2,
  2409. "_lockFlags": 0,
  2410. "_id": ""
  2411. },
  2412. {
  2413. "__type__": "cc.PrefabInfo",
  2414. "root": {
  2415. "__id__": 1
  2416. },
  2417. "asset": {
  2418. "__id__": 0
  2419. },
  2420. "fileId": "b3dzELZMVPJbODa+/+ru7m",
  2421. "sync": false,
  2422. "_synced": {
  2423. "default": false,
  2424. "serializable": false
  2425. }
  2426. },
  2427. {
  2428. "__type__": "cc.UITransformComponent",
  2429. "_name": "",
  2430. "_objFlags": 0,
  2431. "node": {
  2432. "__id__": 52
  2433. },
  2434. "_enabled": true,
  2435. "_priority": 0,
  2436. "_contentSize": {
  2437. "__type__": "cc.Size",
  2438. "width": 750,
  2439. "height": 185
  2440. },
  2441. "_anchorPoint": {
  2442. "__type__": "cc.Vec2",
  2443. "x": 0.5,
  2444. "y": 0.5
  2445. },
  2446. "_id": ""
  2447. },
  2448. {
  2449. "__type__": "cc.WidgetComponent",
  2450. "_name": "BottomView<WidgetComponent>",
  2451. "_objFlags": 0,
  2452. "node": {
  2453. "__id__": 52
  2454. },
  2455. "_enabled": true,
  2456. "_alignFlags": 44,
  2457. "_target": null,
  2458. "_left": 0,
  2459. "_right": 0,
  2460. "_top": 0,
  2461. "_bottom": 0.29300000000000637,
  2462. "_horizontalCenter": 0,
  2463. "_verticalCenter": 0,
  2464. "_isAbsLeft": true,
  2465. "_isAbsRight": true,
  2466. "_isAbsTop": true,
  2467. "_isAbsBottom": true,
  2468. "_isAbsHorizontalCenter": true,
  2469. "_isAbsVerticalCenter": true,
  2470. "_originalWidth": 100,
  2471. "_originalHeight": 0,
  2472. "_alignMode": 2,
  2473. "_lockFlags": 0,
  2474. "_id": ""
  2475. },
  2476. {
  2477. "__type__": "cc.PrefabInfo",
  2478. "root": {
  2479. "__id__": 1
  2480. },
  2481. "asset": {
  2482. "__id__": 0
  2483. },
  2484. "fileId": "53uKvNokpGrova+1LhX1A9",
  2485. "sync": false,
  2486. "_synced": {
  2487. "default": false,
  2488. "serializable": false
  2489. }
  2490. },
  2491. {
  2492. "__type__": "cc.UITransformComponent",
  2493. "_name": "FightingUI<UITransformComponent>",
  2494. "_objFlags": 0,
  2495. "node": {
  2496. "__id__": 1
  2497. },
  2498. "_enabled": true,
  2499. "_priority": 0,
  2500. "_contentSize": {
  2501. "__type__": "cc.Size",
  2502. "width": 750,
  2503. "height": 1334
  2504. },
  2505. "_anchorPoint": {
  2506. "__type__": "cc.Vec2",
  2507. "x": 0.5,
  2508. "y": 0.5
  2509. },
  2510. "_id": ""
  2511. },
  2512. {
  2513. "__type__": "cc.WidgetComponent",
  2514. "_name": "FightingUI<WidgetComponent>",
  2515. "_objFlags": 0,
  2516. "node": {
  2517. "__id__": 1
  2518. },
  2519. "_enabled": true,
  2520. "_alignFlags": 45,
  2521. "_target": null,
  2522. "_left": 0,
  2523. "_right": 0,
  2524. "_top": 0,
  2525. "_bottom": 0,
  2526. "_horizontalCenter": 0,
  2527. "_verticalCenter": 0,
  2528. "_isAbsLeft": true,
  2529. "_isAbsRight": true,
  2530. "_isAbsTop": true,
  2531. "_isAbsBottom": true,
  2532. "_isAbsHorizontalCenter": true,
  2533. "_isAbsVerticalCenter": true,
  2534. "_originalWidth": 100,
  2535. "_originalHeight": 100,
  2536. "_alignMode": 2,
  2537. "_lockFlags": 0,
  2538. "_id": ""
  2539. },
  2540. {
  2541. "__type__": "d0bdeKIPsdMkKRGOn+5AWII",
  2542. "_name": "",
  2543. "_objFlags": 0,
  2544. "node": {
  2545. "__id__": 1
  2546. },
  2547. "_enabled": true,
  2548. "BulletUIPrefab": {
  2549. "__uuid__": "c8501bb6-ef6c-4576-bdf2-b21807f2b74b"
  2550. },
  2551. "BulletClip": {
  2552. "__id__": 47
  2553. },
  2554. "leftFireButton": {
  2555. "__id__": 61
  2556. },
  2557. "middleFireButton": {
  2558. "__id__": 67
  2559. },
  2560. "rightFireButton": {
  2561. "__id__": 73
  2562. },
  2563. "_id": ""
  2564. },
  2565. {
  2566. "__type__": "cc.PrefabInfo",
  2567. "root": {
  2568. "__id__": 1
  2569. },
  2570. "asset": {
  2571. "__id__": 0
  2572. },
  2573. "fileId": "06uwNz3pFPm6kz/+jv96Mt",
  2574. "sync": false,
  2575. "_synced": {
  2576. "default": false,
  2577. "serializable": false
  2578. }
  2579. }
  2580. ]