analysisMemo.prefab 38 KB

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