BattleScene_Right.prefab 38 KB

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