BattleMemoWindow.prefab 38 KB

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