ClubInviteUserList.prefab 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030
  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. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "ClubInviteUserList",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 8
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [
  29. {
  30. "__id__": 82
  31. },
  32. {
  33. "__id__": 83
  34. },
  35. {
  36. "__id__": 84
  37. }
  38. ],
  39. "_prefab": {
  40. "__id__": 85
  41. },
  42. "_opacity": 255,
  43. "_color": {
  44. "__type__": "cc.Color",
  45. "r": 255,
  46. "g": 255,
  47. "b": 255,
  48. "a": 255
  49. },
  50. "_contentSize": {
  51. "__type__": "cc.Size",
  52. "width": 1664,
  53. "height": 750
  54. },
  55. "_anchorPoint": {
  56. "__type__": "cc.Vec2",
  57. "x": 0.5,
  58. "y": 0.5
  59. },
  60. "_trs": {
  61. "__type__": "TypedArray",
  62. "ctor": "Float64Array",
  63. "array": [
  64. 0,
  65. 0,
  66. 0,
  67. 0,
  68. 0,
  69. 0,
  70. 1,
  71. 1,
  72. 1,
  73. 1
  74. ]
  75. },
  76. "_eulerAngles": {
  77. "__type__": "cc.Vec3",
  78. "x": 0,
  79. "y": 0,
  80. "z": 0
  81. },
  82. "_skewX": 0,
  83. "_skewY": 0,
  84. "_is3DNode": false,
  85. "_groupIndex": 0,
  86. "groupIndex": 0,
  87. "_id": ""
  88. },
  89. {
  90. "__type__": "cc.Node",
  91. "_name": "NoClick",
  92. "_objFlags": 0,
  93. "_parent": {
  94. "__id__": 1
  95. },
  96. "_children": [],
  97. "_active": true,
  98. "_components": [
  99. {
  100. "__id__": 3
  101. },
  102. {
  103. "__id__": 4
  104. },
  105. {
  106. "__id__": 6
  107. }
  108. ],
  109. "_prefab": {
  110. "__id__": 7
  111. },
  112. "_opacity": 150,
  113. "_color": {
  114. "__type__": "cc.Color",
  115. "r": 0,
  116. "g": 0,
  117. "b": 0,
  118. "a": 255
  119. },
  120. "_contentSize": {
  121. "__type__": "cc.Size",
  122. "width": 2880,
  123. "height": 1400
  124. },
  125. "_anchorPoint": {
  126. "__type__": "cc.Vec2",
  127. "x": 0.5,
  128. "y": 0.5
  129. },
  130. "_trs": {
  131. "__type__": "TypedArray",
  132. "ctor": "Float64Array",
  133. "array": [
  134. 0,
  135. 0,
  136. 0,
  137. 0,
  138. 0,
  139. 0,
  140. 1,
  141. 1,
  142. 1,
  143. 1
  144. ]
  145. },
  146. "_eulerAngles": {
  147. "__type__": "cc.Vec3",
  148. "x": 0,
  149. "y": 0,
  150. "z": 0
  151. },
  152. "_skewX": 0,
  153. "_skewY": 0,
  154. "_is3DNode": false,
  155. "_groupIndex": 0,
  156. "groupIndex": 0,
  157. "_id": ""
  158. },
  159. {
  160. "__type__": "cc.Sprite",
  161. "_name": "",
  162. "_objFlags": 0,
  163. "node": {
  164. "__id__": 2
  165. },
  166. "_enabled": false,
  167. "_materials": [
  168. {
  169. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  170. }
  171. ],
  172. "_srcBlendFactor": 770,
  173. "_dstBlendFactor": 771,
  174. "_spriteFrame": {
  175. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  176. },
  177. "_type": 0,
  178. "_sizeMode": 0,
  179. "_fillType": 0,
  180. "_fillCenter": {
  181. "__type__": "cc.Vec2",
  182. "x": 0,
  183. "y": 0
  184. },
  185. "_fillStart": 0,
  186. "_fillRange": 0,
  187. "_isTrimmedMode": true,
  188. "_atlas": null,
  189. "_id": ""
  190. },
  191. {
  192. "__type__": "cc.Button",
  193. "_name": "",
  194. "_objFlags": 0,
  195. "node": {
  196. "__id__": 2
  197. },
  198. "_enabled": true,
  199. "_normalMaterial": null,
  200. "_grayMaterial": null,
  201. "duration": 0.1,
  202. "zoomScale": 1.2,
  203. "clickEvents": [
  204. {
  205. "__id__": 5
  206. }
  207. ],
  208. "_N$interactable": true,
  209. "_N$enableAutoGrayEffect": false,
  210. "_N$transition": 0,
  211. "transition": 0,
  212. "_N$normalColor": {
  213. "__type__": "cc.Color",
  214. "r": 214,
  215. "g": 214,
  216. "b": 214,
  217. "a": 255
  218. },
  219. "_N$pressedColor": {
  220. "__type__": "cc.Color",
  221. "r": 211,
  222. "g": 211,
  223. "b": 211,
  224. "a": 255
  225. },
  226. "pressedColor": {
  227. "__type__": "cc.Color",
  228. "r": 211,
  229. "g": 211,
  230. "b": 211,
  231. "a": 255
  232. },
  233. "_N$hoverColor": {
  234. "__type__": "cc.Color",
  235. "r": 255,
  236. "g": 255,
  237. "b": 255,
  238. "a": 255
  239. },
  240. "hoverColor": {
  241. "__type__": "cc.Color",
  242. "r": 255,
  243. "g": 255,
  244. "b": 255,
  245. "a": 255
  246. },
  247. "_N$disabledColor": {
  248. "__type__": "cc.Color",
  249. "r": 124,
  250. "g": 124,
  251. "b": 124,
  252. "a": 255
  253. },
  254. "_N$normalSprite": null,
  255. "_N$pressedSprite": null,
  256. "pressedSprite": null,
  257. "_N$hoverSprite": null,
  258. "hoverSprite": null,
  259. "_N$disabledSprite": null,
  260. "_N$target": {
  261. "__id__": 2
  262. },
  263. "_id": ""
  264. },
  265. {
  266. "__type__": "cc.ClickEvent",
  267. "target": {
  268. "__id__": 1
  269. },
  270. "component": "",
  271. "_componentId": "bf5d10TFB1D9J9IsvXz2e/6",
  272. "handler": "HideView",
  273. "customEventData": ""
  274. },
  275. {
  276. "__type__": "75214xvQAtDAbWtQz4YaW+4",
  277. "_name": "",
  278. "_objFlags": 0,
  279. "node": {
  280. "__id__": 2
  281. },
  282. "_enabled": true,
  283. "_id": ""
  284. },
  285. {
  286. "__type__": "cc.PrefabInfo",
  287. "root": {
  288. "__id__": 1
  289. },
  290. "asset": {
  291. "__id__": 0
  292. },
  293. "fileId": "18xksmTdRKV7bsIJHgh9BX",
  294. "sync": false
  295. },
  296. {
  297. "__type__": "cc.Node",
  298. "_name": "node",
  299. "_objFlags": 0,
  300. "_parent": {
  301. "__id__": 1
  302. },
  303. "_children": [
  304. {
  305. "__id__": 9
  306. },
  307. {
  308. "__id__": 23
  309. }
  310. ],
  311. "_active": true,
  312. "_components": [
  313. {
  314. "__id__": 80
  315. }
  316. ],
  317. "_prefab": {
  318. "__id__": 81
  319. },
  320. "_opacity": 255,
  321. "_color": {
  322. "__type__": "cc.Color",
  323. "r": 255,
  324. "g": 255,
  325. "b": 255,
  326. "a": 255
  327. },
  328. "_contentSize": {
  329. "__type__": "cc.Size",
  330. "width": 488,
  331. "height": 635
  332. },
  333. "_anchorPoint": {
  334. "__type__": "cc.Vec2",
  335. "x": 0.5,
  336. "y": 0.5
  337. },
  338. "_trs": {
  339. "__type__": "TypedArray",
  340. "ctor": "Float64Array",
  341. "array": [
  342. -588,
  343. 0,
  344. 0,
  345. 0,
  346. 0,
  347. 0,
  348. 1,
  349. 1,
  350. 1,
  351. 1
  352. ]
  353. },
  354. "_eulerAngles": {
  355. "__type__": "cc.Vec3",
  356. "x": 0,
  357. "y": 0,
  358. "z": 0
  359. },
  360. "_skewX": 0,
  361. "_skewY": 0,
  362. "_is3DNode": false,
  363. "_groupIndex": 0,
  364. "groupIndex": 0,
  365. "_id": ""
  366. },
  367. {
  368. "__type__": "cc.Node",
  369. "_name": "BGM",
  370. "_objFlags": 0,
  371. "_parent": {
  372. "__id__": 8
  373. },
  374. "_children": [
  375. {
  376. "__id__": 10
  377. },
  378. {
  379. "__id__": 16
  380. }
  381. ],
  382. "_active": true,
  383. "_components": [
  384. {
  385. "__id__": 21
  386. }
  387. ],
  388. "_prefab": {
  389. "__id__": 22
  390. },
  391. "_opacity": 255,
  392. "_color": {
  393. "__type__": "cc.Color",
  394. "r": 255,
  395. "g": 255,
  396. "b": 255,
  397. "a": 255
  398. },
  399. "_contentSize": {
  400. "__type__": "cc.Size",
  401. "width": 530,
  402. "height": 716
  403. },
  404. "_anchorPoint": {
  405. "__type__": "cc.Vec2",
  406. "x": 0.5,
  407. "y": 0.5
  408. },
  409. "_trs": {
  410. "__type__": "TypedArray",
  411. "ctor": "Float64Array",
  412. "array": [
  413. 0,
  414. 0,
  415. 0,
  416. 0,
  417. 0,
  418. 0,
  419. 1,
  420. 1,
  421. 1,
  422. 1
  423. ]
  424. },
  425. "_eulerAngles": {
  426. "__type__": "cc.Vec3",
  427. "x": 0,
  428. "y": 0,
  429. "z": 0
  430. },
  431. "_skewX": 0,
  432. "_skewY": 0,
  433. "_is3DNode": false,
  434. "_groupIndex": 0,
  435. "groupIndex": 0,
  436. "_id": ""
  437. },
  438. {
  439. "__type__": "cc.Node",
  440. "_name": "BGT",
  441. "_objFlags": 0,
  442. "_parent": {
  443. "__id__": 9
  444. },
  445. "_children": [
  446. {
  447. "__id__": 11
  448. }
  449. ],
  450. "_active": true,
  451. "_components": [
  452. {
  453. "__id__": 14
  454. }
  455. ],
  456. "_prefab": {
  457. "__id__": 15
  458. },
  459. "_opacity": 255,
  460. "_color": {
  461. "__type__": "cc.Color",
  462. "r": 255,
  463. "g": 255,
  464. "b": 255,
  465. "a": 255
  466. },
  467. "_contentSize": {
  468. "__type__": "cc.Size",
  469. "width": 350,
  470. "height": 79
  471. },
  472. "_anchorPoint": {
  473. "__type__": "cc.Vec2",
  474. "x": 0.5,
  475. "y": 0.5
  476. },
  477. "_trs": {
  478. "__type__": "TypedArray",
  479. "ctor": "Float64Array",
  480. "array": [
  481. 0,
  482. 325.617,
  483. 0,
  484. 0,
  485. 0,
  486. 0,
  487. 1,
  488. 1,
  489. 1,
  490. 1
  491. ]
  492. },
  493. "_eulerAngles": {
  494. "__type__": "cc.Vec3",
  495. "x": 0,
  496. "y": 0,
  497. "z": 0
  498. },
  499. "_skewX": 0,
  500. "_skewY": 0,
  501. "_is3DNode": false,
  502. "_groupIndex": 0,
  503. "groupIndex": 0,
  504. "_id": ""
  505. },
  506. {
  507. "__type__": "cc.Node",
  508. "_name": "TTips",
  509. "_objFlags": 0,
  510. "_parent": {
  511. "__id__": 10
  512. },
  513. "_children": [],
  514. "_active": true,
  515. "_components": [
  516. {
  517. "__id__": 12
  518. }
  519. ],
  520. "_prefab": {
  521. "__id__": 13
  522. },
  523. "_opacity": 255,
  524. "_color": {
  525. "__type__": "cc.Color",
  526. "r": 255,
  527. "g": 255,
  528. "b": 255,
  529. "a": 255
  530. },
  531. "_contentSize": {
  532. "__type__": "cc.Size",
  533. "width": 154,
  534. "height": 39
  535. },
  536. "_anchorPoint": {
  537. "__type__": "cc.Vec2",
  538. "x": 0.5,
  539. "y": 0.5
  540. },
  541. "_trs": {
  542. "__type__": "TypedArray",
  543. "ctor": "Float64Array",
  544. "array": [
  545. 0,
  546. 1.866,
  547. 0,
  548. 0,
  549. 0,
  550. 0,
  551. 1,
  552. 1,
  553. 1,
  554. 1
  555. ]
  556. },
  557. "_eulerAngles": {
  558. "__type__": "cc.Vec3",
  559. "x": 0,
  560. "y": 0,
  561. "z": 0
  562. },
  563. "_skewX": 0,
  564. "_skewY": 0,
  565. "_is3DNode": false,
  566. "_groupIndex": 0,
  567. "groupIndex": 0,
  568. "_id": ""
  569. },
  570. {
  571. "__type__": "cc.Sprite",
  572. "_name": "",
  573. "_objFlags": 0,
  574. "node": {
  575. "__id__": 11
  576. },
  577. "_enabled": true,
  578. "_materials": [
  579. {
  580. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  581. }
  582. ],
  583. "_srcBlendFactor": 770,
  584. "_dstBlendFactor": 771,
  585. "_spriteFrame": {
  586. "__uuid__": "3b7cc6e1-3b10-4136-b122-359aa6a43e9d"
  587. },
  588. "_type": 0,
  589. "_sizeMode": 1,
  590. "_fillType": 0,
  591. "_fillCenter": {
  592. "__type__": "cc.Vec2",
  593. "x": 0,
  594. "y": 0
  595. },
  596. "_fillStart": 0,
  597. "_fillRange": 0,
  598. "_isTrimmedMode": true,
  599. "_atlas": null,
  600. "_id": ""
  601. },
  602. {
  603. "__type__": "cc.PrefabInfo",
  604. "root": {
  605. "__id__": 1
  606. },
  607. "asset": {
  608. "__id__": 0
  609. },
  610. "fileId": "bfaRQ109pDH4cZOAXzFD0G",
  611. "sync": false
  612. },
  613. {
  614. "__type__": "cc.Sprite",
  615. "_name": "",
  616. "_objFlags": 0,
  617. "node": {
  618. "__id__": 10
  619. },
  620. "_enabled": true,
  621. "_materials": [
  622. {
  623. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  624. }
  625. ],
  626. "_srcBlendFactor": 770,
  627. "_dstBlendFactor": 771,
  628. "_spriteFrame": {
  629. "__uuid__": "c38eea45-0a65-4bf3-9ef4-1f479db5db8a"
  630. },
  631. "_type": 0,
  632. "_sizeMode": 1,
  633. "_fillType": 0,
  634. "_fillCenter": {
  635. "__type__": "cc.Vec2",
  636. "x": 0,
  637. "y": 0
  638. },
  639. "_fillStart": 0,
  640. "_fillRange": 0,
  641. "_isTrimmedMode": true,
  642. "_atlas": null,
  643. "_id": ""
  644. },
  645. {
  646. "__type__": "cc.PrefabInfo",
  647. "root": {
  648. "__id__": 1
  649. },
  650. "asset": {
  651. "__id__": 0
  652. },
  653. "fileId": "19y2QixkRLCp3Fz7mvyhdW",
  654. "sync": false
  655. },
  656. {
  657. "__type__": "cc.Node",
  658. "_name": "BtCloseDlg",
  659. "_objFlags": 0,
  660. "_parent": {
  661. "__id__": 9
  662. },
  663. "_children": [],
  664. "_active": true,
  665. "_components": [
  666. {
  667. "__id__": 17
  668. },
  669. {
  670. "__id__": 18
  671. }
  672. ],
  673. "_prefab": {
  674. "__id__": 20
  675. },
  676. "_opacity": 255,
  677. "_color": {
  678. "__type__": "cc.Color",
  679. "r": 255,
  680. "g": 255,
  681. "b": 255,
  682. "a": 255
  683. },
  684. "_contentSize": {
  685. "__type__": "cc.Size",
  686. "width": 52,
  687. "height": 55
  688. },
  689. "_anchorPoint": {
  690. "__type__": "cc.Vec2",
  691. "x": 0.5,
  692. "y": 0.5
  693. },
  694. "_trs": {
  695. "__type__": "TypedArray",
  696. "ctor": "Float64Array",
  697. "array": [
  698. 227.878,
  699. 322.262,
  700. 0,
  701. 0,
  702. 0,
  703. 0,
  704. 1,
  705. 1,
  706. 1,
  707. 1
  708. ]
  709. },
  710. "_eulerAngles": {
  711. "__type__": "cc.Vec3",
  712. "x": 0,
  713. "y": 0,
  714. "z": 0
  715. },
  716. "_skewX": 0,
  717. "_skewY": 0,
  718. "_is3DNode": false,
  719. "_groupIndex": 0,
  720. "groupIndex": 0,
  721. "_id": ""
  722. },
  723. {
  724. "__type__": "cc.Sprite",
  725. "_name": "",
  726. "_objFlags": 0,
  727. "node": {
  728. "__id__": 16
  729. },
  730. "_enabled": true,
  731. "_materials": [
  732. {
  733. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  734. }
  735. ],
  736. "_srcBlendFactor": 770,
  737. "_dstBlendFactor": 771,
  738. "_spriteFrame": {
  739. "__uuid__": "95e830f3-2531-492a-a17f-30d82bc820c5"
  740. },
  741. "_type": 0,
  742. "_sizeMode": 1,
  743. "_fillType": 0,
  744. "_fillCenter": {
  745. "__type__": "cc.Vec2",
  746. "x": 0,
  747. "y": 0
  748. },
  749. "_fillStart": 0,
  750. "_fillRange": 0,
  751. "_isTrimmedMode": true,
  752. "_atlas": null,
  753. "_id": ""
  754. },
  755. {
  756. "__type__": "cc.Button",
  757. "_name": "",
  758. "_objFlags": 0,
  759. "node": {
  760. "__id__": 16
  761. },
  762. "_enabled": true,
  763. "_normalMaterial": null,
  764. "_grayMaterial": null,
  765. "duration": 0,
  766. "zoomScale": 1.2,
  767. "clickEvents": [
  768. {
  769. "__id__": 19
  770. }
  771. ],
  772. "_N$interactable": true,
  773. "_N$enableAutoGrayEffect": false,
  774. "_N$transition": 1,
  775. "transition": 1,
  776. "_N$normalColor": {
  777. "__type__": "cc.Color",
  778. "r": 255,
  779. "g": 255,
  780. "b": 255,
  781. "a": 255
  782. },
  783. "_N$pressedColor": {
  784. "__type__": "cc.Color",
  785. "r": 180,
  786. "g": 180,
  787. "b": 180,
  788. "a": 255
  789. },
  790. "pressedColor": {
  791. "__type__": "cc.Color",
  792. "r": 180,
  793. "g": 180,
  794. "b": 180,
  795. "a": 255
  796. },
  797. "_N$hoverColor": {
  798. "__type__": "cc.Color",
  799. "r": 255,
  800. "g": 255,
  801. "b": 255,
  802. "a": 255
  803. },
  804. "hoverColor": {
  805. "__type__": "cc.Color",
  806. "r": 255,
  807. "g": 255,
  808. "b": 255,
  809. "a": 255
  810. },
  811. "_N$disabledColor": {
  812. "__type__": "cc.Color",
  813. "r": 255,
  814. "g": 255,
  815. "b": 255,
  816. "a": 255
  817. },
  818. "_N$normalSprite": null,
  819. "_N$pressedSprite": null,
  820. "pressedSprite": null,
  821. "_N$hoverSprite": null,
  822. "hoverSprite": null,
  823. "_N$disabledSprite": null,
  824. "_N$target": {
  825. "__id__": 16
  826. },
  827. "_id": ""
  828. },
  829. {
  830. "__type__": "cc.ClickEvent",
  831. "target": {
  832. "__id__": 1
  833. },
  834. "component": "",
  835. "_componentId": "bf5d10TFB1D9J9IsvXz2e/6",
  836. "handler": "HideView",
  837. "customEventData": ""
  838. },
  839. {
  840. "__type__": "cc.PrefabInfo",
  841. "root": {
  842. "__id__": 1
  843. },
  844. "asset": {
  845. "__id__": 0
  846. },
  847. "fileId": "e3ViGNHLtHp5bJ8PjO+IsK",
  848. "sync": false
  849. },
  850. {
  851. "__type__": "cc.Sprite",
  852. "_name": "",
  853. "_objFlags": 0,
  854. "node": {
  855. "__id__": 9
  856. },
  857. "_enabled": true,
  858. "_materials": [
  859. {
  860. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  861. }
  862. ],
  863. "_srcBlendFactor": 770,
  864. "_dstBlendFactor": 771,
  865. "_spriteFrame": {
  866. "__uuid__": "ddd09f70-2c53-4e7b-a41f-8afc68e435ed"
  867. },
  868. "_type": 0,
  869. "_sizeMode": 0,
  870. "_fillType": 0,
  871. "_fillCenter": {
  872. "__type__": "cc.Vec2",
  873. "x": 0,
  874. "y": 0
  875. },
  876. "_fillStart": 0,
  877. "_fillRange": 0,
  878. "_isTrimmedMode": true,
  879. "_atlas": null,
  880. "_id": ""
  881. },
  882. {
  883. "__type__": "cc.PrefabInfo",
  884. "root": {
  885. "__id__": 1
  886. },
  887. "asset": {
  888. "__id__": 0
  889. },
  890. "fileId": "d2lNoqG85IR6qJ8QOveQ64",
  891. "sync": false
  892. },
  893. {
  894. "__type__": "cc.Node",
  895. "_name": "ScrollView",
  896. "_objFlags": 0,
  897. "_parent": {
  898. "__id__": 8
  899. },
  900. "_children": [
  901. {
  902. "__id__": 24
  903. },
  904. {
  905. "__id__": 31
  906. },
  907. {
  908. "__id__": 67
  909. },
  910. {
  911. "__id__": 75
  912. }
  913. ],
  914. "_active": true,
  915. "_components": [
  916. {
  917. "__id__": 78
  918. },
  919. {
  920. "__id__": 29
  921. }
  922. ],
  923. "_prefab": {
  924. "__id__": 79
  925. },
  926. "_opacity": 255,
  927. "_color": {
  928. "__type__": "cc.Color",
  929. "r": 255,
  930. "g": 255,
  931. "b": 255,
  932. "a": 255
  933. },
  934. "_contentSize": {
  935. "__type__": "cc.Size",
  936. "width": 450,
  937. "height": 450
  938. },
  939. "_anchorPoint": {
  940. "__type__": "cc.Vec2",
  941. "x": 0.5,
  942. "y": 0.5
  943. },
  944. "_trs": {
  945. "__type__": "TypedArray",
  946. "ctor": "Float64Array",
  947. "array": [
  948. 0,
  949. 15,
  950. 0,
  951. 0,
  952. 0,
  953. 0,
  954. 1,
  955. 1,
  956. 1,
  957. 1
  958. ]
  959. },
  960. "_eulerAngles": {
  961. "__type__": "cc.Vec3",
  962. "x": 0,
  963. "y": 0,
  964. "z": 0
  965. },
  966. "_skewX": 0,
  967. "_skewY": 0,
  968. "_is3DNode": false,
  969. "_groupIndex": 0,
  970. "groupIndex": 0,
  971. "_id": ""
  972. },
  973. {
  974. "__type__": "cc.Node",
  975. "_name": "scrollBar",
  976. "_objFlags": 512,
  977. "_parent": {
  978. "__id__": 23
  979. },
  980. "_children": [
  981. {
  982. "__id__": 25
  983. }
  984. ],
  985. "_active": true,
  986. "_components": [
  987. {
  988. "__id__": 28
  989. },
  990. {
  991. "__id__": 64
  992. },
  993. {
  994. "__id__": 65
  995. }
  996. ],
  997. "_prefab": {
  998. "__id__": 66
  999. },
  1000. "_opacity": 255,
  1001. "_color": {
  1002. "__type__": "cc.Color",
  1003. "r": 255,
  1004. "g": 255,
  1005. "b": 255,
  1006. "a": 255
  1007. },
  1008. "_contentSize": {
  1009. "__type__": "cc.Size",
  1010. "width": 12,
  1011. "height": 450
  1012. },
  1013. "_anchorPoint": {
  1014. "__type__": "cc.Vec2",
  1015. "x": 1,
  1016. "y": 0.5
  1017. },
  1018. "_trs": {
  1019. "__type__": "TypedArray",
  1020. "ctor": "Float64Array",
  1021. "array": [
  1022. 225,
  1023. 0,
  1024. 0,
  1025. 0,
  1026. 0,
  1027. 0,
  1028. 1,
  1029. 1,
  1030. 1,
  1031. 1
  1032. ]
  1033. },
  1034. "_eulerAngles": {
  1035. "__type__": "cc.Vec3",
  1036. "x": 0,
  1037. "y": 0,
  1038. "z": 0
  1039. },
  1040. "_skewX": 0,
  1041. "_skewY": 0,
  1042. "_is3DNode": false,
  1043. "_groupIndex": 0,
  1044. "groupIndex": 0,
  1045. "_id": ""
  1046. },
  1047. {
  1048. "__type__": "cc.Node",
  1049. "_name": "bar",
  1050. "_objFlags": 512,
  1051. "_parent": {
  1052. "__id__": 24
  1053. },
  1054. "_children": [],
  1055. "_active": true,
  1056. "_components": [
  1057. {
  1058. "__id__": 26
  1059. }
  1060. ],
  1061. "_prefab": {
  1062. "__id__": 27
  1063. },
  1064. "_opacity": 255,
  1065. "_color": {
  1066. "__type__": "cc.Color",
  1067. "r": 255,
  1068. "g": 255,
  1069. "b": 255,
  1070. "a": 255
  1071. },
  1072. "_contentSize": {
  1073. "__type__": "cc.Size",
  1074. "width": 10,
  1075. "height": 30
  1076. },
  1077. "_anchorPoint": {
  1078. "__type__": "cc.Vec2",
  1079. "x": 1,
  1080. "y": 0
  1081. },
  1082. "_trs": {
  1083. "__type__": "TypedArray",
  1084. "ctor": "Float64Array",
  1085. "array": [
  1086. -1,
  1087. 0,
  1088. 0,
  1089. 0,
  1090. 0,
  1091. 0,
  1092. 1,
  1093. 1,
  1094. 1,
  1095. 1
  1096. ]
  1097. },
  1098. "_eulerAngles": {
  1099. "__type__": "cc.Vec3",
  1100. "x": 0,
  1101. "y": 0,
  1102. "z": 0
  1103. },
  1104. "_skewX": 0,
  1105. "_skewY": 0,
  1106. "_is3DNode": false,
  1107. "_groupIndex": 0,
  1108. "groupIndex": 0,
  1109. "_id": ""
  1110. },
  1111. {
  1112. "__type__": "cc.Sprite",
  1113. "_name": "",
  1114. "_objFlags": 0,
  1115. "node": {
  1116. "__id__": 25
  1117. },
  1118. "_enabled": true,
  1119. "_materials": [
  1120. {
  1121. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1122. }
  1123. ],
  1124. "_srcBlendFactor": 770,
  1125. "_dstBlendFactor": 771,
  1126. "_spriteFrame": {
  1127. "__uuid__": "5c3bb932-6c3c-468f-88a9-c8c61d458641"
  1128. },
  1129. "_type": 1,
  1130. "_sizeMode": 0,
  1131. "_fillType": 0,
  1132. "_fillCenter": {
  1133. "__type__": "cc.Vec2",
  1134. "x": 0,
  1135. "y": 0
  1136. },
  1137. "_fillStart": 0,
  1138. "_fillRange": 0,
  1139. "_isTrimmedMode": true,
  1140. "_atlas": null,
  1141. "_id": ""
  1142. },
  1143. {
  1144. "__type__": "cc.PrefabInfo",
  1145. "root": {
  1146. "__id__": 1
  1147. },
  1148. "asset": {
  1149. "__id__": 0
  1150. },
  1151. "fileId": "e9tR3gOnpGM68anU8Q0UnJ",
  1152. "sync": false
  1153. },
  1154. {
  1155. "__type__": "cc.Scrollbar",
  1156. "_name": "",
  1157. "_objFlags": 0,
  1158. "node": {
  1159. "__id__": 24
  1160. },
  1161. "_enabled": true,
  1162. "_scrollView": {
  1163. "__id__": 29
  1164. },
  1165. "_touching": false,
  1166. "_opacity": 255,
  1167. "enableAutoHide": true,
  1168. "autoHideTime": 1,
  1169. "_N$handle": {
  1170. "__id__": 26
  1171. },
  1172. "_N$direction": 1,
  1173. "_id": ""
  1174. },
  1175. {
  1176. "__type__": "cc.ScrollView",
  1177. "_name": "",
  1178. "_objFlags": 0,
  1179. "node": {
  1180. "__id__": 23
  1181. },
  1182. "_enabled": true,
  1183. "horizontal": false,
  1184. "vertical": true,
  1185. "inertia": true,
  1186. "brake": 0.75,
  1187. "elastic": true,
  1188. "bounceDuration": 0.23,
  1189. "scrollEvents": [],
  1190. "cancelInnerEvents": true,
  1191. "_N$content": {
  1192. "__id__": 30
  1193. },
  1194. "content": {
  1195. "__id__": 30
  1196. },
  1197. "_N$horizontalScrollBar": null,
  1198. "_N$verticalScrollBar": {
  1199. "__id__": 28
  1200. },
  1201. "_id": ""
  1202. },
  1203. {
  1204. "__type__": "cc.Node",
  1205. "_name": "content",
  1206. "_objFlags": 0,
  1207. "_parent": {
  1208. "__id__": 31
  1209. },
  1210. "_children": [
  1211. {
  1212. "__id__": 34
  1213. }
  1214. ],
  1215. "_active": true,
  1216. "_components": [
  1217. {
  1218. "__id__": 62
  1219. }
  1220. ],
  1221. "_prefab": {
  1222. "__id__": 63
  1223. },
  1224. "_opacity": 255,
  1225. "_color": {
  1226. "__type__": "cc.Color",
  1227. "r": 255,
  1228. "g": 255,
  1229. "b": 255,
  1230. "a": 255
  1231. },
  1232. "_contentSize": {
  1233. "__type__": "cc.Size",
  1234. "width": 450,
  1235. "height": 80
  1236. },
  1237. "_anchorPoint": {
  1238. "__type__": "cc.Vec2",
  1239. "x": 0.5,
  1240. "y": 1
  1241. },
  1242. "_trs": {
  1243. "__type__": "TypedArray",
  1244. "ctor": "Float64Array",
  1245. "array": [
  1246. 0,
  1247. 222.203,
  1248. 0,
  1249. 0,
  1250. 0,
  1251. 0,
  1252. 1,
  1253. 1,
  1254. 1,
  1255. 1
  1256. ]
  1257. },
  1258. "_eulerAngles": {
  1259. "__type__": "cc.Vec3",
  1260. "x": 0,
  1261. "y": 0,
  1262. "z": 0
  1263. },
  1264. "_skewX": 0,
  1265. "_skewY": 0,
  1266. "_is3DNode": false,
  1267. "_groupIndex": 0,
  1268. "groupIndex": 0,
  1269. "_id": ""
  1270. },
  1271. {
  1272. "__type__": "cc.Node",
  1273. "_name": "view",
  1274. "_objFlags": 512,
  1275. "_parent": {
  1276. "__id__": 23
  1277. },
  1278. "_children": [
  1279. {
  1280. "__id__": 30
  1281. }
  1282. ],
  1283. "_active": true,
  1284. "_components": [
  1285. {
  1286. "__id__": 32
  1287. }
  1288. ],
  1289. "_prefab": {
  1290. "__id__": 33
  1291. },
  1292. "_opacity": 255,
  1293. "_color": {
  1294. "__type__": "cc.Color",
  1295. "r": 255,
  1296. "g": 255,
  1297. "b": 255,
  1298. "a": 255
  1299. },
  1300. "_contentSize": {
  1301. "__type__": "cc.Size",
  1302. "width": 450,
  1303. "height": 450
  1304. },
  1305. "_anchorPoint": {
  1306. "__type__": "cc.Vec2",
  1307. "x": 0.5,
  1308. "y": 0.5
  1309. },
  1310. "_trs": {
  1311. "__type__": "TypedArray",
  1312. "ctor": "Float64Array",
  1313. "array": [
  1314. 0,
  1315. 0,
  1316. 0,
  1317. 0,
  1318. 0,
  1319. 0,
  1320. 1,
  1321. 1,
  1322. 1,
  1323. 1
  1324. ]
  1325. },
  1326. "_eulerAngles": {
  1327. "__type__": "cc.Vec3",
  1328. "x": 0,
  1329. "y": 0,
  1330. "z": 0
  1331. },
  1332. "_skewX": 0,
  1333. "_skewY": 0,
  1334. "_is3DNode": false,
  1335. "_groupIndex": 0,
  1336. "groupIndex": 0,
  1337. "_id": ""
  1338. },
  1339. {
  1340. "__type__": "cc.Mask",
  1341. "_name": "",
  1342. "_objFlags": 0,
  1343. "node": {
  1344. "__id__": 31
  1345. },
  1346. "_enabled": true,
  1347. "_materials": [
  1348. {
  1349. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1350. }
  1351. ],
  1352. "_spriteFrame": null,
  1353. "_type": 0,
  1354. "_segments": 64,
  1355. "_N$alphaThreshold": 0,
  1356. "_N$inverted": false,
  1357. "_id": ""
  1358. },
  1359. {
  1360. "__type__": "cc.PrefabInfo",
  1361. "root": {
  1362. "__id__": 1
  1363. },
  1364. "asset": {
  1365. "__id__": 0
  1366. },
  1367. "fileId": "e8YiujC2VIOq/36Yy/k3/F",
  1368. "sync": false
  1369. },
  1370. {
  1371. "__type__": "cc.Node",
  1372. "_name": "OnLineUserPre",
  1373. "_objFlags": 0,
  1374. "_parent": {
  1375. "__id__": 30
  1376. },
  1377. "_children": [
  1378. {
  1379. "__id__": 35
  1380. },
  1381. {
  1382. "__id__": 39
  1383. },
  1384. {
  1385. "__id__": 42
  1386. },
  1387. {
  1388. "__id__": 45
  1389. },
  1390. {
  1391. "__id__": 48
  1392. },
  1393. {
  1394. "__id__": 56
  1395. }
  1396. ],
  1397. "_active": true,
  1398. "_components": [
  1399. {
  1400. "__id__": 59
  1401. },
  1402. {
  1403. "__id__": 60
  1404. }
  1405. ],
  1406. "_prefab": {
  1407. "__id__": 61
  1408. },
  1409. "_opacity": 255,
  1410. "_color": {
  1411. "__type__": "cc.Color",
  1412. "r": 255,
  1413. "g": 255,
  1414. "b": 255,
  1415. "a": 255
  1416. },
  1417. "_contentSize": {
  1418. "__type__": "cc.Size",
  1419. "width": 450,
  1420. "height": 80
  1421. },
  1422. "_anchorPoint": {
  1423. "__type__": "cc.Vec2",
  1424. "x": 0.5,
  1425. "y": 0.5
  1426. },
  1427. "_trs": {
  1428. "__type__": "TypedArray",
  1429. "ctor": "Float64Array",
  1430. "array": [
  1431. 0,
  1432. -40,
  1433. 0,
  1434. 0,
  1435. 0,
  1436. 0,
  1437. 1,
  1438. 1,
  1439. 1,
  1440. 1
  1441. ]
  1442. },
  1443. "_eulerAngles": {
  1444. "__type__": "cc.Vec3",
  1445. "x": 0,
  1446. "y": 0,
  1447. "z": 0
  1448. },
  1449. "_skewX": 0,
  1450. "_skewY": 0,
  1451. "_is3DNode": false,
  1452. "_groupIndex": 0,
  1453. "groupIndex": 0,
  1454. "_id": ""
  1455. },
  1456. {
  1457. "__type__": "cc.Node",
  1458. "_name": "head",
  1459. "_objFlags": 0,
  1460. "_parent": {
  1461. "__id__": 34
  1462. },
  1463. "_children": [],
  1464. "_active": true,
  1465. "_components": [
  1466. {
  1467. "__id__": 36
  1468. },
  1469. {
  1470. "__id__": 37
  1471. }
  1472. ],
  1473. "_prefab": {
  1474. "__id__": 38
  1475. },
  1476. "_opacity": 255,
  1477. "_color": {
  1478. "__type__": "cc.Color",
  1479. "r": 255,
  1480. "g": 255,
  1481. "b": 255,
  1482. "a": 255
  1483. },
  1484. "_contentSize": {
  1485. "__type__": "cc.Size",
  1486. "width": 76,
  1487. "height": 76
  1488. },
  1489. "_anchorPoint": {
  1490. "__type__": "cc.Vec2",
  1491. "x": 0.5,
  1492. "y": 0.5
  1493. },
  1494. "_trs": {
  1495. "__type__": "TypedArray",
  1496. "ctor": "Float64Array",
  1497. "array": [
  1498. -175.199,
  1499. 0,
  1500. 0,
  1501. 0,
  1502. 0,
  1503. 0,
  1504. 1,
  1505. 1,
  1506. 1,
  1507. 1
  1508. ]
  1509. },
  1510. "_eulerAngles": {
  1511. "__type__": "cc.Vec3",
  1512. "x": 0,
  1513. "y": 0,
  1514. "z": 0
  1515. },
  1516. "_skewX": 0,
  1517. "_skewY": 0,
  1518. "_is3DNode": false,
  1519. "_groupIndex": 0,
  1520. "groupIndex": 0,
  1521. "_id": ""
  1522. },
  1523. {
  1524. "__type__": "cc.Sprite",
  1525. "_name": "",
  1526. "_objFlags": 0,
  1527. "node": {
  1528. "__id__": 35
  1529. },
  1530. "_enabled": true,
  1531. "_materials": [
  1532. {
  1533. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1534. }
  1535. ],
  1536. "_srcBlendFactor": 770,
  1537. "_dstBlendFactor": 771,
  1538. "_spriteFrame": {
  1539. "__uuid__": "e89b6424-6e0e-40c6-a616-825520889cf9"
  1540. },
  1541. "_type": 0,
  1542. "_sizeMode": 1,
  1543. "_fillType": 0,
  1544. "_fillCenter": {
  1545. "__type__": "cc.Vec2",
  1546. "x": 0,
  1547. "y": 0
  1548. },
  1549. "_fillStart": 0,
  1550. "_fillRange": 0,
  1551. "_isTrimmedMode": true,
  1552. "_atlas": {
  1553. "__uuid__": "23645516-1e5d-4004-8d4a-0059dc01a9e6"
  1554. },
  1555. "_id": ""
  1556. },
  1557. {
  1558. "__type__": "ddbf3/ydj5JQ5BheoGAThK5",
  1559. "_name": "",
  1560. "_objFlags": 0,
  1561. "node": {
  1562. "__id__": 35
  1563. },
  1564. "_enabled": true,
  1565. "_id": ""
  1566. },
  1567. {
  1568. "__type__": "cc.PrefabInfo",
  1569. "root": {
  1570. "__id__": 1
  1571. },
  1572. "asset": {
  1573. "__id__": 0
  1574. },
  1575. "fileId": "7256y4Ke9IHIyaOHNKlrFB",
  1576. "sync": false
  1577. },
  1578. {
  1579. "__type__": "cc.Node",
  1580. "_name": "name",
  1581. "_objFlags": 0,
  1582. "_parent": {
  1583. "__id__": 34
  1584. },
  1585. "_children": [],
  1586. "_active": true,
  1587. "_components": [
  1588. {
  1589. "__id__": 40
  1590. }
  1591. ],
  1592. "_prefab": {
  1593. "__id__": 41
  1594. },
  1595. "_opacity": 255,
  1596. "_color": {
  1597. "__type__": "cc.Color",
  1598. "r": 201,
  1599. "g": 73,
  1600. "b": 36,
  1601. "a": 255
  1602. },
  1603. "_contentSize": {
  1604. "__type__": "cc.Size",
  1605. "width": 132,
  1606. "height": 30.24
  1607. },
  1608. "_anchorPoint": {
  1609. "__type__": "cc.Vec2",
  1610. "x": 0,
  1611. "y": 0.5
  1612. },
  1613. "_trs": {
  1614. "__type__": "TypedArray",
  1615. "ctor": "Float64Array",
  1616. "array": [
  1617. -131.846,
  1618. 0,
  1619. 0,
  1620. 0,
  1621. 0,
  1622. 0,
  1623. 1,
  1624. 1,
  1625. 1,
  1626. 1
  1627. ]
  1628. },
  1629. "_eulerAngles": {
  1630. "__type__": "cc.Vec3",
  1631. "x": 0,
  1632. "y": 0,
  1633. "z": 0
  1634. },
  1635. "_skewX": 0,
  1636. "_skewY": 0,
  1637. "_is3DNode": false,
  1638. "_groupIndex": 0,
  1639. "groupIndex": 0,
  1640. "_id": ""
  1641. },
  1642. {
  1643. "__type__": "cc.Label",
  1644. "_name": "",
  1645. "_objFlags": 0,
  1646. "node": {
  1647. "__id__": 39
  1648. },
  1649. "_enabled": true,
  1650. "_materials": [
  1651. {
  1652. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1653. }
  1654. ],
  1655. "_srcBlendFactor": 770,
  1656. "_dstBlendFactor": 771,
  1657. "_string": "六个字的名字",
  1658. "_N$string": "六个字的名字",
  1659. "_fontSize": 22,
  1660. "_lineHeight": 24,
  1661. "_enableWrapText": false,
  1662. "_N$file": null,
  1663. "_isSystemFontUsed": true,
  1664. "_spacingX": 0,
  1665. "_batchAsBitmap": false,
  1666. "_styleFlags": 0,
  1667. "_underlineHeight": 0,
  1668. "_N$horizontalAlign": 0,
  1669. "_N$verticalAlign": 1,
  1670. "_N$fontFamily": "Arial",
  1671. "_N$overflow": 1,
  1672. "_N$cacheMode": 0,
  1673. "_id": ""
  1674. },
  1675. {
  1676. "__type__": "cc.PrefabInfo",
  1677. "root": {
  1678. "__id__": 1
  1679. },
  1680. "asset": {
  1681. "__id__": 0
  1682. },
  1683. "fileId": "a8jzPvUb5Jf4LZBFDyQ45Y",
  1684. "sync": false
  1685. },
  1686. {
  1687. "__type__": "cc.Node",
  1688. "_name": "status",
  1689. "_objFlags": 0,
  1690. "_parent": {
  1691. "__id__": 34
  1692. },
  1693. "_children": [],
  1694. "_active": true,
  1695. "_components": [
  1696. {
  1697. "__id__": 43
  1698. }
  1699. ],
  1700. "_prefab": {
  1701. "__id__": 44
  1702. },
  1703. "_opacity": 255,
  1704. "_color": {
  1705. "__type__": "cc.Color",
  1706. "r": 255,
  1707. "g": 255,
  1708. "b": 255,
  1709. "a": 255
  1710. },
  1711. "_contentSize": {
  1712. "__type__": "cc.Size",
  1713. "width": 72,
  1714. "height": 29
  1715. },
  1716. "_anchorPoint": {
  1717. "__type__": "cc.Vec2",
  1718. "x": 0.5,
  1719. "y": 0.5
  1720. },
  1721. "_trs": {
  1722. "__type__": "TypedArray",
  1723. "ctor": "Float64Array",
  1724. "array": [
  1725. 55.538,
  1726. 0,
  1727. 0,
  1728. 0,
  1729. 0,
  1730. 0,
  1731. 1,
  1732. 1,
  1733. 1,
  1734. 1
  1735. ]
  1736. },
  1737. "_eulerAngles": {
  1738. "__type__": "cc.Vec3",
  1739. "x": 0,
  1740. "y": 0,
  1741. "z": 0
  1742. },
  1743. "_skewX": 0,
  1744. "_skewY": 0,
  1745. "_is3DNode": false,
  1746. "_groupIndex": 0,
  1747. "groupIndex": 0,
  1748. "_id": ""
  1749. },
  1750. {
  1751. "__type__": "cc.Sprite",
  1752. "_name": "",
  1753. "_objFlags": 0,
  1754. "node": {
  1755. "__id__": 42
  1756. },
  1757. "_enabled": true,
  1758. "_materials": [
  1759. {
  1760. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1761. }
  1762. ],
  1763. "_srcBlendFactor": 770,
  1764. "_dstBlendFactor": 771,
  1765. "_spriteFrame": {
  1766. "__uuid__": "3bc3e0b7-d531-4b3d-a449-2dd18420ff33"
  1767. },
  1768. "_type": 0,
  1769. "_sizeMode": 1,
  1770. "_fillType": 0,
  1771. "_fillCenter": {
  1772. "__type__": "cc.Vec2",
  1773. "x": 0,
  1774. "y": 0
  1775. },
  1776. "_fillStart": 0,
  1777. "_fillRange": 0,
  1778. "_isTrimmedMode": true,
  1779. "_atlas": null,
  1780. "_id": ""
  1781. },
  1782. {
  1783. "__type__": "cc.PrefabInfo",
  1784. "root": {
  1785. "__id__": 1
  1786. },
  1787. "asset": {
  1788. "__id__": 0
  1789. },
  1790. "fileId": "f3HWh8XFlI1KUZfGvM9+Xo",
  1791. "sync": false
  1792. },
  1793. {
  1794. "__type__": "cc.Node",
  1795. "_name": "line",
  1796. "_objFlags": 0,
  1797. "_parent": {
  1798. "__id__": 34
  1799. },
  1800. "_children": [],
  1801. "_active": true,
  1802. "_components": [
  1803. {
  1804. "__id__": 46
  1805. }
  1806. ],
  1807. "_prefab": {
  1808. "__id__": 47
  1809. },
  1810. "_opacity": 255,
  1811. "_color": {
  1812. "__type__": "cc.Color",
  1813. "r": 255,
  1814. "g": 255,
  1815. "b": 255,
  1816. "a": 255
  1817. },
  1818. "_contentSize": {
  1819. "__type__": "cc.Size",
  1820. "width": 450,
  1821. "height": 2
  1822. },
  1823. "_anchorPoint": {
  1824. "__type__": "cc.Vec2",
  1825. "x": 0.5,
  1826. "y": 0.5
  1827. },
  1828. "_trs": {
  1829. "__type__": "TypedArray",
  1830. "ctor": "Float64Array",
  1831. "array": [
  1832. 0,
  1833. -41.983,
  1834. 0,
  1835. 0,
  1836. 0,
  1837. 0,
  1838. 1,
  1839. 1,
  1840. 1,
  1841. 1
  1842. ]
  1843. },
  1844. "_eulerAngles": {
  1845. "__type__": "cc.Vec3",
  1846. "x": 0,
  1847. "y": 0,
  1848. "z": 0
  1849. },
  1850. "_skewX": 0,
  1851. "_skewY": 0,
  1852. "_is3DNode": false,
  1853. "_groupIndex": 0,
  1854. "groupIndex": 0,
  1855. "_id": ""
  1856. },
  1857. {
  1858. "__type__": "cc.Sprite",
  1859. "_name": "",
  1860. "_objFlags": 0,
  1861. "node": {
  1862. "__id__": 45
  1863. },
  1864. "_enabled": true,
  1865. "_materials": [
  1866. {
  1867. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1868. }
  1869. ],
  1870. "_srcBlendFactor": 770,
  1871. "_dstBlendFactor": 771,
  1872. "_spriteFrame": {
  1873. "__uuid__": "23ba32c8-d27b-4fc6-a5b9-6b7ac2d9d63d"
  1874. },
  1875. "_type": 0,
  1876. "_sizeMode": 0,
  1877. "_fillType": 0,
  1878. "_fillCenter": {
  1879. "__type__": "cc.Vec2",
  1880. "x": 0,
  1881. "y": 0
  1882. },
  1883. "_fillStart": 0,
  1884. "_fillRange": 0,
  1885. "_isTrimmedMode": true,
  1886. "_atlas": null,
  1887. "_id": ""
  1888. },
  1889. {
  1890. "__type__": "cc.PrefabInfo",
  1891. "root": {
  1892. "__id__": 1
  1893. },
  1894. "asset": {
  1895. "__id__": 0
  1896. },
  1897. "fileId": "6fg4HOIrNBsr+LwuPxmvnK",
  1898. "sync": false
  1899. },
  1900. {
  1901. "__type__": "cc.Node",
  1902. "_name": "BtInvite",
  1903. "_objFlags": 0,
  1904. "_parent": {
  1905. "__id__": 34
  1906. },
  1907. "_children": [
  1908. {
  1909. "__id__": 49
  1910. }
  1911. ],
  1912. "_active": true,
  1913. "_components": [
  1914. {
  1915. "__id__": 53
  1916. }
  1917. ],
  1918. "_prefab": {
  1919. "__id__": 55
  1920. },
  1921. "_opacity": 255,
  1922. "_color": {
  1923. "__type__": "cc.Color",
  1924. "r": 255,
  1925. "g": 255,
  1926. "b": 255,
  1927. "a": 255
  1928. },
  1929. "_contentSize": {
  1930. "__type__": "cc.Size",
  1931. "width": 122,
  1932. "height": 55
  1933. },
  1934. "_anchorPoint": {
  1935. "__type__": "cc.Vec2",
  1936. "x": 0.5,
  1937. "y": 0.5
  1938. },
  1939. "_trs": {
  1940. "__type__": "TypedArray",
  1941. "ctor": "Float64Array",
  1942. "array": [
  1943. 161.575,
  1944. 0,
  1945. 0,
  1946. 0,
  1947. 0,
  1948. 0,
  1949. 1,
  1950. 1,
  1951. 1,
  1952. 1
  1953. ]
  1954. },
  1955. "_eulerAngles": {
  1956. "__type__": "cc.Vec3",
  1957. "x": 0,
  1958. "y": 0,
  1959. "z": 0
  1960. },
  1961. "_skewX": 0,
  1962. "_skewY": 0,
  1963. "_is3DNode": false,
  1964. "_groupIndex": 0,
  1965. "groupIndex": 0,
  1966. "_id": ""
  1967. },
  1968. {
  1969. "__type__": "cc.Node",
  1970. "_name": "Background",
  1971. "_objFlags": 512,
  1972. "_parent": {
  1973. "__id__": 48
  1974. },
  1975. "_children": [],
  1976. "_active": true,
  1977. "_components": [
  1978. {
  1979. "__id__": 50
  1980. },
  1981. {
  1982. "__id__": 51
  1983. }
  1984. ],
  1985. "_prefab": {
  1986. "__id__": 52
  1987. },
  1988. "_opacity": 255,
  1989. "_color": {
  1990. "__type__": "cc.Color",
  1991. "r": 255,
  1992. "g": 255,
  1993. "b": 255,
  1994. "a": 255
  1995. },
  1996. "_contentSize": {
  1997. "__type__": "cc.Size",
  1998. "width": 122,
  1999. "height": 55
  2000. },
  2001. "_anchorPoint": {
  2002. "__type__": "cc.Vec2",
  2003. "x": 0.5,
  2004. "y": 0.5
  2005. },
  2006. "_trs": {
  2007. "__type__": "TypedArray",
  2008. "ctor": "Float64Array",
  2009. "array": [
  2010. 0,
  2011. 0,
  2012. 0,
  2013. 0,
  2014. 0,
  2015. 0,
  2016. 1,
  2017. 1,
  2018. 1,
  2019. 1
  2020. ]
  2021. },
  2022. "_eulerAngles": {
  2023. "__type__": "cc.Vec3",
  2024. "x": 0,
  2025. "y": 0,
  2026. "z": 0
  2027. },
  2028. "_skewX": 0,
  2029. "_skewY": 0,
  2030. "_is3DNode": false,
  2031. "_groupIndex": 0,
  2032. "groupIndex": 0,
  2033. "_id": ""
  2034. },
  2035. {
  2036. "__type__": "cc.Sprite",
  2037. "_name": "",
  2038. "_objFlags": 0,
  2039. "node": {
  2040. "__id__": 49
  2041. },
  2042. "_enabled": true,
  2043. "_materials": [
  2044. {
  2045. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2046. }
  2047. ],
  2048. "_srcBlendFactor": 770,
  2049. "_dstBlendFactor": 771,
  2050. "_spriteFrame": {
  2051. "__uuid__": "906ff484-3908-41fc-af55-c2607e963944"
  2052. },
  2053. "_type": 1,
  2054. "_sizeMode": 0,
  2055. "_fillType": 0,
  2056. "_fillCenter": {
  2057. "__type__": "cc.Vec2",
  2058. "x": 0,
  2059. "y": 0
  2060. },
  2061. "_fillStart": 0,
  2062. "_fillRange": 0,
  2063. "_isTrimmedMode": true,
  2064. "_atlas": null,
  2065. "_id": ""
  2066. },
  2067. {
  2068. "__type__": "cc.Widget",
  2069. "_name": "",
  2070. "_objFlags": 0,
  2071. "node": {
  2072. "__id__": 49
  2073. },
  2074. "_enabled": true,
  2075. "alignMode": 0,
  2076. "_target": null,
  2077. "_alignFlags": 45,
  2078. "_left": 0,
  2079. "_right": 0,
  2080. "_top": 0,
  2081. "_bottom": 0,
  2082. "_verticalCenter": 0,
  2083. "_horizontalCenter": 0,
  2084. "_isAbsLeft": true,
  2085. "_isAbsRight": true,
  2086. "_isAbsTop": true,
  2087. "_isAbsBottom": true,
  2088. "_isAbsHorizontalCenter": true,
  2089. "_isAbsVerticalCenter": true,
  2090. "_originalWidth": 100,
  2091. "_originalHeight": 40,
  2092. "_id": ""
  2093. },
  2094. {
  2095. "__type__": "cc.PrefabInfo",
  2096. "root": {
  2097. "__id__": 1
  2098. },
  2099. "asset": {
  2100. "__id__": 0
  2101. },
  2102. "fileId": "84H1Cc+DRNs4h6QLh1X7zz",
  2103. "sync": false
  2104. },
  2105. {
  2106. "__type__": "cc.Button",
  2107. "_name": "",
  2108. "_objFlags": 0,
  2109. "node": {
  2110. "__id__": 48
  2111. },
  2112. "_enabled": true,
  2113. "_normalMaterial": {
  2114. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2115. },
  2116. "_grayMaterial": {
  2117. "__uuid__": "3a7bb79f-32fd-422e-ada2-96f518fed422"
  2118. },
  2119. "duration": 0.1,
  2120. "zoomScale": 1.2,
  2121. "clickEvents": [
  2122. {
  2123. "__id__": 54
  2124. }
  2125. ],
  2126. "_N$interactable": true,
  2127. "_N$enableAutoGrayEffect": true,
  2128. "_N$transition": 1,
  2129. "transition": 1,
  2130. "_N$normalColor": {
  2131. "__type__": "cc.Color",
  2132. "r": 255,
  2133. "g": 255,
  2134. "b": 255,
  2135. "a": 255
  2136. },
  2137. "_N$pressedColor": {
  2138. "__type__": "cc.Color",
  2139. "r": 200,
  2140. "g": 200,
  2141. "b": 200,
  2142. "a": 255
  2143. },
  2144. "pressedColor": {
  2145. "__type__": "cc.Color",
  2146. "r": 200,
  2147. "g": 200,
  2148. "b": 200,
  2149. "a": 255
  2150. },
  2151. "_N$hoverColor": {
  2152. "__type__": "cc.Color",
  2153. "r": 255,
  2154. "g": 255,
  2155. "b": 255,
  2156. "a": 255
  2157. },
  2158. "hoverColor": {
  2159. "__type__": "cc.Color",
  2160. "r": 255,
  2161. "g": 255,
  2162. "b": 255,
  2163. "a": 255
  2164. },
  2165. "_N$disabledColor": {
  2166. "__type__": "cc.Color",
  2167. "r": 120,
  2168. "g": 120,
  2169. "b": 120,
  2170. "a": 255
  2171. },
  2172. "_N$normalSprite": {
  2173. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2174. },
  2175. "_N$pressedSprite": {
  2176. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2177. },
  2178. "pressedSprite": {
  2179. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2180. },
  2181. "_N$hoverSprite": {
  2182. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2183. },
  2184. "hoverSprite": {
  2185. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2186. },
  2187. "_N$disabledSprite": {
  2188. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2189. },
  2190. "_N$target": {
  2191. "__id__": 49
  2192. },
  2193. "_id": ""
  2194. },
  2195. {
  2196. "__type__": "cc.ClickEvent",
  2197. "target": {
  2198. "__id__": 34
  2199. },
  2200. "component": "",
  2201. "_componentId": "bf5d10TFB1D9J9IsvXz2e/6",
  2202. "handler": "OnClick_Invite",
  2203. "customEventData": ""
  2204. },
  2205. {
  2206. "__type__": "cc.PrefabInfo",
  2207. "root": {
  2208. "__id__": 1
  2209. },
  2210. "asset": {
  2211. "__id__": 0
  2212. },
  2213. "fileId": "fdD9uiEnhMfoz5NCOIZM+G",
  2214. "sync": false
  2215. },
  2216. {
  2217. "__type__": "cc.Node",
  2218. "_name": "time",
  2219. "_objFlags": 0,
  2220. "_parent": {
  2221. "__id__": 34
  2222. },
  2223. "_children": [],
  2224. "_active": true,
  2225. "_components": [
  2226. {
  2227. "__id__": 57
  2228. }
  2229. ],
  2230. "_prefab": {
  2231. "__id__": 58
  2232. },
  2233. "_opacity": 255,
  2234. "_color": {
  2235. "__type__": "cc.Color",
  2236. "r": 255,
  2237. "g": 255,
  2238. "b": 255,
  2239. "a": 255
  2240. },
  2241. "_contentSize": {
  2242. "__type__": "cc.Size",
  2243. "width": 24.47,
  2244. "height": 30.24
  2245. },
  2246. "_anchorPoint": {
  2247. "__type__": "cc.Vec2",
  2248. "x": 0.5,
  2249. "y": 0.5
  2250. },
  2251. "_trs": {
  2252. "__type__": "TypedArray",
  2253. "ctor": "Float64Array",
  2254. "array": [
  2255. 161.24,
  2256. 0.088,
  2257. 0,
  2258. 0,
  2259. 0,
  2260. 0,
  2261. 1,
  2262. 1,
  2263. 1,
  2264. 1
  2265. ]
  2266. },
  2267. "_eulerAngles": {
  2268. "__type__": "cc.Vec3",
  2269. "x": 0,
  2270. "y": 0,
  2271. "z": 0
  2272. },
  2273. "_skewX": 0,
  2274. "_skewY": 0,
  2275. "_is3DNode": false,
  2276. "_groupIndex": 0,
  2277. "groupIndex": 0,
  2278. "_id": ""
  2279. },
  2280. {
  2281. "__type__": "cc.Label",
  2282. "_name": "",
  2283. "_objFlags": 0,
  2284. "node": {
  2285. "__id__": 56
  2286. },
  2287. "_enabled": true,
  2288. "_materials": [
  2289. {
  2290. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2291. }
  2292. ],
  2293. "_srcBlendFactor": 770,
  2294. "_dstBlendFactor": 771,
  2295. "_string": "99",
  2296. "_N$string": "99",
  2297. "_fontSize": 22,
  2298. "_lineHeight": 24,
  2299. "_enableWrapText": true,
  2300. "_N$file": null,
  2301. "_isSystemFontUsed": true,
  2302. "_spacingX": 0,
  2303. "_batchAsBitmap": false,
  2304. "_styleFlags": 0,
  2305. "_underlineHeight": 0,
  2306. "_N$horizontalAlign": 1,
  2307. "_N$verticalAlign": 1,
  2308. "_N$fontFamily": "Arial",
  2309. "_N$overflow": 0,
  2310. "_N$cacheMode": 0,
  2311. "_id": ""
  2312. },
  2313. {
  2314. "__type__": "cc.PrefabInfo",
  2315. "root": {
  2316. "__id__": 1
  2317. },
  2318. "asset": {
  2319. "__id__": 0
  2320. },
  2321. "fileId": "3er9nPN3FLiLKrjTLLVGRZ",
  2322. "sync": false
  2323. },
  2324. {
  2325. "__type__": "bf5d10TFB1D9J9IsvXz2e/6",
  2326. "_name": "",
  2327. "_objFlags": 0,
  2328. "node": {
  2329. "__id__": 34
  2330. },
  2331. "_enabled": true,
  2332. "_id": ""
  2333. },
  2334. {
  2335. "__type__": "e5b4cMwR9xJS5FMbqdmDi74",
  2336. "_name": "",
  2337. "_objFlags": 0,
  2338. "node": {
  2339. "__id__": 34
  2340. },
  2341. "_enabled": true,
  2342. "m_HeadNode": {
  2343. "__id__": 35
  2344. },
  2345. "m_HeadErr": null,
  2346. "m_SpGender": [],
  2347. "m_LabNick": {
  2348. "__id__": 40
  2349. },
  2350. "m_LabID": null,
  2351. "m_BtKick": null,
  2352. "m_SpGenderstr": null,
  2353. "m_adressStr": null,
  2354. "m_winRateStr": null,
  2355. "m_shootRateStr": null,
  2356. "m_pairingRateStr": null,
  2357. "_id": ""
  2358. },
  2359. {
  2360. "__type__": "cc.PrefabInfo",
  2361. "root": {
  2362. "__id__": 1
  2363. },
  2364. "asset": {
  2365. "__id__": 0
  2366. },
  2367. "fileId": "97PZKyftdOQaTcIqI4RJmP",
  2368. "sync": false
  2369. },
  2370. {
  2371. "__type__": "cc.Layout",
  2372. "_name": "",
  2373. "_objFlags": 0,
  2374. "node": {
  2375. "__id__": 30
  2376. },
  2377. "_enabled": true,
  2378. "_layoutSize": {
  2379. "__type__": "cc.Size",
  2380. "width": 450,
  2381. "height": 80
  2382. },
  2383. "_resize": 1,
  2384. "_N$layoutType": 2,
  2385. "_N$cellSize": {
  2386. "__type__": "cc.Size",
  2387. "width": 40,
  2388. "height": 40
  2389. },
  2390. "_N$startAxis": 0,
  2391. "_N$paddingLeft": 0,
  2392. "_N$paddingRight": 0,
  2393. "_N$paddingTop": 0,
  2394. "_N$paddingBottom": 0,
  2395. "_N$spacingX": 0,
  2396. "_N$spacingY": 5,
  2397. "_N$verticalDirection": 1,
  2398. "_N$horizontalDirection": 0,
  2399. "_N$affectedByScale": false,
  2400. "_id": ""
  2401. },
  2402. {
  2403. "__type__": "cc.PrefabInfo",
  2404. "root": {
  2405. "__id__": 1
  2406. },
  2407. "asset": {
  2408. "__id__": 0
  2409. },
  2410. "fileId": "e3+F0+05VKEYJV7SgrRMCt",
  2411. "sync": false
  2412. },
  2413. {
  2414. "__type__": "cc.Widget",
  2415. "_name": "",
  2416. "_objFlags": 0,
  2417. "node": {
  2418. "__id__": 24
  2419. },
  2420. "_enabled": true,
  2421. "alignMode": 0,
  2422. "_target": null,
  2423. "_alignFlags": 37,
  2424. "_left": 350.07654921020657,
  2425. "_right": 0,
  2426. "_top": 0,
  2427. "_bottom": 0,
  2428. "_verticalCenter": 0,
  2429. "_horizontalCenter": 0,
  2430. "_isAbsLeft": true,
  2431. "_isAbsRight": true,
  2432. "_isAbsTop": true,
  2433. "_isAbsBottom": true,
  2434. "_isAbsHorizontalCenter": true,
  2435. "_isAbsVerticalCenter": true,
  2436. "_originalWidth": 0,
  2437. "_originalHeight": 237,
  2438. "_id": ""
  2439. },
  2440. {
  2441. "__type__": "cc.Sprite",
  2442. "_name": "",
  2443. "_objFlags": 0,
  2444. "node": {
  2445. "__id__": 24
  2446. },
  2447. "_enabled": true,
  2448. "_materials": [
  2449. {
  2450. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2451. }
  2452. ],
  2453. "_srcBlendFactor": 770,
  2454. "_dstBlendFactor": 771,
  2455. "_spriteFrame": {
  2456. "__uuid__": "5fe5dcaa-b513-4dc5-a166-573627b3a159"
  2457. },
  2458. "_type": 1,
  2459. "_sizeMode": 0,
  2460. "_fillType": 0,
  2461. "_fillCenter": {
  2462. "__type__": "cc.Vec2",
  2463. "x": 0,
  2464. "y": 0
  2465. },
  2466. "_fillStart": 0,
  2467. "_fillRange": 0,
  2468. "_isTrimmedMode": true,
  2469. "_atlas": null,
  2470. "_id": ""
  2471. },
  2472. {
  2473. "__type__": "cc.PrefabInfo",
  2474. "root": {
  2475. "__id__": 1
  2476. },
  2477. "asset": {
  2478. "__id__": 0
  2479. },
  2480. "fileId": "52g8i13ytEEKhrAAqZ0+8w",
  2481. "sync": false
  2482. },
  2483. {
  2484. "__type__": "cc.Node",
  2485. "_name": "BtInviteAll",
  2486. "_objFlags": 0,
  2487. "_parent": {
  2488. "__id__": 23
  2489. },
  2490. "_children": [
  2491. {
  2492. "__id__": 68
  2493. }
  2494. ],
  2495. "_active": true,
  2496. "_components": [
  2497. {
  2498. "__id__": 72
  2499. }
  2500. ],
  2501. "_prefab": {
  2502. "__id__": 74
  2503. },
  2504. "_opacity": 255,
  2505. "_color": {
  2506. "__type__": "cc.Color",
  2507. "r": 255,
  2508. "g": 255,
  2509. "b": 255,
  2510. "a": 255
  2511. },
  2512. "_contentSize": {
  2513. "__type__": "cc.Size",
  2514. "width": 175,
  2515. "height": 64
  2516. },
  2517. "_anchorPoint": {
  2518. "__type__": "cc.Vec2",
  2519. "x": 0.5,
  2520. "y": 0.5
  2521. },
  2522. "_trs": {
  2523. "__type__": "TypedArray",
  2524. "ctor": "Float64Array",
  2525. "array": [
  2526. 4.814,
  2527. -285.39,
  2528. 0,
  2529. 0,
  2530. 0,
  2531. 0,
  2532. 1,
  2533. 1,
  2534. 1,
  2535. 1
  2536. ]
  2537. },
  2538. "_eulerAngles": {
  2539. "__type__": "cc.Vec3",
  2540. "x": 0,
  2541. "y": 0,
  2542. "z": 0
  2543. },
  2544. "_skewX": 0,
  2545. "_skewY": 0,
  2546. "_is3DNode": false,
  2547. "_groupIndex": 0,
  2548. "groupIndex": 0,
  2549. "_id": ""
  2550. },
  2551. {
  2552. "__type__": "cc.Node",
  2553. "_name": "Background",
  2554. "_objFlags": 512,
  2555. "_parent": {
  2556. "__id__": 67
  2557. },
  2558. "_children": [],
  2559. "_active": true,
  2560. "_components": [
  2561. {
  2562. "__id__": 69
  2563. },
  2564. {
  2565. "__id__": 70
  2566. }
  2567. ],
  2568. "_prefab": {
  2569. "__id__": 71
  2570. },
  2571. "_opacity": 255,
  2572. "_color": {
  2573. "__type__": "cc.Color",
  2574. "r": 255,
  2575. "g": 255,
  2576. "b": 255,
  2577. "a": 255
  2578. },
  2579. "_contentSize": {
  2580. "__type__": "cc.Size",
  2581. "width": 175,
  2582. "height": 64
  2583. },
  2584. "_anchorPoint": {
  2585. "__type__": "cc.Vec2",
  2586. "x": 0.5,
  2587. "y": 0.5
  2588. },
  2589. "_trs": {
  2590. "__type__": "TypedArray",
  2591. "ctor": "Float64Array",
  2592. "array": [
  2593. 0,
  2594. 0,
  2595. 0,
  2596. 0,
  2597. 0,
  2598. 0,
  2599. 1,
  2600. 1,
  2601. 1,
  2602. 1
  2603. ]
  2604. },
  2605. "_eulerAngles": {
  2606. "__type__": "cc.Vec3",
  2607. "x": 0,
  2608. "y": 0,
  2609. "z": 0
  2610. },
  2611. "_skewX": 0,
  2612. "_skewY": 0,
  2613. "_is3DNode": false,
  2614. "_groupIndex": 0,
  2615. "groupIndex": 0,
  2616. "_id": ""
  2617. },
  2618. {
  2619. "__type__": "cc.Sprite",
  2620. "_name": "",
  2621. "_objFlags": 0,
  2622. "node": {
  2623. "__id__": 68
  2624. },
  2625. "_enabled": true,
  2626. "_materials": [
  2627. {
  2628. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2629. }
  2630. ],
  2631. "_srcBlendFactor": 770,
  2632. "_dstBlendFactor": 771,
  2633. "_spriteFrame": {
  2634. "__uuid__": "1421727c-dfb6-4dfa-91d6-68dfac679952"
  2635. },
  2636. "_type": 1,
  2637. "_sizeMode": 0,
  2638. "_fillType": 0,
  2639. "_fillCenter": {
  2640. "__type__": "cc.Vec2",
  2641. "x": 0,
  2642. "y": 0
  2643. },
  2644. "_fillStart": 0,
  2645. "_fillRange": 0,
  2646. "_isTrimmedMode": true,
  2647. "_atlas": null,
  2648. "_id": ""
  2649. },
  2650. {
  2651. "__type__": "cc.Widget",
  2652. "_name": "",
  2653. "_objFlags": 0,
  2654. "node": {
  2655. "__id__": 68
  2656. },
  2657. "_enabled": true,
  2658. "alignMode": 0,
  2659. "_target": null,
  2660. "_alignFlags": 45,
  2661. "_left": 0,
  2662. "_right": 0,
  2663. "_top": 0,
  2664. "_bottom": 0,
  2665. "_verticalCenter": 0,
  2666. "_horizontalCenter": 0,
  2667. "_isAbsLeft": true,
  2668. "_isAbsRight": true,
  2669. "_isAbsTop": true,
  2670. "_isAbsBottom": true,
  2671. "_isAbsHorizontalCenter": true,
  2672. "_isAbsVerticalCenter": true,
  2673. "_originalWidth": 100,
  2674. "_originalHeight": 40,
  2675. "_id": ""
  2676. },
  2677. {
  2678. "__type__": "cc.PrefabInfo",
  2679. "root": {
  2680. "__id__": 1
  2681. },
  2682. "asset": {
  2683. "__id__": 0
  2684. },
  2685. "fileId": "46AF6wYiJGR4fCDgBW2OYA",
  2686. "sync": false
  2687. },
  2688. {
  2689. "__type__": "cc.Button",
  2690. "_name": "",
  2691. "_objFlags": 0,
  2692. "node": {
  2693. "__id__": 67
  2694. },
  2695. "_enabled": true,
  2696. "_normalMaterial": {
  2697. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2698. },
  2699. "_grayMaterial": null,
  2700. "duration": 0.1,
  2701. "zoomScale": 1.2,
  2702. "clickEvents": [
  2703. {
  2704. "__id__": 73
  2705. }
  2706. ],
  2707. "_N$interactable": true,
  2708. "_N$enableAutoGrayEffect": true,
  2709. "_N$transition": 1,
  2710. "transition": 1,
  2711. "_N$normalColor": {
  2712. "__type__": "cc.Color",
  2713. "r": 255,
  2714. "g": 255,
  2715. "b": 255,
  2716. "a": 255
  2717. },
  2718. "_N$pressedColor": {
  2719. "__type__": "cc.Color",
  2720. "r": 200,
  2721. "g": 200,
  2722. "b": 200,
  2723. "a": 255
  2724. },
  2725. "pressedColor": {
  2726. "__type__": "cc.Color",
  2727. "r": 200,
  2728. "g": 200,
  2729. "b": 200,
  2730. "a": 255
  2731. },
  2732. "_N$hoverColor": {
  2733. "__type__": "cc.Color",
  2734. "r": 255,
  2735. "g": 255,
  2736. "b": 255,
  2737. "a": 255
  2738. },
  2739. "hoverColor": {
  2740. "__type__": "cc.Color",
  2741. "r": 255,
  2742. "g": 255,
  2743. "b": 255,
  2744. "a": 255
  2745. },
  2746. "_N$disabledColor": {
  2747. "__type__": "cc.Color",
  2748. "r": 120,
  2749. "g": 120,
  2750. "b": 120,
  2751. "a": 200
  2752. },
  2753. "_N$normalSprite": {
  2754. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2755. },
  2756. "_N$pressedSprite": {
  2757. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2758. },
  2759. "pressedSprite": {
  2760. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2761. },
  2762. "_N$hoverSprite": {
  2763. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2764. },
  2765. "hoverSprite": {
  2766. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2767. },
  2768. "_N$disabledSprite": {
  2769. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2770. },
  2771. "_N$target": {
  2772. "__id__": 68
  2773. },
  2774. "_id": ""
  2775. },
  2776. {
  2777. "__type__": "cc.ClickEvent",
  2778. "target": {
  2779. "__id__": 1
  2780. },
  2781. "component": "",
  2782. "_componentId": "bf5d10TFB1D9J9IsvXz2e/6",
  2783. "handler": "OnClick_InviteAll",
  2784. "customEventData": ""
  2785. },
  2786. {
  2787. "__type__": "cc.PrefabInfo",
  2788. "root": {
  2789. "__id__": 1
  2790. },
  2791. "asset": {
  2792. "__id__": 0
  2793. },
  2794. "fileId": "85+20IVZ9CA7CEg2+k3hr0",
  2795. "sync": false
  2796. },
  2797. {
  2798. "__type__": "cc.Node",
  2799. "_name": "time",
  2800. "_objFlags": 0,
  2801. "_parent": {
  2802. "__id__": 23
  2803. },
  2804. "_children": [],
  2805. "_active": true,
  2806. "_components": [
  2807. {
  2808. "__id__": 76
  2809. }
  2810. ],
  2811. "_prefab": {
  2812. "__id__": 77
  2813. },
  2814. "_opacity": 255,
  2815. "_color": {
  2816. "__type__": "cc.Color",
  2817. "r": 255,
  2818. "g": 255,
  2819. "b": 255,
  2820. "a": 255
  2821. },
  2822. "_contentSize": {
  2823. "__type__": "cc.Size",
  2824. "width": 24.47,
  2825. "height": 30.24
  2826. },
  2827. "_anchorPoint": {
  2828. "__type__": "cc.Vec2",
  2829. "x": 0.5,
  2830. "y": 0.5
  2831. },
  2832. "_trs": {
  2833. "__type__": "TypedArray",
  2834. "ctor": "Float64Array",
  2835. "array": [
  2836. 10.61,
  2837. -281.455,
  2838. 0,
  2839. 0,
  2840. 0,
  2841. 0,
  2842. 1,
  2843. 1,
  2844. 1,
  2845. 1
  2846. ]
  2847. },
  2848. "_eulerAngles": {
  2849. "__type__": "cc.Vec3",
  2850. "x": 0,
  2851. "y": 0,
  2852. "z": 0
  2853. },
  2854. "_skewX": 0,
  2855. "_skewY": 0,
  2856. "_is3DNode": false,
  2857. "_groupIndex": 0,
  2858. "groupIndex": 0,
  2859. "_id": ""
  2860. },
  2861. {
  2862. "__type__": "cc.Label",
  2863. "_name": "",
  2864. "_objFlags": 0,
  2865. "node": {
  2866. "__id__": 75
  2867. },
  2868. "_enabled": true,
  2869. "_materials": [
  2870. {
  2871. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2872. }
  2873. ],
  2874. "_srcBlendFactor": 770,
  2875. "_dstBlendFactor": 771,
  2876. "_string": "99",
  2877. "_N$string": "99",
  2878. "_fontSize": 22,
  2879. "_lineHeight": 24,
  2880. "_enableWrapText": true,
  2881. "_N$file": null,
  2882. "_isSystemFontUsed": true,
  2883. "_spacingX": 0,
  2884. "_batchAsBitmap": false,
  2885. "_styleFlags": 0,
  2886. "_underlineHeight": 0,
  2887. "_N$horizontalAlign": 1,
  2888. "_N$verticalAlign": 1,
  2889. "_N$fontFamily": "Arial",
  2890. "_N$overflow": 0,
  2891. "_N$cacheMode": 0,
  2892. "_id": ""
  2893. },
  2894. {
  2895. "__type__": "cc.PrefabInfo",
  2896. "root": {
  2897. "__id__": 1
  2898. },
  2899. "asset": {
  2900. "__id__": 0
  2901. },
  2902. "fileId": "aaukFD/xRMhqqydfPKqXSv",
  2903. "sync": false
  2904. },
  2905. {
  2906. "__type__": "cc.Sprite",
  2907. "_name": "",
  2908. "_objFlags": 0,
  2909. "node": {
  2910. "__id__": 23
  2911. },
  2912. "_enabled": true,
  2913. "_materials": [
  2914. {
  2915. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2916. }
  2917. ],
  2918. "_srcBlendFactor": 770,
  2919. "_dstBlendFactor": 771,
  2920. "_spriteFrame": null,
  2921. "_type": 1,
  2922. "_sizeMode": 0,
  2923. "_fillType": 0,
  2924. "_fillCenter": {
  2925. "__type__": "cc.Vec2",
  2926. "x": 0,
  2927. "y": 0
  2928. },
  2929. "_fillStart": 0,
  2930. "_fillRange": 0,
  2931. "_isTrimmedMode": true,
  2932. "_atlas": null,
  2933. "_id": ""
  2934. },
  2935. {
  2936. "__type__": "cc.PrefabInfo",
  2937. "root": {
  2938. "__id__": 1
  2939. },
  2940. "asset": {
  2941. "__id__": 0
  2942. },
  2943. "fileId": "37fwQPiyBOM6bCvzcsAmYF",
  2944. "sync": false
  2945. },
  2946. {
  2947. "__type__": "cc.Widget",
  2948. "_name": "",
  2949. "_objFlags": 0,
  2950. "node": {
  2951. "__id__": 8
  2952. },
  2953. "_enabled": true,
  2954. "alignMode": 1,
  2955. "_target": null,
  2956. "_alignFlags": 8,
  2957. "_left": 0,
  2958. "_right": 0,
  2959. "_top": 0,
  2960. "_bottom": 0,
  2961. "_verticalCenter": 0,
  2962. "_horizontalCenter": 0,
  2963. "_isAbsLeft": true,
  2964. "_isAbsRight": true,
  2965. "_isAbsTop": true,
  2966. "_isAbsBottom": true,
  2967. "_isAbsHorizontalCenter": true,
  2968. "_isAbsVerticalCenter": true,
  2969. "_originalWidth": 0,
  2970. "_originalHeight": 0,
  2971. "_id": ""
  2972. },
  2973. {
  2974. "__type__": "cc.PrefabInfo",
  2975. "root": {
  2976. "__id__": 1
  2977. },
  2978. "asset": {
  2979. "__id__": 0
  2980. },
  2981. "fileId": "a6yeHinv5OeLakmnpfCMY7",
  2982. "sync": false
  2983. },
  2984. {
  2985. "__type__": "667d7cRO4ZHOrbfi0fiHKIF",
  2986. "_name": "",
  2987. "_objFlags": 0,
  2988. "node": {
  2989. "__id__": 1
  2990. },
  2991. "_enabled": true,
  2992. "m_NdLayoutArr": [
  2993. {
  2994. "__id__": 30
  2995. }
  2996. ],
  2997. "_id": ""
  2998. },
  2999. {
  3000. "__type__": "bf5d10TFB1D9J9IsvXz2e/6",
  3001. "_name": "",
  3002. "_objFlags": 0,
  3003. "node": {
  3004. "__id__": 1
  3005. },
  3006. "_enabled": true,
  3007. "_id": ""
  3008. },
  3009. {
  3010. "__type__": "75214xvQAtDAbWtQz4YaW+4",
  3011. "_name": "",
  3012. "_objFlags": 0,
  3013. "node": {
  3014. "__id__": 1
  3015. },
  3016. "_enabled": true,
  3017. "_id": ""
  3018. },
  3019. {
  3020. "__type__": "cc.PrefabInfo",
  3021. "root": {
  3022. "__id__": 1
  3023. },
  3024. "asset": {
  3025. "__id__": 0
  3026. },
  3027. "fileId": "",
  3028. "sync": false
  3029. }
  3030. ]