FightingUI.prefab 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360
  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. "__id__": 79
  39. },
  40. {
  41. "__id__": 91
  42. },
  43. {
  44. "__id__": 95
  45. }
  46. ],
  47. "_active": true,
  48. "_components": [
  49. {
  50. "__id__": 105
  51. },
  52. {
  53. "__id__": 106
  54. },
  55. {
  56. "__id__": 107
  57. }
  58. ],
  59. "_prefab": {
  60. "__id__": 108
  61. },
  62. "_lpos": {
  63. "__type__": "cc.Vec3",
  64. "x": 0,
  65. "y": 0,
  66. "z": 0
  67. },
  68. "_lrot": {
  69. "__type__": "cc.Quat",
  70. "x": 0,
  71. "y": 0,
  72. "z": 0,
  73. "w": 1
  74. },
  75. "_lscale": {
  76. "__type__": "cc.Vec3",
  77. "x": 1,
  78. "y": 1,
  79. "z": 1
  80. },
  81. "_layer": 1073741824,
  82. "_euler": {
  83. "__type__": "cc.Vec3",
  84. "x": 0,
  85. "y": 0,
  86. "z": 0
  87. },
  88. "_id": ""
  89. },
  90. {
  91. "__type__": "cc.Node",
  92. "_name": "Design",
  93. "_objFlags": 0,
  94. "_parent": {
  95. "__id__": 1
  96. },
  97. "_children": [],
  98. "_active": false,
  99. "_components": [
  100. {
  101. "__id__": 3
  102. },
  103. {
  104. "__id__": 4
  105. }
  106. ],
  107. "_prefab": {
  108. "__id__": 5
  109. },
  110. "_lpos": {
  111. "__type__": "cc.Vec3",
  112. "x": 0,
  113. "y": 0,
  114. "z": 0
  115. },
  116. "_lrot": {
  117. "__type__": "cc.Quat",
  118. "x": 0,
  119. "y": 0,
  120. "z": 0,
  121. "w": 1
  122. },
  123. "_lscale": {
  124. "__type__": "cc.Vec3",
  125. "x": 1,
  126. "y": 1,
  127. "z": 1
  128. },
  129. "_layer": 33554432,
  130. "_euler": {
  131. "__type__": "cc.Vec3",
  132. "x": 0,
  133. "y": 0,
  134. "z": 0
  135. },
  136. "_id": ""
  137. },
  138. {
  139. "__type__": "cc.UITransformComponent",
  140. "_name": "",
  141. "_objFlags": 0,
  142. "node": {
  143. "__id__": 2
  144. },
  145. "_enabled": true,
  146. "_priority": 0,
  147. "_contentSize": {
  148. "__type__": "cc.Size",
  149. "width": 750,
  150. "height": 1334
  151. },
  152. "_anchorPoint": {
  153. "__type__": "cc.Vec2",
  154. "x": 0.5,
  155. "y": 0.5
  156. },
  157. "_id": ""
  158. },
  159. {
  160. "__type__": "cc.SpriteComponent",
  161. "_name": "",
  162. "_objFlags": 0,
  163. "node": {
  164. "__id__": 2
  165. },
  166. "_enabled": true,
  167. "_srcBlendFactor": 2,
  168. "_dstBlendFactor": 4,
  169. "_color": {
  170. "__type__": "cc.Color",
  171. "r": 255,
  172. "g": 255,
  173. "b": 255,
  174. "a": 255
  175. },
  176. "_sharedMaterial": null,
  177. "_spriteFrame": {
  178. "__uuid__": "bf64a62d-470d-4f55-a9e8-09be46ca2a51@f9941"
  179. },
  180. "_type": 0,
  181. "_fillType": 0,
  182. "_sizeMode": 1,
  183. "_fillCenter": {
  184. "__type__": "cc.Vec2",
  185. "x": 0,
  186. "y": 0
  187. },
  188. "_fillStart": 0,
  189. "_fillRange": 0,
  190. "_isTrimmedMode": true,
  191. "_useGrayscale": false,
  192. "_atlas": null,
  193. "_id": ""
  194. },
  195. {
  196. "__type__": "cc.PrefabInfo",
  197. "root": {
  198. "__id__": 1
  199. },
  200. "asset": {
  201. "__id__": 0
  202. },
  203. "fileId": "c7L05FIVxDZIKKb7UWHEPk",
  204. "sync": false,
  205. "_synced": {
  206. "default": false,
  207. "serializable": false
  208. }
  209. },
  210. {
  211. "__type__": "cc.Node",
  212. "_name": "GlodView",
  213. "_objFlags": 0,
  214. "_parent": {
  215. "__id__": 1
  216. },
  217. "_children": [
  218. {
  219. "__id__": 7
  220. },
  221. {
  222. "__id__": 12
  223. },
  224. {
  225. "__id__": 16
  226. }
  227. ],
  228. "_active": true,
  229. "_components": [
  230. {
  231. "__id__": 20
  232. }
  233. ],
  234. "_prefab": {
  235. "__id__": 21
  236. },
  237. "_lpos": {
  238. "__type__": "cc.Vec3",
  239. "x": -194.195,
  240. "y": 578.91,
  241. "z": 0
  242. },
  243. "_lrot": {
  244. "__type__": "cc.Quat",
  245. "x": 0,
  246. "y": 0,
  247. "z": 0,
  248. "w": 1
  249. },
  250. "_lscale": {
  251. "__type__": "cc.Vec3",
  252. "x": 1,
  253. "y": 1,
  254. "z": 1
  255. },
  256. "_layer": 1073741824,
  257. "_euler": {
  258. "__type__": "cc.Vec3",
  259. "x": 0,
  260. "y": 0,
  261. "z": 0
  262. },
  263. "_id": ""
  264. },
  265. {
  266. "__type__": "cc.Node",
  267. "_name": "Background",
  268. "_objFlags": 0,
  269. "_parent": {
  270. "__id__": 6
  271. },
  272. "_children": [],
  273. "_active": true,
  274. "_components": [
  275. {
  276. "__id__": 8
  277. },
  278. {
  279. "__id__": 9
  280. },
  281. {
  282. "__id__": 10
  283. }
  284. ],
  285. "_prefab": {
  286. "__id__": 11
  287. },
  288. "_lpos": {
  289. "__type__": "cc.Vec3",
  290. "x": 78.731,
  291. "y": 0,
  292. "z": 0
  293. },
  294. "_lrot": {
  295. "__type__": "cc.Quat",
  296. "x": 0,
  297. "y": 0,
  298. "z": 0,
  299. "w": 1
  300. },
  301. "_lscale": {
  302. "__type__": "cc.Vec3",
  303. "x": 1,
  304. "y": 1,
  305. "z": 1
  306. },
  307. "_layer": 33554432,
  308. "_euler": {
  309. "__type__": "cc.Vec3",
  310. "x": 0,
  311. "y": 0,
  312. "z": 0
  313. },
  314. "_id": ""
  315. },
  316. {
  317. "__type__": "cc.UITransformComponent",
  318. "_name": "",
  319. "_objFlags": 0,
  320. "node": {
  321. "__id__": 7
  322. },
  323. "_enabled": true,
  324. "_priority": 0,
  325. "_contentSize": {
  326. "__type__": "cc.Size",
  327. "width": 180,
  328. "height": 40
  329. },
  330. "_anchorPoint": {
  331. "__type__": "cc.Vec2",
  332. "x": 0.5,
  333. "y": 0.5
  334. },
  335. "_id": ""
  336. },
  337. {
  338. "__type__": "cc.SpriteComponent",
  339. "_name": "",
  340. "_objFlags": 0,
  341. "node": {
  342. "__id__": 7
  343. },
  344. "_enabled": true,
  345. "_srcBlendFactor": 2,
  346. "_dstBlendFactor": 4,
  347. "_color": {
  348. "__type__": "cc.Color",
  349. "r": 255,
  350. "g": 255,
  351. "b": 255,
  352. "a": 255
  353. },
  354. "_sharedMaterial": null,
  355. "_spriteFrame": {
  356. "__uuid__": "72e319bc-562c-4474-b068-4d153e08dc18@f9941"
  357. },
  358. "_type": 1,
  359. "_fillType": 0,
  360. "_sizeMode": 0,
  361. "_fillCenter": {
  362. "__type__": "cc.Vec2",
  363. "x": 0,
  364. "y": 0
  365. },
  366. "_fillStart": 0,
  367. "_fillRange": 0,
  368. "_isTrimmedMode": true,
  369. "_useGrayscale": false,
  370. "_atlas": null,
  371. "_id": ""
  372. },
  373. {
  374. "__type__": "cc.UIOpacityComponent",
  375. "_name": "",
  376. "_objFlags": 0,
  377. "node": {
  378. "__id__": 7
  379. },
  380. "_enabled": true,
  381. "_opacity": 100,
  382. "_id": ""
  383. },
  384. {
  385. "__type__": "cc.PrefabInfo",
  386. "root": {
  387. "__id__": 1
  388. },
  389. "asset": {
  390. "__id__": 0
  391. },
  392. "fileId": "38P0DewgVJALt7ErCwX3SR",
  393. "sync": false,
  394. "_synced": {
  395. "default": false,
  396. "serializable": false
  397. }
  398. },
  399. {
  400. "__type__": "cc.Node",
  401. "_name": "GlodIcon",
  402. "_objFlags": 0,
  403. "_parent": {
  404. "__id__": 6
  405. },
  406. "_children": [],
  407. "_active": true,
  408. "_components": [
  409. {
  410. "__id__": 13
  411. },
  412. {
  413. "__id__": 14
  414. }
  415. ],
  416. "_prefab": {
  417. "__id__": 15
  418. },
  419. "_lpos": {
  420. "__type__": "cc.Vec3",
  421. "x": 0,
  422. "y": 0,
  423. "z": 0
  424. },
  425. "_lrot": {
  426. "__type__": "cc.Quat",
  427. "x": 0,
  428. "y": 0,
  429. "z": 0,
  430. "w": 1
  431. },
  432. "_lscale": {
  433. "__type__": "cc.Vec3",
  434. "x": 1,
  435. "y": 1,
  436. "z": 1
  437. },
  438. "_layer": 33554432,
  439. "_euler": {
  440. "__type__": "cc.Vec3",
  441. "x": 0,
  442. "y": 0,
  443. "z": 0
  444. },
  445. "_id": ""
  446. },
  447. {
  448. "__type__": "cc.UITransformComponent",
  449. "_name": "",
  450. "_objFlags": 0,
  451. "node": {
  452. "__id__": 12
  453. },
  454. "_enabled": true,
  455. "_priority": 0,
  456. "_contentSize": {
  457. "__type__": "cc.Size",
  458. "width": 62,
  459. "height": 54
  460. },
  461. "_anchorPoint": {
  462. "__type__": "cc.Vec2",
  463. "x": 0.5,
  464. "y": 0.5
  465. },
  466. "_id": ""
  467. },
  468. {
  469. "__type__": "cc.SpriteComponent",
  470. "_name": "",
  471. "_objFlags": 0,
  472. "node": {
  473. "__id__": 12
  474. },
  475. "_enabled": true,
  476. "_srcBlendFactor": 2,
  477. "_dstBlendFactor": 4,
  478. "_color": {
  479. "__type__": "cc.Color",
  480. "r": 255,
  481. "g": 255,
  482. "b": 255,
  483. "a": 255
  484. },
  485. "_sharedMaterial": null,
  486. "_spriteFrame": {
  487. "__uuid__": "b84db5b7-37f7-4e6a-8382-12e7603ecb45@f9941"
  488. },
  489. "_type": 0,
  490. "_fillType": 0,
  491. "_sizeMode": 1,
  492. "_fillCenter": {
  493. "__type__": "cc.Vec2",
  494. "x": 0,
  495. "y": 0
  496. },
  497. "_fillStart": 0,
  498. "_fillRange": 0,
  499. "_isTrimmedMode": true,
  500. "_useGrayscale": false,
  501. "_atlas": null,
  502. "_id": ""
  503. },
  504. {
  505. "__type__": "cc.PrefabInfo",
  506. "root": {
  507. "__id__": 1
  508. },
  509. "asset": {
  510. "__id__": 0
  511. },
  512. "fileId": "8dYjWpfwdGwIKQPIiHy/9G",
  513. "sync": false,
  514. "_synced": {
  515. "default": false,
  516. "serializable": false
  517. }
  518. },
  519. {
  520. "__type__": "cc.Node",
  521. "_name": "Label",
  522. "_objFlags": 0,
  523. "_parent": {
  524. "__id__": 6
  525. },
  526. "_children": [],
  527. "_active": true,
  528. "_components": [
  529. {
  530. "__id__": 17
  531. },
  532. {
  533. "__id__": 18
  534. }
  535. ],
  536. "_prefab": {
  537. "__id__": 19
  538. },
  539. "_lpos": {
  540. "__type__": "cc.Vec3",
  541. "x": 98.863,
  542. "y": -2.354,
  543. "z": 0
  544. },
  545. "_lrot": {
  546. "__type__": "cc.Quat",
  547. "x": 0,
  548. "y": 0,
  549. "z": 0,
  550. "w": 1
  551. },
  552. "_lscale": {
  553. "__type__": "cc.Vec3",
  554. "x": 1,
  555. "y": 1,
  556. "z": 1
  557. },
  558. "_layer": 33554432,
  559. "_euler": {
  560. "__type__": "cc.Vec3",
  561. "x": 0,
  562. "y": 0,
  563. "z": 0
  564. },
  565. "_id": ""
  566. },
  567. {
  568. "__type__": "cc.UITransformComponent",
  569. "_name": "Label<UITransformComponent>",
  570. "_objFlags": 0,
  571. "node": {
  572. "__id__": 16
  573. },
  574. "_enabled": true,
  575. "_priority": 0,
  576. "_contentSize": {
  577. "__type__": "cc.Size",
  578. "width": 16.68,
  579. "height": 50.4
  580. },
  581. "_anchorPoint": {
  582. "__type__": "cc.Vec2",
  583. "x": 0.5,
  584. "y": 0.5
  585. },
  586. "_id": ""
  587. },
  588. {
  589. "__type__": "cc.LabelComponent",
  590. "_name": "Label<LabelComponent>",
  591. "_objFlags": 0,
  592. "node": {
  593. "__id__": 16
  594. },
  595. "_enabled": true,
  596. "_srcBlendFactor": 2,
  597. "_dstBlendFactor": 4,
  598. "_color": {
  599. "__type__": "cc.Color",
  600. "r": 255,
  601. "g": 255,
  602. "b": 0,
  603. "a": 255
  604. },
  605. "_sharedMaterial": null,
  606. "_useOriginalSize": true,
  607. "_string": "0",
  608. "_horizontalAlign": 1,
  609. "_verticalAlign": 1,
  610. "_actualFontSize": 30,
  611. "_fontSize": 30,
  612. "_fontFamily": "Arial",
  613. "_lineHeight": 40,
  614. "_overflow": 0,
  615. "_enableWrapText": true,
  616. "_font": null,
  617. "_isSystemFontUsed": true,
  618. "_isItalic": false,
  619. "_isBold": true,
  620. "_isUnderline": false,
  621. "_cacheMode": 0,
  622. "_id": ""
  623. },
  624. {
  625. "__type__": "cc.PrefabInfo",
  626. "root": {
  627. "__id__": 1
  628. },
  629. "asset": {
  630. "__id__": 0
  631. },
  632. "fileId": "960JbMmjdL/r8sL95lenHm",
  633. "sync": false,
  634. "_synced": {
  635. "default": false,
  636. "serializable": false
  637. }
  638. },
  639. {
  640. "__type__": "cc.UITransformComponent",
  641. "_name": "",
  642. "_objFlags": 0,
  643. "node": {
  644. "__id__": 6
  645. },
  646. "_enabled": true,
  647. "_priority": 0,
  648. "_contentSize": {
  649. "__type__": "cc.Size",
  650. "width": 100,
  651. "height": 100
  652. },
  653. "_anchorPoint": {
  654. "__type__": "cc.Vec2",
  655. "x": 0.5,
  656. "y": 0.5
  657. },
  658. "_id": ""
  659. },
  660. {
  661. "__type__": "cc.PrefabInfo",
  662. "root": {
  663. "__id__": 1
  664. },
  665. "asset": {
  666. "__id__": 0
  667. },
  668. "fileId": "ebtVf5Gd1Fb7qxnjS5KCE6",
  669. "sync": false,
  670. "_synced": {
  671. "default": false,
  672. "serializable": false
  673. }
  674. },
  675. {
  676. "__type__": "cc.Node",
  677. "_name": "MonsterCountView",
  678. "_objFlags": 0,
  679. "_parent": {
  680. "__id__": 1
  681. },
  682. "_children": [
  683. {
  684. "__id__": 23
  685. },
  686. {
  687. "__id__": 28
  688. },
  689. {
  690. "__id__": 32
  691. }
  692. ],
  693. "_active": true,
  694. "_components": [
  695. {
  696. "__id__": 36
  697. }
  698. ],
  699. "_prefab": {
  700. "__id__": 37
  701. },
  702. "_lpos": {
  703. "__type__": "cc.Vec3",
  704. "x": 14.123,
  705. "y": 578.91,
  706. "z": 0
  707. },
  708. "_lrot": {
  709. "__type__": "cc.Quat",
  710. "x": 0,
  711. "y": 0,
  712. "z": 0,
  713. "w": 1
  714. },
  715. "_lscale": {
  716. "__type__": "cc.Vec3",
  717. "x": 1,
  718. "y": 1,
  719. "z": 1
  720. },
  721. "_layer": 1073741824,
  722. "_euler": {
  723. "__type__": "cc.Vec3",
  724. "x": 0,
  725. "y": 0,
  726. "z": 0
  727. },
  728. "_id": ""
  729. },
  730. {
  731. "__type__": "cc.Node",
  732. "_name": "Background",
  733. "_objFlags": 0,
  734. "_parent": {
  735. "__id__": 22
  736. },
  737. "_children": [],
  738. "_active": true,
  739. "_components": [
  740. {
  741. "__id__": 24
  742. },
  743. {
  744. "__id__": 25
  745. },
  746. {
  747. "__id__": 26
  748. }
  749. ],
  750. "_prefab": {
  751. "__id__": 27
  752. },
  753. "_lpos": {
  754. "__type__": "cc.Vec3",
  755. "x": 78.731,
  756. "y": 0,
  757. "z": 0
  758. },
  759. "_lrot": {
  760. "__type__": "cc.Quat",
  761. "x": 0,
  762. "y": 0,
  763. "z": 0,
  764. "w": 1
  765. },
  766. "_lscale": {
  767. "__type__": "cc.Vec3",
  768. "x": 1,
  769. "y": 1,
  770. "z": 1
  771. },
  772. "_layer": 33554432,
  773. "_euler": {
  774. "__type__": "cc.Vec3",
  775. "x": 0,
  776. "y": 0,
  777. "z": 0
  778. },
  779. "_id": ""
  780. },
  781. {
  782. "__type__": "cc.UITransformComponent",
  783. "_name": "",
  784. "_objFlags": 0,
  785. "node": {
  786. "__id__": 23
  787. },
  788. "_enabled": true,
  789. "_priority": 0,
  790. "_contentSize": {
  791. "__type__": "cc.Size",
  792. "width": 180,
  793. "height": 40
  794. },
  795. "_anchorPoint": {
  796. "__type__": "cc.Vec2",
  797. "x": 0.5,
  798. "y": 0.5
  799. },
  800. "_id": ""
  801. },
  802. {
  803. "__type__": "cc.SpriteComponent",
  804. "_name": "",
  805. "_objFlags": 0,
  806. "node": {
  807. "__id__": 23
  808. },
  809. "_enabled": true,
  810. "_srcBlendFactor": 2,
  811. "_dstBlendFactor": 4,
  812. "_color": {
  813. "__type__": "cc.Color",
  814. "r": 255,
  815. "g": 255,
  816. "b": 255,
  817. "a": 255
  818. },
  819. "_sharedMaterial": null,
  820. "_spriteFrame": {
  821. "__uuid__": "72e319bc-562c-4474-b068-4d153e08dc18@f9941"
  822. },
  823. "_type": 1,
  824. "_fillType": 0,
  825. "_sizeMode": 0,
  826. "_fillCenter": {
  827. "__type__": "cc.Vec2",
  828. "x": 0,
  829. "y": 0
  830. },
  831. "_fillStart": 0,
  832. "_fillRange": 0,
  833. "_isTrimmedMode": true,
  834. "_useGrayscale": false,
  835. "_atlas": null,
  836. "_id": ""
  837. },
  838. {
  839. "__type__": "cc.UIOpacityComponent",
  840. "_name": "",
  841. "_objFlags": 0,
  842. "node": {
  843. "__id__": 23
  844. },
  845. "_enabled": true,
  846. "_opacity": 100,
  847. "_id": ""
  848. },
  849. {
  850. "__type__": "cc.PrefabInfo",
  851. "root": {
  852. "__id__": 1
  853. },
  854. "asset": {
  855. "__id__": 0
  856. },
  857. "fileId": "0adyHKg6lIx4+07os/FcuR",
  858. "sync": false,
  859. "_synced": {
  860. "default": false,
  861. "serializable": false
  862. }
  863. },
  864. {
  865. "__type__": "cc.Node",
  866. "_name": "Icon",
  867. "_objFlags": 0,
  868. "_parent": {
  869. "__id__": 22
  870. },
  871. "_children": [],
  872. "_active": true,
  873. "_components": [
  874. {
  875. "__id__": 29
  876. },
  877. {
  878. "__id__": 30
  879. }
  880. ],
  881. "_prefab": {
  882. "__id__": 31
  883. },
  884. "_lpos": {
  885. "__type__": "cc.Vec3",
  886. "x": 0,
  887. "y": 0,
  888. "z": 0
  889. },
  890. "_lrot": {
  891. "__type__": "cc.Quat",
  892. "x": 0,
  893. "y": 0,
  894. "z": 0,
  895. "w": 1
  896. },
  897. "_lscale": {
  898. "__type__": "cc.Vec3",
  899. "x": 1,
  900. "y": 1,
  901. "z": 1
  902. },
  903. "_layer": 33554432,
  904. "_euler": {
  905. "__type__": "cc.Vec3",
  906. "x": 0,
  907. "y": 0,
  908. "z": 0
  909. },
  910. "_id": ""
  911. },
  912. {
  913. "__type__": "cc.UITransformComponent",
  914. "_name": "GlodIcon<UITransformComponent>",
  915. "_objFlags": 0,
  916. "node": {
  917. "__id__": 28
  918. },
  919. "_enabled": true,
  920. "_priority": 0,
  921. "_contentSize": {
  922. "__type__": "cc.Size",
  923. "width": 49,
  924. "height": 50
  925. },
  926. "_anchorPoint": {
  927. "__type__": "cc.Vec2",
  928. "x": 0.5,
  929. "y": 0.5
  930. },
  931. "_id": ""
  932. },
  933. {
  934. "__type__": "cc.SpriteComponent",
  935. "_name": "GlodIcon<SpriteComponent>",
  936. "_objFlags": 0,
  937. "node": {
  938. "__id__": 28
  939. },
  940. "_enabled": true,
  941. "_srcBlendFactor": 2,
  942. "_dstBlendFactor": 4,
  943. "_color": {
  944. "__type__": "cc.Color",
  945. "r": 255,
  946. "g": 255,
  947. "b": 255,
  948. "a": 255
  949. },
  950. "_sharedMaterial": null,
  951. "_spriteFrame": {
  952. "__uuid__": "6b61934e-46b1-48a9-8db7-b0dbca9fe53b@f9941"
  953. },
  954. "_type": 0,
  955. "_fillType": 0,
  956. "_sizeMode": 1,
  957. "_fillCenter": {
  958. "__type__": "cc.Vec2",
  959. "x": 0,
  960. "y": 0
  961. },
  962. "_fillStart": 0,
  963. "_fillRange": 0,
  964. "_isTrimmedMode": true,
  965. "_useGrayscale": false,
  966. "_atlas": null,
  967. "_id": ""
  968. },
  969. {
  970. "__type__": "cc.PrefabInfo",
  971. "root": {
  972. "__id__": 1
  973. },
  974. "asset": {
  975. "__id__": 0
  976. },
  977. "fileId": "32N1LDV9ZKrJjF+mPNaoZb",
  978. "sync": false,
  979. "_synced": {
  980. "default": false,
  981. "serializable": false
  982. }
  983. },
  984. {
  985. "__type__": "cc.Node",
  986. "_name": "Label",
  987. "_objFlags": 0,
  988. "_parent": {
  989. "__id__": 22
  990. },
  991. "_children": [],
  992. "_active": true,
  993. "_components": [
  994. {
  995. "__id__": 33
  996. },
  997. {
  998. "__id__": 34
  999. }
  1000. ],
  1001. "_prefab": {
  1002. "__id__": 35
  1003. },
  1004. "_lpos": {
  1005. "__type__": "cc.Vec3",
  1006. "x": 98.863,
  1007. "y": -2.354,
  1008. "z": 0
  1009. },
  1010. "_lrot": {
  1011. "__type__": "cc.Quat",
  1012. "x": 0,
  1013. "y": 0,
  1014. "z": 0,
  1015. "w": 1
  1016. },
  1017. "_lscale": {
  1018. "__type__": "cc.Vec3",
  1019. "x": 1,
  1020. "y": 1,
  1021. "z": 1
  1022. },
  1023. "_layer": 33554432,
  1024. "_euler": {
  1025. "__type__": "cc.Vec3",
  1026. "x": 0,
  1027. "y": 0,
  1028. "z": 0
  1029. },
  1030. "_id": ""
  1031. },
  1032. {
  1033. "__type__": "cc.UITransformComponent",
  1034. "_name": "Label<UITransformComponent>",
  1035. "_objFlags": 0,
  1036. "node": {
  1037. "__id__": 32
  1038. },
  1039. "_enabled": true,
  1040. "_priority": 0,
  1041. "_contentSize": {
  1042. "__type__": "cc.Size",
  1043. "width": 41.7,
  1044. "height": 50.4
  1045. },
  1046. "_anchorPoint": {
  1047. "__type__": "cc.Vec2",
  1048. "x": 0.5,
  1049. "y": 0.5
  1050. },
  1051. "_id": ""
  1052. },
  1053. {
  1054. "__type__": "cc.LabelComponent",
  1055. "_name": "Label<LabelComponent>",
  1056. "_objFlags": 0,
  1057. "node": {
  1058. "__id__": 32
  1059. },
  1060. "_enabled": true,
  1061. "_srcBlendFactor": 2,
  1062. "_dstBlendFactor": 4,
  1063. "_color": {
  1064. "__type__": "cc.Color",
  1065. "r": 255,
  1066. "g": 255,
  1067. "b": 255,
  1068. "a": 255
  1069. },
  1070. "_sharedMaterial": null,
  1071. "_useOriginalSize": true,
  1072. "_string": "0/0",
  1073. "_horizontalAlign": 1,
  1074. "_verticalAlign": 1,
  1075. "_actualFontSize": 30,
  1076. "_fontSize": 30,
  1077. "_fontFamily": "Arial",
  1078. "_lineHeight": 40,
  1079. "_overflow": 0,
  1080. "_enableWrapText": true,
  1081. "_font": null,
  1082. "_isSystemFontUsed": true,
  1083. "_isItalic": false,
  1084. "_isBold": true,
  1085. "_isUnderline": false,
  1086. "_cacheMode": 0,
  1087. "_id": ""
  1088. },
  1089. {
  1090. "__type__": "cc.PrefabInfo",
  1091. "root": {
  1092. "__id__": 1
  1093. },
  1094. "asset": {
  1095. "__id__": 0
  1096. },
  1097. "fileId": "b9Q27DZspLzJcTVKOVg/bo",
  1098. "sync": false,
  1099. "_synced": {
  1100. "default": false,
  1101. "serializable": false
  1102. }
  1103. },
  1104. {
  1105. "__type__": "cc.UITransformComponent",
  1106. "_name": "",
  1107. "_objFlags": 0,
  1108. "node": {
  1109. "__id__": 22
  1110. },
  1111. "_enabled": true,
  1112. "_priority": 0,
  1113. "_contentSize": {
  1114. "__type__": "cc.Size",
  1115. "width": 100,
  1116. "height": 100
  1117. },
  1118. "_anchorPoint": {
  1119. "__type__": "cc.Vec2",
  1120. "x": 0.5,
  1121. "y": 0.5
  1122. },
  1123. "_id": ""
  1124. },
  1125. {
  1126. "__type__": "cc.PrefabInfo",
  1127. "root": {
  1128. "__id__": 1
  1129. },
  1130. "asset": {
  1131. "__id__": 0
  1132. },
  1133. "fileId": "da1GcFwEFNR6yRB2Dvj/gw",
  1134. "sync": false,
  1135. "_synced": {
  1136. "default": false,
  1137. "serializable": false
  1138. }
  1139. },
  1140. {
  1141. "__type__": "cc.Node",
  1142. "_name": "BackButton",
  1143. "_objFlags": 0,
  1144. "_parent": {
  1145. "__id__": 1
  1146. },
  1147. "_children": [
  1148. {
  1149. "__id__": 39
  1150. }
  1151. ],
  1152. "_active": true,
  1153. "_components": [
  1154. {
  1155. "__id__": 43
  1156. },
  1157. {
  1158. "__id__": 44
  1159. },
  1160. {
  1161. "__id__": 45
  1162. }
  1163. ],
  1164. "_prefab": {
  1165. "__id__": 46
  1166. },
  1167. "_lpos": {
  1168. "__type__": "cc.Vec3",
  1169. "x": -305.502,
  1170. "y": 548.432,
  1171. "z": 0
  1172. },
  1173. "_lrot": {
  1174. "__type__": "cc.Quat",
  1175. "x": 0,
  1176. "y": 0,
  1177. "z": 0,
  1178. "w": 1
  1179. },
  1180. "_lscale": {
  1181. "__type__": "cc.Vec3",
  1182. "x": 1,
  1183. "y": 1,
  1184. "z": 1
  1185. },
  1186. "_layer": 33554432,
  1187. "_euler": {
  1188. "__type__": "cc.Vec3",
  1189. "x": 0,
  1190. "y": 0,
  1191. "z": 0
  1192. },
  1193. "_id": ""
  1194. },
  1195. {
  1196. "__type__": "cc.Node",
  1197. "_name": "Sprite",
  1198. "_objFlags": 0,
  1199. "_parent": {
  1200. "__id__": 38
  1201. },
  1202. "_children": [],
  1203. "_active": true,
  1204. "_components": [
  1205. {
  1206. "__id__": 40
  1207. },
  1208. {
  1209. "__id__": 41
  1210. }
  1211. ],
  1212. "_prefab": {
  1213. "__id__": 42
  1214. },
  1215. "_lpos": {
  1216. "__type__": "cc.Vec3",
  1217. "x": -4.908,
  1218. "y": 3.681,
  1219. "z": 0
  1220. },
  1221. "_lrot": {
  1222. "__type__": "cc.Quat",
  1223. "x": 0,
  1224. "y": 0,
  1225. "z": 0,
  1226. "w": 1
  1227. },
  1228. "_lscale": {
  1229. "__type__": "cc.Vec3",
  1230. "x": 1,
  1231. "y": 1,
  1232. "z": 1
  1233. },
  1234. "_layer": 33554432,
  1235. "_euler": {
  1236. "__type__": "cc.Vec3",
  1237. "x": 0,
  1238. "y": 0,
  1239. "z": 0
  1240. },
  1241. "_id": ""
  1242. },
  1243. {
  1244. "__type__": "cc.UITransformComponent",
  1245. "_name": "",
  1246. "_objFlags": 0,
  1247. "node": {
  1248. "__id__": 39
  1249. },
  1250. "_enabled": true,
  1251. "_priority": 0,
  1252. "_contentSize": {
  1253. "__type__": "cc.Size",
  1254. "width": 56,
  1255. "height": 57
  1256. },
  1257. "_anchorPoint": {
  1258. "__type__": "cc.Vec2",
  1259. "x": 0.5,
  1260. "y": 0.5
  1261. },
  1262. "_id": ""
  1263. },
  1264. {
  1265. "__type__": "cc.SpriteComponent",
  1266. "_name": "",
  1267. "_objFlags": 0,
  1268. "node": {
  1269. "__id__": 39
  1270. },
  1271. "_enabled": true,
  1272. "_srcBlendFactor": 2,
  1273. "_dstBlendFactor": 4,
  1274. "_color": {
  1275. "__type__": "cc.Color",
  1276. "r": 255,
  1277. "g": 255,
  1278. "b": 255,
  1279. "a": 255
  1280. },
  1281. "_sharedMaterial": null,
  1282. "_spriteFrame": {
  1283. "__uuid__": "bd3be807-f387-461c-9aae-9051d64fa928@f9941"
  1284. },
  1285. "_type": 0,
  1286. "_fillType": 0,
  1287. "_sizeMode": 1,
  1288. "_fillCenter": {
  1289. "__type__": "cc.Vec2",
  1290. "x": 0,
  1291. "y": 0
  1292. },
  1293. "_fillStart": 0,
  1294. "_fillRange": 0,
  1295. "_isTrimmedMode": true,
  1296. "_useGrayscale": false,
  1297. "_atlas": null,
  1298. "_id": ""
  1299. },
  1300. {
  1301. "__type__": "cc.PrefabInfo",
  1302. "root": {
  1303. "__id__": 1
  1304. },
  1305. "asset": {
  1306. "__id__": 0
  1307. },
  1308. "fileId": "00WudovgZIgYPAPu8mFdTU",
  1309. "sync": false,
  1310. "_synced": {
  1311. "default": false,
  1312. "serializable": false
  1313. }
  1314. },
  1315. {
  1316. "__type__": "cc.UITransformComponent",
  1317. "_name": "",
  1318. "_objFlags": 0,
  1319. "node": {
  1320. "__id__": 38
  1321. },
  1322. "_enabled": true,
  1323. "_priority": 0,
  1324. "_contentSize": {
  1325. "__type__": "cc.Size",
  1326. "width": 105,
  1327. "height": 111
  1328. },
  1329. "_anchorPoint": {
  1330. "__type__": "cc.Vec2",
  1331. "x": 0.5,
  1332. "y": 0.5
  1333. },
  1334. "_id": ""
  1335. },
  1336. {
  1337. "__type__": "cc.SpriteComponent",
  1338. "_name": "",
  1339. "_objFlags": 0,
  1340. "node": {
  1341. "__id__": 38
  1342. },
  1343. "_enabled": true,
  1344. "_srcBlendFactor": 2,
  1345. "_dstBlendFactor": 4,
  1346. "_color": {
  1347. "__type__": "cc.Color",
  1348. "r": 255,
  1349. "g": 255,
  1350. "b": 255,
  1351. "a": 255
  1352. },
  1353. "_sharedMaterial": null,
  1354. "_spriteFrame": {
  1355. "__uuid__": "bc24ff58-f7d3-4f54-8e23-fb3a5e9d8469@f9941"
  1356. },
  1357. "_type": 1,
  1358. "_fillType": 0,
  1359. "_sizeMode": 0,
  1360. "_fillCenter": {
  1361. "__type__": "cc.Vec2",
  1362. "x": 0,
  1363. "y": 0
  1364. },
  1365. "_fillStart": 0,
  1366. "_fillRange": 0,
  1367. "_isTrimmedMode": true,
  1368. "_useGrayscale": false,
  1369. "_atlas": null,
  1370. "_id": ""
  1371. },
  1372. {
  1373. "__type__": "cc.ButtonComponent",
  1374. "_name": "",
  1375. "_objFlags": 0,
  1376. "node": {
  1377. "__id__": 38
  1378. },
  1379. "_enabled": true,
  1380. "clickEvents": [],
  1381. "_interactable": true,
  1382. "_transition": 2,
  1383. "_normalColor": {
  1384. "__type__": "cc.Color",
  1385. "r": 214,
  1386. "g": 214,
  1387. "b": 214,
  1388. "a": 255
  1389. },
  1390. "_hoverColor": {
  1391. "__type__": "cc.Color",
  1392. "r": 211,
  1393. "g": 211,
  1394. "b": 211,
  1395. "a": 255
  1396. },
  1397. "_pressColor": {
  1398. "__type__": "cc.Color",
  1399. "r": 255,
  1400. "g": 255,
  1401. "b": 255,
  1402. "a": 255
  1403. },
  1404. "_disabledColor": {
  1405. "__type__": "cc.Color",
  1406. "r": 124,
  1407. "g": 124,
  1408. "b": 124,
  1409. "a": 255
  1410. },
  1411. "_normalSprite": {
  1412. "__uuid__": "bc24ff58-f7d3-4f54-8e23-fb3a5e9d8469@f9941"
  1413. },
  1414. "_hoverSprite": {
  1415. "__uuid__": "bc24ff58-f7d3-4f54-8e23-fb3a5e9d8469@f9941"
  1416. },
  1417. "_pressedSprite": {
  1418. "__uuid__": "bc24ff58-f7d3-4f54-8e23-fb3a5e9d8469@f9941"
  1419. },
  1420. "_disabledSprite": {
  1421. "__uuid__": "bc24ff58-f7d3-4f54-8e23-fb3a5e9d8469@f9941"
  1422. },
  1423. "_duration": 0.1,
  1424. "_zoomScale": 1.2,
  1425. "_target": {
  1426. "__id__": 38
  1427. },
  1428. "_id": ""
  1429. },
  1430. {
  1431. "__type__": "cc.PrefabInfo",
  1432. "root": {
  1433. "__id__": 1
  1434. },
  1435. "asset": {
  1436. "__id__": 0
  1437. },
  1438. "fileId": "fb8QfzSFJJ85VKP/1KsHMo",
  1439. "sync": false,
  1440. "_synced": {
  1441. "default": false,
  1442. "serializable": false
  1443. }
  1444. },
  1445. {
  1446. "__type__": "cc.Node",
  1447. "_name": "ClipView",
  1448. "_objFlags": 0,
  1449. "_parent": {
  1450. "__id__": 1
  1451. },
  1452. "_children": [],
  1453. "_active": true,
  1454. "_components": [
  1455. {
  1456. "__id__": 48
  1457. },
  1458. {
  1459. "__id__": 49
  1460. },
  1461. {
  1462. "__id__": 50
  1463. }
  1464. ],
  1465. "_prefab": {
  1466. "__id__": 51
  1467. },
  1468. "_lpos": {
  1469. "__type__": "cc.Vec3",
  1470. "x": 255.58900000000006,
  1471. "y": -116.45000000000005,
  1472. "z": 0
  1473. },
  1474. "_lrot": {
  1475. "__type__": "cc.Quat",
  1476. "x": 0,
  1477. "y": 0,
  1478. "z": 0,
  1479. "w": 1
  1480. },
  1481. "_lscale": {
  1482. "__type__": "cc.Vec3",
  1483. "x": 1,
  1484. "y": 1,
  1485. "z": 1
  1486. },
  1487. "_layer": 33554432,
  1488. "_euler": {
  1489. "__type__": "cc.Vec3",
  1490. "x": 0,
  1491. "y": 0,
  1492. "z": 0
  1493. },
  1494. "_id": ""
  1495. },
  1496. {
  1497. "__type__": "cc.UITransformComponent",
  1498. "_name": "ClipView<UITransformComponent>",
  1499. "_objFlags": 0,
  1500. "node": {
  1501. "__id__": 47
  1502. },
  1503. "_enabled": true,
  1504. "_priority": 0,
  1505. "_contentSize": {
  1506. "__type__": "cc.Size",
  1507. "width": 231,
  1508. "height": 18
  1509. },
  1510. "_anchorPoint": {
  1511. "__type__": "cc.Vec2",
  1512. "x": 0.5,
  1513. "y": 0
  1514. },
  1515. "_id": ""
  1516. },
  1517. {
  1518. "__type__": "cc.LayoutComponent",
  1519. "_name": "ClipView<LayoutComponent>",
  1520. "_objFlags": 0,
  1521. "node": {
  1522. "__id__": 47
  1523. },
  1524. "_enabled": true,
  1525. "_resizeMode": 1,
  1526. "_N$layoutType": 3,
  1527. "_N$padding": 0,
  1528. "_cellSize": {
  1529. "__type__": "cc.Size",
  1530. "width": 40,
  1531. "height": 40
  1532. },
  1533. "_startAxis": 0,
  1534. "_paddingLeft": 0,
  1535. "_paddingRight": 0,
  1536. "_paddingTop": 0,
  1537. "_paddingBottom": 0,
  1538. "_spacingX": 0,
  1539. "_spacingY": 5,
  1540. "_verticalDirection": 0,
  1541. "_horizontalDirection": 1,
  1542. "_affectedByScale": false,
  1543. "_id": ""
  1544. },
  1545. {
  1546. "__type__": "cc.WidgetComponent",
  1547. "_name": "ClipView<WidgetComponent>",
  1548. "_objFlags": 0,
  1549. "node": {
  1550. "__id__": 47
  1551. },
  1552. "_enabled": true,
  1553. "_alignFlags": 36,
  1554. "_target": null,
  1555. "_left": 0,
  1556. "_right": 3.9109999999999445,
  1557. "_top": 0,
  1558. "_bottom": 550.55,
  1559. "_horizontalCenter": 0,
  1560. "_verticalCenter": 0,
  1561. "_isAbsLeft": true,
  1562. "_isAbsRight": true,
  1563. "_isAbsTop": true,
  1564. "_isAbsBottom": true,
  1565. "_isAbsHorizontalCenter": true,
  1566. "_isAbsVerticalCenter": true,
  1567. "_originalWidth": 0,
  1568. "_originalHeight": 0,
  1569. "_alignMode": 2,
  1570. "_lockFlags": 0,
  1571. "_id": ""
  1572. },
  1573. {
  1574. "__type__": "cc.PrefabInfo",
  1575. "root": {
  1576. "__id__": 1
  1577. },
  1578. "asset": {
  1579. "__id__": 0
  1580. },
  1581. "fileId": "c7EEnDWPBFLJeFiMS3T85Q",
  1582. "sync": false,
  1583. "_synced": {
  1584. "default": false,
  1585. "serializable": false
  1586. }
  1587. },
  1588. {
  1589. "__type__": "cc.Node",
  1590. "_name": "BottomView",
  1591. "_objFlags": 0,
  1592. "_parent": {
  1593. "__id__": 1
  1594. },
  1595. "_children": [
  1596. {
  1597. "__id__": 53
  1598. },
  1599. {
  1600. "__id__": 58
  1601. },
  1602. {
  1603. "__id__": 64
  1604. },
  1605. {
  1606. "__id__": 70
  1607. }
  1608. ],
  1609. "_active": true,
  1610. "_components": [
  1611. {
  1612. "__id__": 76
  1613. },
  1614. {
  1615. "__id__": 77
  1616. }
  1617. ],
  1618. "_prefab": {
  1619. "__id__": 78
  1620. },
  1621. "_lpos": {
  1622. "__type__": "cc.Vec3",
  1623. "x": 0,
  1624. "y": -574.207,
  1625. "z": 0
  1626. },
  1627. "_lrot": {
  1628. "__type__": "cc.Quat",
  1629. "x": 0,
  1630. "y": 0,
  1631. "z": 0,
  1632. "w": 1
  1633. },
  1634. "_lscale": {
  1635. "__type__": "cc.Vec3",
  1636. "x": 1,
  1637. "y": 1,
  1638. "z": 1
  1639. },
  1640. "_layer": 1073741824,
  1641. "_euler": {
  1642. "__type__": "cc.Vec3",
  1643. "x": 0,
  1644. "y": 0,
  1645. "z": 0
  1646. },
  1647. "_id": ""
  1648. },
  1649. {
  1650. "__type__": "cc.Node",
  1651. "_name": "Background",
  1652. "_objFlags": 0,
  1653. "_parent": {
  1654. "__id__": 52
  1655. },
  1656. "_children": [],
  1657. "_active": true,
  1658. "_components": [
  1659. {
  1660. "__id__": 54
  1661. },
  1662. {
  1663. "__id__": 55
  1664. },
  1665. {
  1666. "__id__": 56
  1667. }
  1668. ],
  1669. "_prefab": {
  1670. "__id__": 57
  1671. },
  1672. "_lpos": {
  1673. "__type__": "cc.Vec3",
  1674. "x": 0,
  1675. "y": 0,
  1676. "z": 0
  1677. },
  1678. "_lrot": {
  1679. "__type__": "cc.Quat",
  1680. "x": 0,
  1681. "y": 0,
  1682. "z": 0,
  1683. "w": 1
  1684. },
  1685. "_lscale": {
  1686. "__type__": "cc.Vec3",
  1687. "x": 1,
  1688. "y": 1,
  1689. "z": 1
  1690. },
  1691. "_layer": 33554432,
  1692. "_euler": {
  1693. "__type__": "cc.Vec3",
  1694. "x": 0,
  1695. "y": 0,
  1696. "z": 0
  1697. },
  1698. "_id": ""
  1699. },
  1700. {
  1701. "__type__": "cc.UITransformComponent",
  1702. "_name": "",
  1703. "_objFlags": 0,
  1704. "node": {
  1705. "__id__": 53
  1706. },
  1707. "_enabled": true,
  1708. "_priority": 0,
  1709. "_contentSize": {
  1710. "__type__": "cc.Size",
  1711. "width": 750,
  1712. "height": 185
  1713. },
  1714. "_anchorPoint": {
  1715. "__type__": "cc.Vec2",
  1716. "x": 0.5,
  1717. "y": 0.5
  1718. },
  1719. "_id": ""
  1720. },
  1721. {
  1722. "__type__": "cc.SpriteComponent",
  1723. "_name": "",
  1724. "_objFlags": 0,
  1725. "node": {
  1726. "__id__": 53
  1727. },
  1728. "_enabled": true,
  1729. "_srcBlendFactor": 2,
  1730. "_dstBlendFactor": 4,
  1731. "_color": {
  1732. "__type__": "cc.Color",
  1733. "r": 255,
  1734. "g": 255,
  1735. "b": 255,
  1736. "a": 255
  1737. },
  1738. "_sharedMaterial": null,
  1739. "_spriteFrame": {
  1740. "__uuid__": "1757d516-9a86-431b-b833-79869a4d7a75@f9941"
  1741. },
  1742. "_type": 1,
  1743. "_fillType": 0,
  1744. "_sizeMode": 0,
  1745. "_fillCenter": {
  1746. "__type__": "cc.Vec2",
  1747. "x": 0,
  1748. "y": 0
  1749. },
  1750. "_fillStart": 0,
  1751. "_fillRange": 0,
  1752. "_isTrimmedMode": true,
  1753. "_useGrayscale": false,
  1754. "_atlas": null,
  1755. "_id": ""
  1756. },
  1757. {
  1758. "__type__": "cc.WidgetComponent",
  1759. "_name": "Background<WidgetComponent>",
  1760. "_objFlags": 0,
  1761. "node": {
  1762. "__id__": 53
  1763. },
  1764. "_enabled": true,
  1765. "_alignFlags": 45,
  1766. "_target": null,
  1767. "_left": 0,
  1768. "_right": 0,
  1769. "_top": 0,
  1770. "_bottom": 0,
  1771. "_horizontalCenter": 0,
  1772. "_verticalCenter": 0,
  1773. "_isAbsLeft": true,
  1774. "_isAbsRight": true,
  1775. "_isAbsTop": true,
  1776. "_isAbsBottom": true,
  1777. "_isAbsHorizontalCenter": true,
  1778. "_isAbsVerticalCenter": true,
  1779. "_originalWidth": 750,
  1780. "_originalHeight": 185,
  1781. "_alignMode": 2,
  1782. "_lockFlags": 0,
  1783. "_id": ""
  1784. },
  1785. {
  1786. "__type__": "cc.PrefabInfo",
  1787. "root": {
  1788. "__id__": 1
  1789. },
  1790. "asset": {
  1791. "__id__": 0
  1792. },
  1793. "fileId": "6dDXTSfgxObYzws3ZApo3N",
  1794. "sync": false,
  1795. "_synced": {
  1796. "default": false,
  1797. "serializable": false
  1798. }
  1799. },
  1800. {
  1801. "__type__": "cc.Node",
  1802. "_name": "LeftFireButton",
  1803. "_objFlags": 0,
  1804. "_parent": {
  1805. "__id__": 52
  1806. },
  1807. "_children": [],
  1808. "_active": true,
  1809. "_components": [
  1810. {
  1811. "__id__": 59
  1812. },
  1813. {
  1814. "__id__": 60
  1815. },
  1816. {
  1817. "__id__": 61
  1818. },
  1819. {
  1820. "__id__": 62
  1821. }
  1822. ],
  1823. "_prefab": {
  1824. "__id__": 63
  1825. },
  1826. "_lpos": {
  1827. "__type__": "cc.Vec3",
  1828. "x": -261.936,
  1829. "y": 19,
  1830. "z": 0
  1831. },
  1832. "_lrot": {
  1833. "__type__": "cc.Quat",
  1834. "x": 0,
  1835. "y": 0,
  1836. "z": 0,
  1837. "w": 1
  1838. },
  1839. "_lscale": {
  1840. "__type__": "cc.Vec3",
  1841. "x": 1,
  1842. "y": 1,
  1843. "z": 1
  1844. },
  1845. "_layer": 33554432,
  1846. "_euler": {
  1847. "__type__": "cc.Vec3",
  1848. "x": 0,
  1849. "y": 0,
  1850. "z": 0
  1851. },
  1852. "_id": ""
  1853. },
  1854. {
  1855. "__type__": "cc.UITransformComponent",
  1856. "_name": "",
  1857. "_objFlags": 0,
  1858. "node": {
  1859. "__id__": 58
  1860. },
  1861. "_enabled": true,
  1862. "_priority": 0,
  1863. "_contentSize": {
  1864. "__type__": "cc.Size",
  1865. "width": 200,
  1866. "height": 217
  1867. },
  1868. "_anchorPoint": {
  1869. "__type__": "cc.Vec2",
  1870. "x": 0.5,
  1871. "y": 0.5
  1872. },
  1873. "_id": ""
  1874. },
  1875. {
  1876. "__type__": "cc.SpriteComponent",
  1877. "_name": "",
  1878. "_objFlags": 0,
  1879. "node": {
  1880. "__id__": 58
  1881. },
  1882. "_enabled": true,
  1883. "_srcBlendFactor": 2,
  1884. "_dstBlendFactor": 4,
  1885. "_color": {
  1886. "__type__": "cc.Color",
  1887. "r": 255,
  1888. "g": 255,
  1889. "b": 255,
  1890. "a": 255
  1891. },
  1892. "_sharedMaterial": null,
  1893. "_spriteFrame": {
  1894. "__uuid__": "4bd0149a-ec9f-4281-ac64-c5113acef501@f9941"
  1895. },
  1896. "_type": 1,
  1897. "_fillType": 0,
  1898. "_sizeMode": 0,
  1899. "_fillCenter": {
  1900. "__type__": "cc.Vec2",
  1901. "x": 0,
  1902. "y": 0
  1903. },
  1904. "_fillStart": 0,
  1905. "_fillRange": 0,
  1906. "_isTrimmedMode": true,
  1907. "_useGrayscale": false,
  1908. "_atlas": null,
  1909. "_id": ""
  1910. },
  1911. {
  1912. "__type__": "cc.ButtonComponent",
  1913. "_name": "",
  1914. "_objFlags": 0,
  1915. "node": {
  1916. "__id__": 58
  1917. },
  1918. "_enabled": true,
  1919. "clickEvents": [],
  1920. "_interactable": true,
  1921. "_transition": 2,
  1922. "_normalColor": {
  1923. "__type__": "cc.Color",
  1924. "r": 214,
  1925. "g": 214,
  1926. "b": 214,
  1927. "a": 255
  1928. },
  1929. "_hoverColor": {
  1930. "__type__": "cc.Color",
  1931. "r": 211,
  1932. "g": 211,
  1933. "b": 211,
  1934. "a": 255
  1935. },
  1936. "_pressColor": {
  1937. "__type__": "cc.Color",
  1938. "r": 255,
  1939. "g": 255,
  1940. "b": 255,
  1941. "a": 255
  1942. },
  1943. "_disabledColor": {
  1944. "__type__": "cc.Color",
  1945. "r": 124,
  1946. "g": 124,
  1947. "b": 124,
  1948. "a": 255
  1949. },
  1950. "_normalSprite": {
  1951. "__uuid__": "4bd0149a-ec9f-4281-ac64-c5113acef501@f9941"
  1952. },
  1953. "_hoverSprite": {
  1954. "__uuid__": "46559712-fa53-4769-9b57-f467711a7dbb@f9941"
  1955. },
  1956. "_pressedSprite": {
  1957. "__uuid__": "46559712-fa53-4769-9b57-f467711a7dbb@f9941"
  1958. },
  1959. "_disabledSprite": {
  1960. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941"
  1961. },
  1962. "_duration": 0.1,
  1963. "_zoomScale": 1.2,
  1964. "_target": {
  1965. "__id__": 58
  1966. },
  1967. "_id": ""
  1968. },
  1969. {
  1970. "__type__": "cc.WidgetComponent",
  1971. "_name": "LeftFireButton<WidgetComponent>",
  1972. "_objFlags": 0,
  1973. "node": {
  1974. "__id__": 58
  1975. },
  1976. "_enabled": true,
  1977. "_alignFlags": 12,
  1978. "_target": null,
  1979. "_left": 13.064000000000021,
  1980. "_right": 0,
  1981. "_top": 0,
  1982. "_bottom": 3,
  1983. "_horizontalCenter": 0,
  1984. "_verticalCenter": 0,
  1985. "_isAbsLeft": true,
  1986. "_isAbsRight": true,
  1987. "_isAbsTop": true,
  1988. "_isAbsBottom": true,
  1989. "_isAbsHorizontalCenter": true,
  1990. "_isAbsVerticalCenter": true,
  1991. "_originalWidth": 0,
  1992. "_originalHeight": 0,
  1993. "_alignMode": 2,
  1994. "_lockFlags": 0,
  1995. "_id": ""
  1996. },
  1997. {
  1998. "__type__": "cc.PrefabInfo",
  1999. "root": {
  2000. "__id__": 1
  2001. },
  2002. "asset": {
  2003. "__id__": 0
  2004. },
  2005. "fileId": "9a0fCuR+xOfLsasKZ8PANw",
  2006. "sync": false,
  2007. "_synced": {
  2008. "default": false,
  2009. "serializable": false
  2010. }
  2011. },
  2012. {
  2013. "__type__": "cc.Node",
  2014. "_name": "MiddleFireButton",
  2015. "_objFlags": 0,
  2016. "_parent": {
  2017. "__id__": 52
  2018. },
  2019. "_children": [],
  2020. "_active": true,
  2021. "_components": [
  2022. {
  2023. "__id__": 65
  2024. },
  2025. {
  2026. "__id__": 66
  2027. },
  2028. {
  2029. "__id__": 67
  2030. },
  2031. {
  2032. "__id__": 68
  2033. }
  2034. ],
  2035. "_prefab": {
  2036. "__id__": 69
  2037. },
  2038. "_lpos": {
  2039. "__type__": "cc.Vec3",
  2040. "x": 0,
  2041. "y": 19,
  2042. "z": 0
  2043. },
  2044. "_lrot": {
  2045. "__type__": "cc.Quat",
  2046. "x": 0,
  2047. "y": 0,
  2048. "z": 0,
  2049. "w": 1
  2050. },
  2051. "_lscale": {
  2052. "__type__": "cc.Vec3",
  2053. "x": 1,
  2054. "y": 1,
  2055. "z": 1
  2056. },
  2057. "_layer": 33554432,
  2058. "_euler": {
  2059. "__type__": "cc.Vec3",
  2060. "x": 0,
  2061. "y": 0,
  2062. "z": 0
  2063. },
  2064. "_id": ""
  2065. },
  2066. {
  2067. "__type__": "cc.UITransformComponent",
  2068. "_name": "",
  2069. "_objFlags": 0,
  2070. "node": {
  2071. "__id__": 64
  2072. },
  2073. "_enabled": true,
  2074. "_priority": 0,
  2075. "_contentSize": {
  2076. "__type__": "cc.Size",
  2077. "width": 200,
  2078. "height": 217
  2079. },
  2080. "_anchorPoint": {
  2081. "__type__": "cc.Vec2",
  2082. "x": 0.5,
  2083. "y": 0.5
  2084. },
  2085. "_id": ""
  2086. },
  2087. {
  2088. "__type__": "cc.SpriteComponent",
  2089. "_name": "",
  2090. "_objFlags": 0,
  2091. "node": {
  2092. "__id__": 64
  2093. },
  2094. "_enabled": true,
  2095. "_srcBlendFactor": 2,
  2096. "_dstBlendFactor": 4,
  2097. "_color": {
  2098. "__type__": "cc.Color",
  2099. "r": 255,
  2100. "g": 255,
  2101. "b": 255,
  2102. "a": 255
  2103. },
  2104. "_sharedMaterial": null,
  2105. "_spriteFrame": {
  2106. "__uuid__": "4bd0149a-ec9f-4281-ac64-c5113acef501@f9941"
  2107. },
  2108. "_type": 1,
  2109. "_fillType": 0,
  2110. "_sizeMode": 0,
  2111. "_fillCenter": {
  2112. "__type__": "cc.Vec2",
  2113. "x": 0,
  2114. "y": 0
  2115. },
  2116. "_fillStart": 0,
  2117. "_fillRange": 0,
  2118. "_isTrimmedMode": true,
  2119. "_useGrayscale": false,
  2120. "_atlas": null,
  2121. "_id": ""
  2122. },
  2123. {
  2124. "__type__": "cc.ButtonComponent",
  2125. "_name": "",
  2126. "_objFlags": 0,
  2127. "node": {
  2128. "__id__": 64
  2129. },
  2130. "_enabled": true,
  2131. "clickEvents": [],
  2132. "_interactable": true,
  2133. "_transition": 2,
  2134. "_normalColor": {
  2135. "__type__": "cc.Color",
  2136. "r": 214,
  2137. "g": 214,
  2138. "b": 214,
  2139. "a": 255
  2140. },
  2141. "_hoverColor": {
  2142. "__type__": "cc.Color",
  2143. "r": 211,
  2144. "g": 211,
  2145. "b": 211,
  2146. "a": 255
  2147. },
  2148. "_pressColor": {
  2149. "__type__": "cc.Color",
  2150. "r": 255,
  2151. "g": 255,
  2152. "b": 255,
  2153. "a": 255
  2154. },
  2155. "_disabledColor": {
  2156. "__type__": "cc.Color",
  2157. "r": 124,
  2158. "g": 124,
  2159. "b": 124,
  2160. "a": 255
  2161. },
  2162. "_normalSprite": {
  2163. "__uuid__": "4bd0149a-ec9f-4281-ac64-c5113acef501@f9941"
  2164. },
  2165. "_hoverSprite": {
  2166. "__uuid__": "46559712-fa53-4769-9b57-f467711a7dbb@f9941"
  2167. },
  2168. "_pressedSprite": {
  2169. "__uuid__": "46559712-fa53-4769-9b57-f467711a7dbb@f9941"
  2170. },
  2171. "_disabledSprite": {
  2172. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941"
  2173. },
  2174. "_duration": 0.1,
  2175. "_zoomScale": 1.2,
  2176. "_target": {
  2177. "__id__": 64
  2178. },
  2179. "_id": ""
  2180. },
  2181. {
  2182. "__type__": "cc.WidgetComponent",
  2183. "_name": "MiddleFireButton<WidgetComponent>",
  2184. "_objFlags": 0,
  2185. "node": {
  2186. "__id__": 64
  2187. },
  2188. "_enabled": true,
  2189. "_alignFlags": 20,
  2190. "_target": null,
  2191. "_left": 0,
  2192. "_right": 0,
  2193. "_top": 0,
  2194. "_bottom": 3,
  2195. "_horizontalCenter": 0,
  2196. "_verticalCenter": 0,
  2197. "_isAbsLeft": true,
  2198. "_isAbsRight": true,
  2199. "_isAbsTop": true,
  2200. "_isAbsBottom": true,
  2201. "_isAbsHorizontalCenter": true,
  2202. "_isAbsVerticalCenter": true,
  2203. "_originalWidth": 0,
  2204. "_originalHeight": 0,
  2205. "_alignMode": 2,
  2206. "_lockFlags": 0,
  2207. "_id": ""
  2208. },
  2209. {
  2210. "__type__": "cc.PrefabInfo",
  2211. "root": {
  2212. "__id__": 1
  2213. },
  2214. "asset": {
  2215. "__id__": 0
  2216. },
  2217. "fileId": "98Vvjne6pOzLTHJnoPSiYm",
  2218. "sync": false,
  2219. "_synced": {
  2220. "default": false,
  2221. "serializable": false
  2222. }
  2223. },
  2224. {
  2225. "__type__": "cc.Node",
  2226. "_name": "RightFireButton",
  2227. "_objFlags": 0,
  2228. "_parent": {
  2229. "__id__": 52
  2230. },
  2231. "_children": [],
  2232. "_active": true,
  2233. "_components": [
  2234. {
  2235. "__id__": 71
  2236. },
  2237. {
  2238. "__id__": 72
  2239. },
  2240. {
  2241. "__id__": 73
  2242. },
  2243. {
  2244. "__id__": 74
  2245. }
  2246. ],
  2247. "_prefab": {
  2248. "__id__": 75
  2249. },
  2250. "_lpos": {
  2251. "__type__": "cc.Vec3",
  2252. "x": 259.864,
  2253. "y": 19,
  2254. "z": 0
  2255. },
  2256. "_lrot": {
  2257. "__type__": "cc.Quat",
  2258. "x": 0,
  2259. "y": 0,
  2260. "z": 0,
  2261. "w": 1
  2262. },
  2263. "_lscale": {
  2264. "__type__": "cc.Vec3",
  2265. "x": 1,
  2266. "y": 1,
  2267. "z": 1
  2268. },
  2269. "_layer": 33554432,
  2270. "_euler": {
  2271. "__type__": "cc.Vec3",
  2272. "x": 0,
  2273. "y": 0,
  2274. "z": 0
  2275. },
  2276. "_id": ""
  2277. },
  2278. {
  2279. "__type__": "cc.UITransformComponent",
  2280. "_name": "",
  2281. "_objFlags": 0,
  2282. "node": {
  2283. "__id__": 70
  2284. },
  2285. "_enabled": true,
  2286. "_priority": 0,
  2287. "_contentSize": {
  2288. "__type__": "cc.Size",
  2289. "width": 200,
  2290. "height": 217
  2291. },
  2292. "_anchorPoint": {
  2293. "__type__": "cc.Vec2",
  2294. "x": 0.5,
  2295. "y": 0.5
  2296. },
  2297. "_id": ""
  2298. },
  2299. {
  2300. "__type__": "cc.SpriteComponent",
  2301. "_name": "",
  2302. "_objFlags": 0,
  2303. "node": {
  2304. "__id__": 70
  2305. },
  2306. "_enabled": true,
  2307. "_srcBlendFactor": 2,
  2308. "_dstBlendFactor": 4,
  2309. "_color": {
  2310. "__type__": "cc.Color",
  2311. "r": 255,
  2312. "g": 255,
  2313. "b": 255,
  2314. "a": 255
  2315. },
  2316. "_sharedMaterial": null,
  2317. "_spriteFrame": {
  2318. "__uuid__": "4bd0149a-ec9f-4281-ac64-c5113acef501@f9941"
  2319. },
  2320. "_type": 1,
  2321. "_fillType": 0,
  2322. "_sizeMode": 0,
  2323. "_fillCenter": {
  2324. "__type__": "cc.Vec2",
  2325. "x": 0,
  2326. "y": 0
  2327. },
  2328. "_fillStart": 0,
  2329. "_fillRange": 0,
  2330. "_isTrimmedMode": true,
  2331. "_useGrayscale": false,
  2332. "_atlas": null,
  2333. "_id": ""
  2334. },
  2335. {
  2336. "__type__": "cc.ButtonComponent",
  2337. "_name": "",
  2338. "_objFlags": 0,
  2339. "node": {
  2340. "__id__": 70
  2341. },
  2342. "_enabled": true,
  2343. "clickEvents": [],
  2344. "_interactable": true,
  2345. "_transition": 2,
  2346. "_normalColor": {
  2347. "__type__": "cc.Color",
  2348. "r": 214,
  2349. "g": 214,
  2350. "b": 214,
  2351. "a": 255
  2352. },
  2353. "_hoverColor": {
  2354. "__type__": "cc.Color",
  2355. "r": 211,
  2356. "g": 211,
  2357. "b": 211,
  2358. "a": 255
  2359. },
  2360. "_pressColor": {
  2361. "__type__": "cc.Color",
  2362. "r": 255,
  2363. "g": 255,
  2364. "b": 255,
  2365. "a": 255
  2366. },
  2367. "_disabledColor": {
  2368. "__type__": "cc.Color",
  2369. "r": 124,
  2370. "g": 124,
  2371. "b": 124,
  2372. "a": 255
  2373. },
  2374. "_normalSprite": {
  2375. "__uuid__": "4bd0149a-ec9f-4281-ac64-c5113acef501@f9941"
  2376. },
  2377. "_hoverSprite": {
  2378. "__uuid__": "46559712-fa53-4769-9b57-f467711a7dbb@f9941"
  2379. },
  2380. "_pressedSprite": {
  2381. "__uuid__": "46559712-fa53-4769-9b57-f467711a7dbb@f9941"
  2382. },
  2383. "_disabledSprite": {
  2384. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941"
  2385. },
  2386. "_duration": 0.1,
  2387. "_zoomScale": 1.2,
  2388. "_target": {
  2389. "__id__": 70
  2390. },
  2391. "_id": ""
  2392. },
  2393. {
  2394. "__type__": "cc.WidgetComponent",
  2395. "_name": "RightFireButton<WidgetComponent>",
  2396. "_objFlags": 0,
  2397. "node": {
  2398. "__id__": 70
  2399. },
  2400. "_enabled": true,
  2401. "_alignFlags": 36,
  2402. "_target": null,
  2403. "_left": 0,
  2404. "_right": 15.136000000000024,
  2405. "_top": 0,
  2406. "_bottom": 3,
  2407. "_horizontalCenter": 0,
  2408. "_verticalCenter": 0,
  2409. "_isAbsLeft": true,
  2410. "_isAbsRight": true,
  2411. "_isAbsTop": true,
  2412. "_isAbsBottom": true,
  2413. "_isAbsHorizontalCenter": true,
  2414. "_isAbsVerticalCenter": true,
  2415. "_originalWidth": 0,
  2416. "_originalHeight": 0,
  2417. "_alignMode": 2,
  2418. "_lockFlags": 0,
  2419. "_id": ""
  2420. },
  2421. {
  2422. "__type__": "cc.PrefabInfo",
  2423. "root": {
  2424. "__id__": 1
  2425. },
  2426. "asset": {
  2427. "__id__": 0
  2428. },
  2429. "fileId": "b3dzELZMVPJbODa+/+ru7m",
  2430. "sync": false,
  2431. "_synced": {
  2432. "default": false,
  2433. "serializable": false
  2434. }
  2435. },
  2436. {
  2437. "__type__": "cc.UITransformComponent",
  2438. "_name": "",
  2439. "_objFlags": 0,
  2440. "node": {
  2441. "__id__": 52
  2442. },
  2443. "_enabled": true,
  2444. "_priority": 0,
  2445. "_contentSize": {
  2446. "__type__": "cc.Size",
  2447. "width": 750,
  2448. "height": 185
  2449. },
  2450. "_anchorPoint": {
  2451. "__type__": "cc.Vec2",
  2452. "x": 0.5,
  2453. "y": 0.5
  2454. },
  2455. "_id": ""
  2456. },
  2457. {
  2458. "__type__": "cc.WidgetComponent",
  2459. "_name": "BottomView<WidgetComponent>",
  2460. "_objFlags": 0,
  2461. "node": {
  2462. "__id__": 52
  2463. },
  2464. "_enabled": true,
  2465. "_alignFlags": 44,
  2466. "_target": null,
  2467. "_left": 0,
  2468. "_right": 0,
  2469. "_top": 0,
  2470. "_bottom": 0.29300000000000637,
  2471. "_horizontalCenter": 0,
  2472. "_verticalCenter": 0,
  2473. "_isAbsLeft": true,
  2474. "_isAbsRight": true,
  2475. "_isAbsTop": true,
  2476. "_isAbsBottom": true,
  2477. "_isAbsHorizontalCenter": true,
  2478. "_isAbsVerticalCenter": true,
  2479. "_originalWidth": 100,
  2480. "_originalHeight": 0,
  2481. "_alignMode": 2,
  2482. "_lockFlags": 0,
  2483. "_id": ""
  2484. },
  2485. {
  2486. "__type__": "cc.PrefabInfo",
  2487. "root": {
  2488. "__id__": 1
  2489. },
  2490. "asset": {
  2491. "__id__": 0
  2492. },
  2493. "fileId": "53uKvNokpGrova+1LhX1A9",
  2494. "sync": false,
  2495. "_synced": {
  2496. "default": false,
  2497. "serializable": false
  2498. }
  2499. },
  2500. {
  2501. "__type__": "cc.Node",
  2502. "_name": "KillCountGroup",
  2503. "_objFlags": 0,
  2504. "_parent": {
  2505. "__id__": 1
  2506. },
  2507. "_children": [
  2508. {
  2509. "__id__": 80
  2510. },
  2511. {
  2512. "__id__": 84
  2513. }
  2514. ],
  2515. "_active": true,
  2516. "_components": [
  2517. {
  2518. "__id__": 88
  2519. },
  2520. {
  2521. "__id__": 89
  2522. }
  2523. ],
  2524. "_prefab": {
  2525. "__id__": 90
  2526. },
  2527. "_lpos": {
  2528. "__type__": "cc.Vec3",
  2529. "x": 134.442,
  2530. "y": 392.984,
  2531. "z": 0
  2532. },
  2533. "_lrot": {
  2534. "__type__": "cc.Quat",
  2535. "x": 0,
  2536. "y": 0,
  2537. "z": 0,
  2538. "w": 1
  2539. },
  2540. "_lscale": {
  2541. "__type__": "cc.Vec3",
  2542. "x": 1,
  2543. "y": 1,
  2544. "z": 1
  2545. },
  2546. "_layer": 1073741824,
  2547. "_euler": {
  2548. "__type__": "cc.Vec3",
  2549. "x": 0,
  2550. "y": 0,
  2551. "z": 0
  2552. },
  2553. "_id": ""
  2554. },
  2555. {
  2556. "__type__": "cc.Node",
  2557. "_name": "KillCountText",
  2558. "_objFlags": 0,
  2559. "_parent": {
  2560. "__id__": 79
  2561. },
  2562. "_children": [],
  2563. "_active": true,
  2564. "_components": [
  2565. {
  2566. "__id__": 81
  2567. },
  2568. {
  2569. "__id__": 82
  2570. }
  2571. ],
  2572. "_prefab": {
  2573. "__id__": 83
  2574. },
  2575. "_lpos": {
  2576. "__type__": "cc.Vec3",
  2577. "x": 91.007,
  2578. "y": 0,
  2579. "z": 0
  2580. },
  2581. "_lrot": {
  2582. "__type__": "cc.Quat",
  2583. "x": 0,
  2584. "y": 0,
  2585. "z": 0,
  2586. "w": 1
  2587. },
  2588. "_lscale": {
  2589. "__type__": "cc.Vec3",
  2590. "x": 1,
  2591. "y": 1,
  2592. "z": 1
  2593. },
  2594. "_layer": 33554432,
  2595. "_euler": {
  2596. "__type__": "cc.Vec3",
  2597. "x": 0,
  2598. "y": 0,
  2599. "z": 0
  2600. },
  2601. "_id": ""
  2602. },
  2603. {
  2604. "__type__": "cc.UITransformComponent",
  2605. "_name": "",
  2606. "_objFlags": 0,
  2607. "node": {
  2608. "__id__": 80
  2609. },
  2610. "_enabled": true,
  2611. "_priority": 0,
  2612. "_contentSize": {
  2613. "__type__": "cc.Size",
  2614. "width": 166.85,
  2615. "height": 126
  2616. },
  2617. "_anchorPoint": {
  2618. "__type__": "cc.Vec2",
  2619. "x": 1,
  2620. "y": 0.5
  2621. },
  2622. "_id": ""
  2623. },
  2624. {
  2625. "__type__": "cc.LabelComponent",
  2626. "_name": "",
  2627. "_objFlags": 0,
  2628. "node": {
  2629. "__id__": 80
  2630. },
  2631. "_enabled": true,
  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. "_sharedMaterial": null,
  2642. "_useOriginalSize": true,
  2643. "_string": "999",
  2644. "_horizontalAlign": 2,
  2645. "_verticalAlign": 1,
  2646. "_actualFontSize": 100,
  2647. "_fontSize": 100,
  2648. "_fontFamily": "Arial",
  2649. "_lineHeight": 100,
  2650. "_overflow": 0,
  2651. "_enableWrapText": true,
  2652. "_font": null,
  2653. "_isSystemFontUsed": true,
  2654. "_isItalic": false,
  2655. "_isBold": false,
  2656. "_isUnderline": false,
  2657. "_cacheMode": 0,
  2658. "_id": ""
  2659. },
  2660. {
  2661. "__type__": "cc.PrefabInfo",
  2662. "root": {
  2663. "__id__": 1
  2664. },
  2665. "asset": {
  2666. "__id__": 0
  2667. },
  2668. "fileId": "80m/DnCKFG0qfWng7Q9TN9",
  2669. "sync": false,
  2670. "_synced": {
  2671. "default": false,
  2672. "serializable": false
  2673. }
  2674. },
  2675. {
  2676. "__type__": "cc.Node",
  2677. "_name": "Label",
  2678. "_objFlags": 0,
  2679. "_parent": {
  2680. "__id__": 79
  2681. },
  2682. "_children": [],
  2683. "_active": true,
  2684. "_components": [
  2685. {
  2686. "__id__": 85
  2687. },
  2688. {
  2689. "__id__": 86
  2690. }
  2691. ],
  2692. "_prefab": {
  2693. "__id__": 87
  2694. },
  2695. "_lpos": {
  2696. "__type__": "cc.Vec3",
  2697. "x": 165.467,
  2698. "y": 0,
  2699. "z": 0
  2700. },
  2701. "_lrot": {
  2702. "__type__": "cc.Quat",
  2703. "x": 0,
  2704. "y": 0,
  2705. "z": 0,
  2706. "w": 1
  2707. },
  2708. "_lscale": {
  2709. "__type__": "cc.Vec3",
  2710. "x": 1,
  2711. "y": 1,
  2712. "z": 1
  2713. },
  2714. "_layer": 33554432,
  2715. "_euler": {
  2716. "__type__": "cc.Vec3",
  2717. "x": 0,
  2718. "y": 0,
  2719. "z": 0
  2720. },
  2721. "_id": ""
  2722. },
  2723. {
  2724. "__type__": "cc.UITransformComponent",
  2725. "_name": "",
  2726. "_objFlags": 0,
  2727. "node": {
  2728. "__id__": 84
  2729. },
  2730. "_enabled": true,
  2731. "_priority": 0,
  2732. "_contentSize": {
  2733. "__type__": "cc.Size",
  2734. "width": 160.6278280709945,
  2735. "height": 63
  2736. },
  2737. "_anchorPoint": {
  2738. "__type__": "cc.Vec2",
  2739. "x": 0.5,
  2740. "y": 0.5
  2741. },
  2742. "_id": ""
  2743. },
  2744. {
  2745. "__type__": "cc.LabelComponent",
  2746. "_name": "",
  2747. "_objFlags": 0,
  2748. "node": {
  2749. "__id__": 84
  2750. },
  2751. "_enabled": true,
  2752. "_srcBlendFactor": 2,
  2753. "_dstBlendFactor": 4,
  2754. "_color": {
  2755. "__type__": "cc.Color",
  2756. "r": 177,
  2757. "g": 60,
  2758. "b": 60,
  2759. "a": 255
  2760. },
  2761. "_sharedMaterial": null,
  2762. "_useOriginalSize": true,
  2763. "_string": "连杀!",
  2764. "_horizontalAlign": 1,
  2765. "_verticalAlign": 1,
  2766. "_actualFontSize": 50,
  2767. "_fontSize": 50,
  2768. "_fontFamily": "Arial",
  2769. "_lineHeight": 50,
  2770. "_overflow": 0,
  2771. "_enableWrapText": true,
  2772. "_font": null,
  2773. "_isSystemFontUsed": true,
  2774. "_isItalic": true,
  2775. "_isBold": true,
  2776. "_isUnderline": false,
  2777. "_cacheMode": 0,
  2778. "_id": ""
  2779. },
  2780. {
  2781. "__type__": "cc.PrefabInfo",
  2782. "root": {
  2783. "__id__": 1
  2784. },
  2785. "asset": {
  2786. "__id__": 0
  2787. },
  2788. "fileId": "beDMi34c9AsZnxpKZ9Pggb",
  2789. "sync": false,
  2790. "_synced": {
  2791. "default": false,
  2792. "serializable": false
  2793. }
  2794. },
  2795. {
  2796. "__type__": "cc.UITransformComponent",
  2797. "_name": "",
  2798. "_objFlags": 0,
  2799. "node": {
  2800. "__id__": 79
  2801. },
  2802. "_enabled": true,
  2803. "_priority": 0,
  2804. "_contentSize": {
  2805. "__type__": "cc.Size",
  2806. "width": 100,
  2807. "height": 100
  2808. },
  2809. "_anchorPoint": {
  2810. "__type__": "cc.Vec2",
  2811. "x": 0.5,
  2812. "y": 0.5
  2813. },
  2814. "_id": ""
  2815. },
  2816. {
  2817. "__type__": "cc.WidgetComponent",
  2818. "_name": "KillCountGroup<WidgetComponent>",
  2819. "_objFlags": 0,
  2820. "node": {
  2821. "__id__": 79
  2822. },
  2823. "_enabled": true,
  2824. "_alignFlags": 33,
  2825. "_target": null,
  2826. "_left": 0,
  2827. "_right": 190.558,
  2828. "_top": 224.01600000000002,
  2829. "_bottom": 0,
  2830. "_horizontalCenter": 0,
  2831. "_verticalCenter": 0,
  2832. "_isAbsLeft": true,
  2833. "_isAbsRight": true,
  2834. "_isAbsTop": true,
  2835. "_isAbsBottom": true,
  2836. "_isAbsHorizontalCenter": true,
  2837. "_isAbsVerticalCenter": true,
  2838. "_originalWidth": 0,
  2839. "_originalHeight": 0,
  2840. "_alignMode": 2,
  2841. "_lockFlags": 0,
  2842. "_id": ""
  2843. },
  2844. {
  2845. "__type__": "cc.PrefabInfo",
  2846. "root": {
  2847. "__id__": 1
  2848. },
  2849. "asset": {
  2850. "__id__": 0
  2851. },
  2852. "fileId": "90Pps+yItJIaKsFf1eBNog",
  2853. "sync": false,
  2854. "_synced": {
  2855. "default": false,
  2856. "serializable": false
  2857. }
  2858. },
  2859. {
  2860. "__type__": "cc.Node",
  2861. "_name": "LevelLabel",
  2862. "_objFlags": 0,
  2863. "_parent": {
  2864. "__id__": 1
  2865. },
  2866. "_children": [],
  2867. "_active": true,
  2868. "_components": [
  2869. {
  2870. "__id__": 92
  2871. },
  2872. {
  2873. "__id__": 93
  2874. }
  2875. ],
  2876. "_prefab": {
  2877. "__id__": 94
  2878. },
  2879. "_lpos": {
  2880. "__type__": "cc.Vec3",
  2881. "x": 2.298,
  2882. "y": 521.682,
  2883. "z": 0
  2884. },
  2885. "_lrot": {
  2886. "__type__": "cc.Quat",
  2887. "x": 0,
  2888. "y": 0,
  2889. "z": 0,
  2890. "w": 1
  2891. },
  2892. "_lscale": {
  2893. "__type__": "cc.Vec3",
  2894. "x": 1,
  2895. "y": 1,
  2896. "z": 1
  2897. },
  2898. "_layer": 33554432,
  2899. "_euler": {
  2900. "__type__": "cc.Vec3",
  2901. "x": 0,
  2902. "y": 0,
  2903. "z": 0
  2904. },
  2905. "_id": ""
  2906. },
  2907. {
  2908. "__type__": "cc.UITransformComponent",
  2909. "_name": "LevelLabel<UITransformComponent>",
  2910. "_objFlags": 0,
  2911. "node": {
  2912. "__id__": 91
  2913. },
  2914. "_enabled": true,
  2915. "_priority": 0,
  2916. "_contentSize": {
  2917. "__type__": "cc.Size",
  2918. "width": 102.25,
  2919. "height": 50.4
  2920. },
  2921. "_anchorPoint": {
  2922. "__type__": "cc.Vec2",
  2923. "x": 0.5,
  2924. "y": 0.5
  2925. },
  2926. "_id": ""
  2927. },
  2928. {
  2929. "__type__": "cc.LabelComponent",
  2930. "_name": "LevelLabel<LabelComponent>",
  2931. "_objFlags": 0,
  2932. "node": {
  2933. "__id__": 91
  2934. },
  2935. "_enabled": true,
  2936. "_srcBlendFactor": 2,
  2937. "_dstBlendFactor": 4,
  2938. "_color": {
  2939. "__type__": "cc.Color",
  2940. "r": 255,
  2941. "g": 255,
  2942. "b": 255,
  2943. "a": 255
  2944. },
  2945. "_sharedMaterial": null,
  2946. "_useOriginalSize": true,
  2947. "_string": "第1天",
  2948. "_horizontalAlign": 1,
  2949. "_verticalAlign": 1,
  2950. "_actualFontSize": 40,
  2951. "_fontSize": 40,
  2952. "_fontFamily": "Arial",
  2953. "_lineHeight": 40,
  2954. "_overflow": 0,
  2955. "_enableWrapText": true,
  2956. "_font": null,
  2957. "_isSystemFontUsed": true,
  2958. "_isItalic": false,
  2959. "_isBold": true,
  2960. "_isUnderline": false,
  2961. "_cacheMode": 0,
  2962. "_id": ""
  2963. },
  2964. {
  2965. "__type__": "cc.PrefabInfo",
  2966. "root": {
  2967. "__id__": 1
  2968. },
  2969. "asset": {
  2970. "__id__": 0
  2971. },
  2972. "fileId": "e4R0R3xJBPB6Gsm6u0gUS/",
  2973. "sync": false,
  2974. "_synced": {
  2975. "default": false,
  2976. "serializable": false
  2977. }
  2978. },
  2979. {
  2980. "__type__": "cc.Node",
  2981. "_name": "Weapon002",
  2982. "_objFlags": 0,
  2983. "_parent": {
  2984. "__id__": 1
  2985. },
  2986. "_children": [
  2987. {
  2988. "__id__": 96
  2989. }
  2990. ],
  2991. "_active": true,
  2992. "_components": [],
  2993. "_prefab": {
  2994. "__id__": 104
  2995. },
  2996. "_lpos": {
  2997. "__type__": "cc.Vec3",
  2998. "x": 0,
  2999. "y": 0,
  3000. "z": 0
  3001. },
  3002. "_lrot": {
  3003. "__type__": "cc.Quat",
  3004. "x": 0,
  3005. "y": 0,
  3006. "z": 0,
  3007. "w": 1
  3008. },
  3009. "_lscale": {
  3010. "__type__": "cc.Vec3",
  3011. "x": 1,
  3012. "y": 1,
  3013. "z": 1
  3014. },
  3015. "_layer": 1073741824,
  3016. "_euler": {
  3017. "__type__": "cc.Vec3",
  3018. "x": 0,
  3019. "y": 0,
  3020. "z": 0
  3021. },
  3022. "_id": ""
  3023. },
  3024. {
  3025. "__type__": "cc.Node",
  3026. "_name": "RootNode",
  3027. "_objFlags": 0,
  3028. "_parent": {
  3029. "__id__": 95
  3030. },
  3031. "_children": [
  3032. {
  3033. "__id__": 97
  3034. }
  3035. ],
  3036. "_active": true,
  3037. "_components": [],
  3038. "_prefab": {
  3039. "__id__": 103
  3040. },
  3041. "_lpos": {
  3042. "__type__": "cc.Vec3",
  3043. "x": 0,
  3044. "y": 0,
  3045. "z": 0
  3046. },
  3047. "_lrot": {
  3048. "__type__": "cc.Quat",
  3049. "x": 0,
  3050. "y": 0,
  3051. "z": 0,
  3052. "w": 1
  3053. },
  3054. "_lscale": {
  3055. "__type__": "cc.Vec3",
  3056. "x": 1,
  3057. "y": 1,
  3058. "z": 1
  3059. },
  3060. "_layer": 1073741824,
  3061. "_euler": {
  3062. "__type__": "cc.Vec3",
  3063. "x": 0,
  3064. "y": 0,
  3065. "z": 0
  3066. },
  3067. "_id": ""
  3068. },
  3069. {
  3070. "__type__": "cc.Node",
  3071. "_name": "weapon002",
  3072. "_objFlags": 0,
  3073. "_parent": {
  3074. "__id__": 96
  3075. },
  3076. "_children": [
  3077. {
  3078. "__id__": 98
  3079. }
  3080. ],
  3081. "_active": true,
  3082. "_components": [
  3083. {
  3084. "__id__": 100
  3085. }
  3086. ],
  3087. "_prefab": {
  3088. "__id__": 102
  3089. },
  3090. "_lpos": {
  3091. "__type__": "cc.Vec3",
  3092. "x": 0,
  3093. "y": 0,
  3094. "z": 0
  3095. },
  3096. "_lrot": {
  3097. "__type__": "cc.Quat",
  3098. "x": 0,
  3099. "y": 0,
  3100. "z": 0,
  3101. "w": 1
  3102. },
  3103. "_lscale": {
  3104. "__type__": "cc.Vec3",
  3105. "x": 1,
  3106. "y": 1,
  3107. "z": 1
  3108. },
  3109. "_layer": 1073741824,
  3110. "_euler": {
  3111. "__type__": "cc.Vec3",
  3112. "x": 0,
  3113. "y": 0,
  3114. "z": 0
  3115. },
  3116. "_id": ""
  3117. },
  3118. {
  3119. "__type__": "cc.Node",
  3120. "_name": "FireSocket",
  3121. "_objFlags": 0,
  3122. "_parent": {
  3123. "__id__": 97
  3124. },
  3125. "_children": [],
  3126. "_active": true,
  3127. "_components": [],
  3128. "_prefab": {
  3129. "__id__": 99
  3130. },
  3131. "_lpos": {
  3132. "__type__": "cc.Vec3",
  3133. "x": 0,
  3134. "y": 0.064359225332737,
  3135. "z": 0.431457787752151
  3136. },
  3137. "_lrot": {
  3138. "__type__": "cc.Quat",
  3139. "x": 0,
  3140. "y": 0,
  3141. "z": 0,
  3142. "w": 1
  3143. },
  3144. "_lscale": {
  3145. "__type__": "cc.Vec3",
  3146. "x": 1,
  3147. "y": 1,
  3148. "z": 1
  3149. },
  3150. "_layer": 1073741824,
  3151. "_euler": {
  3152. "__type__": "cc.Vec3",
  3153. "x": 0,
  3154. "y": 0,
  3155. "z": 0
  3156. },
  3157. "_id": ""
  3158. },
  3159. {
  3160. "__type__": "cc.PrefabInfo",
  3161. "root": {
  3162. "__id__": 1
  3163. },
  3164. "asset": {
  3165. "__id__": 0
  3166. },
  3167. "fileId": "9d7zkWWJxAyJ5XnIpfqYX1",
  3168. "sync": false,
  3169. "_synced": {
  3170. "default": false,
  3171. "serializable": false
  3172. }
  3173. },
  3174. {
  3175. "__type__": "cc.ModelComponent",
  3176. "_name": "",
  3177. "_objFlags": 0,
  3178. "node": {
  3179. "__id__": 97
  3180. },
  3181. "_enabled": true,
  3182. "_materials": [
  3183. {
  3184. "__uuid__": "56c31a79-2d46-414f-9e8c-f6fab044c0b8"
  3185. }
  3186. ],
  3187. "_visFlags": 0,
  3188. "lightmapSettings": {
  3189. "__id__": 101
  3190. },
  3191. "_mesh": {
  3192. "__uuid__": "a7a1a998-0b40-4fba-ac46-e62c7334b260@0a277"
  3193. },
  3194. "_shadowCastingMode": 0,
  3195. "_enableMorph": true,
  3196. "_id": ""
  3197. },
  3198. {
  3199. "__type__": "cc.ModelLightmapSettings",
  3200. "texture": null,
  3201. "uvParam": {
  3202. "__type__": "cc.Vec4",
  3203. "x": 0,
  3204. "y": 0,
  3205. "z": 0,
  3206. "w": 0
  3207. },
  3208. "_bakeable": false,
  3209. "_castShadow": false,
  3210. "_receiveShadow": false,
  3211. "_recieveShadow": false,
  3212. "_lightmapSize": 64
  3213. },
  3214. {
  3215. "__type__": "cc.PrefabInfo",
  3216. "root": {
  3217. "__id__": 1
  3218. },
  3219. "asset": {
  3220. "__id__": 0
  3221. },
  3222. "fileId": "3c3c9pT4BCsaF4YABJCOMw",
  3223. "sync": false,
  3224. "_synced": {
  3225. "default": false,
  3226. "serializable": false
  3227. }
  3228. },
  3229. {
  3230. "__type__": "cc.PrefabInfo",
  3231. "root": {
  3232. "__id__": 1
  3233. },
  3234. "asset": {
  3235. "__id__": 0
  3236. },
  3237. "fileId": "25v3vKsZpKZagZRBPxvb/G",
  3238. "sync": false,
  3239. "_synced": {
  3240. "default": false,
  3241. "serializable": false
  3242. }
  3243. },
  3244. {
  3245. "__type__": "cc.PrefabInfo",
  3246. "root": {
  3247. "__id__": 1
  3248. },
  3249. "asset": {
  3250. "__id__": 0
  3251. },
  3252. "fileId": "0eF2dUpsZCX7PMgtFGDEJ9",
  3253. "sync": false,
  3254. "_synced": {
  3255. "default": false,
  3256. "serializable": false
  3257. }
  3258. },
  3259. {
  3260. "__type__": "cc.UITransformComponent",
  3261. "_name": "FightingUI<UITransformComponent>",
  3262. "_objFlags": 0,
  3263. "node": {
  3264. "__id__": 1
  3265. },
  3266. "_enabled": true,
  3267. "_priority": 0,
  3268. "_contentSize": {
  3269. "__type__": "cc.Size",
  3270. "width": 750,
  3271. "height": 1334
  3272. },
  3273. "_anchorPoint": {
  3274. "__type__": "cc.Vec2",
  3275. "x": 0.5,
  3276. "y": 0.5
  3277. },
  3278. "_id": ""
  3279. },
  3280. {
  3281. "__type__": "cc.WidgetComponent",
  3282. "_name": "FightingUI<WidgetComponent>",
  3283. "_objFlags": 0,
  3284. "node": {
  3285. "__id__": 1
  3286. },
  3287. "_enabled": true,
  3288. "_alignFlags": 45,
  3289. "_target": null,
  3290. "_left": 0,
  3291. "_right": 0,
  3292. "_top": 0,
  3293. "_bottom": 0,
  3294. "_horizontalCenter": 0,
  3295. "_verticalCenter": 0,
  3296. "_isAbsLeft": true,
  3297. "_isAbsRight": true,
  3298. "_isAbsTop": true,
  3299. "_isAbsBottom": true,
  3300. "_isAbsHorizontalCenter": true,
  3301. "_isAbsVerticalCenter": true,
  3302. "_originalWidth": 100,
  3303. "_originalHeight": 100,
  3304. "_alignMode": 2,
  3305. "_lockFlags": 0,
  3306. "_id": ""
  3307. },
  3308. {
  3309. "__type__": "d0bdeKIPsdMkKRGOn+5AWII",
  3310. "_name": "",
  3311. "_objFlags": 0,
  3312. "node": {
  3313. "__id__": 1
  3314. },
  3315. "_enabled": true,
  3316. "BulletUIPrefab": {
  3317. "__uuid__": "c8501bb6-ef6c-4576-bdf2-b21807f2b74b"
  3318. },
  3319. "BulletClip": {
  3320. "__id__": 47
  3321. },
  3322. "leftFireButton": {
  3323. "__id__": 61
  3324. },
  3325. "middleFireButton": {
  3326. "__id__": 67
  3327. },
  3328. "rightFireButton": {
  3329. "__id__": 73
  3330. },
  3331. "killCountGroup": {
  3332. "__id__": 79
  3333. },
  3334. "killCountText": {
  3335. "__id__": 82
  3336. },
  3337. "monsterCountText": {
  3338. "__id__": 34
  3339. },
  3340. "levelLabel": {
  3341. "__id__": 93
  3342. },
  3343. "_id": ""
  3344. },
  3345. {
  3346. "__type__": "cc.PrefabInfo",
  3347. "root": {
  3348. "__id__": 1
  3349. },
  3350. "asset": {
  3351. "__id__": 0
  3352. },
  3353. "fileId": "06uwNz3pFPm6kz/+jv96Mt",
  3354. "sync": false,
  3355. "_synced": {
  3356. "default": false,
  3357. "serializable": false
  3358. }
  3359. }
  3360. ]