ui_notice.prefab 39 KB

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