Service.prefab 52 KB

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