FreeUseGunUI.prefab 40 KB

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