FreeUseGunUI.prefab 41 KB

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