ClubRevenueList&Pre.prefab 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537
  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": "ClubRevenueList&Pre",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. },
  26. {
  27. "__id__": 47
  28. },
  29. {
  30. "__id__": 64
  31. }
  32. ],
  33. "_active": true,
  34. "_components": [
  35. {
  36. "__id__": 95
  37. },
  38. {
  39. "__id__": 96
  40. }
  41. ],
  42. "_prefab": {
  43. "__id__": 97
  44. },
  45. "_opacity": 255,
  46. "_color": {
  47. "__type__": "cc.Color",
  48. "r": 255,
  49. "g": 255,
  50. "b": 255,
  51. "a": 255
  52. },
  53. "_contentSize": {
  54. "__type__": "cc.Size",
  55. "width": 0,
  56. "height": 0
  57. },
  58. "_anchorPoint": {
  59. "__type__": "cc.Vec2",
  60. "x": 0.5,
  61. "y": 0.5
  62. },
  63. "_trs": {
  64. "__type__": "TypedArray",
  65. "ctor": "Float64Array",
  66. "array": [
  67. 0,
  68. 0,
  69. 0,
  70. 0,
  71. 0,
  72. 0,
  73. 1,
  74. 1,
  75. 1,
  76. 1
  77. ]
  78. },
  79. "_eulerAngles": {
  80. "__type__": "cc.Vec3",
  81. "x": 0,
  82. "y": 0,
  83. "z": 0
  84. },
  85. "_skewX": 0,
  86. "_skewY": 0,
  87. "_is3DNode": false,
  88. "_groupIndex": 0,
  89. "groupIndex": 0,
  90. "_id": ""
  91. },
  92. {
  93. "__type__": "cc.Node",
  94. "_name": "NoClick",
  95. "_objFlags": 0,
  96. "_parent": {
  97. "__id__": 1
  98. },
  99. "_children": [],
  100. "_active": true,
  101. "_components": [
  102. {
  103. "__id__": 3
  104. },
  105. {
  106. "__id__": 4
  107. }
  108. ],
  109. "_prefab": {
  110. "__id__": 5
  111. },
  112. "_opacity": 180,
  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": 1665,
  123. "height": 750
  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": true,
  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. "_N$interactable": true,
  205. "_N$enableAutoGrayEffect": false,
  206. "_N$transition": 0,
  207. "transition": 0,
  208. "_N$normalColor": {
  209. "__type__": "cc.Color",
  210. "r": 214,
  211. "g": 214,
  212. "b": 214,
  213. "a": 255
  214. },
  215. "_N$pressedColor": {
  216. "__type__": "cc.Color",
  217. "r": 211,
  218. "g": 211,
  219. "b": 211,
  220. "a": 255
  221. },
  222. "pressedColor": {
  223. "__type__": "cc.Color",
  224. "r": 211,
  225. "g": 211,
  226. "b": 211,
  227. "a": 255
  228. },
  229. "_N$hoverColor": {
  230. "__type__": "cc.Color",
  231. "r": 255,
  232. "g": 255,
  233. "b": 255,
  234. "a": 255
  235. },
  236. "hoverColor": {
  237. "__type__": "cc.Color",
  238. "r": 255,
  239. "g": 255,
  240. "b": 255,
  241. "a": 255
  242. },
  243. "_N$disabledColor": {
  244. "__type__": "cc.Color",
  245. "r": 124,
  246. "g": 124,
  247. "b": 124,
  248. "a": 255
  249. },
  250. "_N$normalSprite": null,
  251. "_N$pressedSprite": null,
  252. "pressedSprite": null,
  253. "_N$hoverSprite": null,
  254. "hoverSprite": null,
  255. "_N$disabledSprite": null,
  256. "_N$target": {
  257. "__id__": 2
  258. },
  259. "_id": ""
  260. },
  261. {
  262. "__type__": "cc.PrefabInfo",
  263. "root": {
  264. "__id__": 1
  265. },
  266. "asset": {
  267. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  268. },
  269. "fileId": "1ckrtJeddKIbN30OrFHvgy",
  270. "sync": false
  271. },
  272. {
  273. "__type__": "cc.Node",
  274. "_name": "BGM",
  275. "_objFlags": 0,
  276. "_parent": {
  277. "__id__": 1
  278. },
  279. "_children": [
  280. {
  281. "__id__": 7
  282. },
  283. {
  284. "__id__": 10
  285. },
  286. {
  287. "__id__": 13
  288. },
  289. {
  290. "__id__": 16
  291. },
  292. {
  293. "__id__": 19
  294. },
  295. {
  296. "__id__": 31
  297. },
  298. {
  299. "__id__": 36
  300. },
  301. {
  302. "__id__": 39
  303. },
  304. {
  305. "__id__": 42
  306. }
  307. ],
  308. "_active": true,
  309. "_components": [
  310. {
  311. "__id__": 45
  312. }
  313. ],
  314. "_prefab": {
  315. "__id__": 46
  316. },
  317. "_opacity": 255,
  318. "_color": {
  319. "__type__": "cc.Color",
  320. "r": 255,
  321. "g": 255,
  322. "b": 255,
  323. "a": 255
  324. },
  325. "_contentSize": {
  326. "__type__": "cc.Size",
  327. "width": 900,
  328. "height": 540
  329. },
  330. "_anchorPoint": {
  331. "__type__": "cc.Vec2",
  332. "x": 0.5,
  333. "y": 0.5
  334. },
  335. "_trs": {
  336. "__type__": "TypedArray",
  337. "ctor": "Float64Array",
  338. "array": [
  339. 0,
  340. 0,
  341. 0,
  342. 0,
  343. 0,
  344. 0,
  345. 1,
  346. 1,
  347. 1,
  348. 1
  349. ]
  350. },
  351. "_eulerAngles": {
  352. "__type__": "cc.Vec3",
  353. "x": 0,
  354. "y": 0,
  355. "z": 0
  356. },
  357. "_skewX": 0,
  358. "_skewY": 0,
  359. "_is3DNode": false,
  360. "_groupIndex": 0,
  361. "groupIndex": 0,
  362. "_id": ""
  363. },
  364. {
  365. "__type__": "cc.Node",
  366. "_name": "YYD",
  367. "_objFlags": 0,
  368. "_parent": {
  369. "__id__": 6
  370. },
  371. "_children": [],
  372. "_active": false,
  373. "_components": [
  374. {
  375. "__id__": 8
  376. }
  377. ],
  378. "_prefab": {
  379. "__id__": 9
  380. },
  381. "_opacity": 255,
  382. "_color": {
  383. "__type__": "cc.Color",
  384. "r": 245,
  385. "g": 186,
  386. "b": 122,
  387. "a": 255
  388. },
  389. "_contentSize": {
  390. "__type__": "cc.Size",
  391. "width": 112,
  392. "height": 30
  393. },
  394. "_anchorPoint": {
  395. "__type__": "cc.Vec2",
  396. "x": 0,
  397. "y": 0.5
  398. },
  399. "_trs": {
  400. "__type__": "TypedArray",
  401. "ctor": "Float64Array",
  402. "array": [
  403. -400,
  404. -476,
  405. 0,
  406. 0,
  407. 0,
  408. 0,
  409. 1,
  410. 1,
  411. 1,
  412. 1
  413. ]
  414. },
  415. "_eulerAngles": {
  416. "__type__": "cc.Vec3",
  417. "x": 0,
  418. "y": 0,
  419. "z": 0
  420. },
  421. "_skewX": 0,
  422. "_skewY": 0,
  423. "_is3DNode": false,
  424. "_groupIndex": 0,
  425. "groupIndex": 0,
  426. "_id": ""
  427. },
  428. {
  429. "__type__": "cc.Label",
  430. "_name": "",
  431. "_objFlags": 0,
  432. "node": {
  433. "__id__": 7
  434. },
  435. "_enabled": true,
  436. "_materials": [],
  437. "_srcBlendFactor": 770,
  438. "_dstBlendFactor": 771,
  439. "_string": "前日积分",
  440. "_N$string": "前日积分",
  441. "_fontSize": 28,
  442. "_lineHeight": 30,
  443. "_enableWrapText": true,
  444. "_N$file": {
  445. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  446. },
  447. "_isSystemFontUsed": false,
  448. "_spacingX": 0,
  449. "_batchAsBitmap": false,
  450. "_styleFlags": 0,
  451. "_underlineHeight": 0,
  452. "_N$horizontalAlign": 1,
  453. "_N$verticalAlign": 1,
  454. "_N$fontFamily": "Arial",
  455. "_N$overflow": 0,
  456. "_N$cacheMode": 0,
  457. "_id": ""
  458. },
  459. {
  460. "__type__": "cc.PrefabInfo",
  461. "root": {
  462. "__id__": 1
  463. },
  464. "asset": {
  465. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  466. },
  467. "fileId": "2e7v+SvFJF8qcCaeOU2bSJ",
  468. "sync": false
  469. },
  470. {
  471. "__type__": "cc.Node",
  472. "_name": "YD",
  473. "_objFlags": 0,
  474. "_parent": {
  475. "__id__": 6
  476. },
  477. "_children": [],
  478. "_active": false,
  479. "_components": [
  480. {
  481. "__id__": 11
  482. }
  483. ],
  484. "_prefab": {
  485. "__id__": 12
  486. },
  487. "_opacity": 255,
  488. "_color": {
  489. "__type__": "cc.Color",
  490. "r": 245,
  491. "g": 186,
  492. "b": 122,
  493. "a": 255
  494. },
  495. "_contentSize": {
  496. "__type__": "cc.Size",
  497. "width": 112,
  498. "height": 30
  499. },
  500. "_anchorPoint": {
  501. "__type__": "cc.Vec2",
  502. "x": 0.5,
  503. "y": 0.5
  504. },
  505. "_trs": {
  506. "__type__": "TypedArray",
  507. "ctor": "Float64Array",
  508. "array": [
  509. 0,
  510. -476,
  511. 0,
  512. 0,
  513. 0,
  514. 0,
  515. 1,
  516. 1,
  517. 1,
  518. 1
  519. ]
  520. },
  521. "_eulerAngles": {
  522. "__type__": "cc.Vec3",
  523. "x": 0,
  524. "y": 0,
  525. "z": 0
  526. },
  527. "_skewX": 0,
  528. "_skewY": 0,
  529. "_is3DNode": false,
  530. "_groupIndex": 0,
  531. "groupIndex": 0,
  532. "_id": ""
  533. },
  534. {
  535. "__type__": "cc.Label",
  536. "_name": "",
  537. "_objFlags": 0,
  538. "node": {
  539. "__id__": 10
  540. },
  541. "_enabled": true,
  542. "_materials": [],
  543. "_srcBlendFactor": 770,
  544. "_dstBlendFactor": 771,
  545. "_string": "昨日积分",
  546. "_N$string": "昨日积分",
  547. "_fontSize": 28,
  548. "_lineHeight": 30,
  549. "_enableWrapText": true,
  550. "_N$file": {
  551. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  552. },
  553. "_isSystemFontUsed": false,
  554. "_spacingX": 0,
  555. "_batchAsBitmap": false,
  556. "_styleFlags": 0,
  557. "_underlineHeight": 0,
  558. "_N$horizontalAlign": 1,
  559. "_N$verticalAlign": 1,
  560. "_N$fontFamily": "Arial",
  561. "_N$overflow": 0,
  562. "_N$cacheMode": 0,
  563. "_id": ""
  564. },
  565. {
  566. "__type__": "cc.PrefabInfo",
  567. "root": {
  568. "__id__": 1
  569. },
  570. "asset": {
  571. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  572. },
  573. "fileId": "b0ssA/IrhM8J5PUbh2k66F",
  574. "sync": false
  575. },
  576. {
  577. "__type__": "cc.Node",
  578. "_name": "TD",
  579. "_objFlags": 0,
  580. "_parent": {
  581. "__id__": 6
  582. },
  583. "_children": [],
  584. "_active": false,
  585. "_components": [
  586. {
  587. "__id__": 14
  588. }
  589. ],
  590. "_prefab": {
  591. "__id__": 15
  592. },
  593. "_opacity": 255,
  594. "_color": {
  595. "__type__": "cc.Color",
  596. "r": 245,
  597. "g": 186,
  598. "b": 122,
  599. "a": 255
  600. },
  601. "_contentSize": {
  602. "__type__": "cc.Size",
  603. "width": 112,
  604. "height": 30
  605. },
  606. "_anchorPoint": {
  607. "__type__": "cc.Vec2",
  608. "x": 1,
  609. "y": 0.5
  610. },
  611. "_trs": {
  612. "__type__": "TypedArray",
  613. "ctor": "Float64Array",
  614. "array": [
  615. 400,
  616. -476,
  617. 0,
  618. 0,
  619. 0,
  620. 0,
  621. 1,
  622. 1,
  623. 1,
  624. 1
  625. ]
  626. },
  627. "_eulerAngles": {
  628. "__type__": "cc.Vec3",
  629. "x": 0,
  630. "y": 0,
  631. "z": 0
  632. },
  633. "_skewX": 0,
  634. "_skewY": 0,
  635. "_is3DNode": false,
  636. "_groupIndex": 0,
  637. "groupIndex": 0,
  638. "_id": ""
  639. },
  640. {
  641. "__type__": "cc.Label",
  642. "_name": "",
  643. "_objFlags": 0,
  644. "node": {
  645. "__id__": 13
  646. },
  647. "_enabled": true,
  648. "_materials": [],
  649. "_srcBlendFactor": 770,
  650. "_dstBlendFactor": 771,
  651. "_string": "今日积分",
  652. "_N$string": "今日积分",
  653. "_fontSize": 28,
  654. "_lineHeight": 30,
  655. "_enableWrapText": true,
  656. "_N$file": {
  657. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  658. },
  659. "_isSystemFontUsed": false,
  660. "_spacingX": 0,
  661. "_batchAsBitmap": false,
  662. "_styleFlags": 0,
  663. "_underlineHeight": 0,
  664. "_N$horizontalAlign": 1,
  665. "_N$verticalAlign": 1,
  666. "_N$fontFamily": "Arial",
  667. "_N$overflow": 0,
  668. "_N$cacheMode": 0,
  669. "_id": ""
  670. },
  671. {
  672. "__type__": "cc.PrefabInfo",
  673. "root": {
  674. "__id__": 1
  675. },
  676. "asset": {
  677. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  678. },
  679. "fileId": "ebp5OYU6FFLLU8KdInp85T",
  680. "sync": false
  681. },
  682. {
  683. "__type__": "cc.Node",
  684. "_name": "BG-d",
  685. "_objFlags": 0,
  686. "_parent": {
  687. "__id__": 6
  688. },
  689. "_children": [],
  690. "_active": true,
  691. "_components": [
  692. {
  693. "__id__": 17
  694. }
  695. ],
  696. "_prefab": {
  697. "__id__": 18
  698. },
  699. "_opacity": 255,
  700. "_color": {
  701. "__type__": "cc.Color",
  702. "r": 255,
  703. "g": 255,
  704. "b": 255,
  705. "a": 255
  706. },
  707. "_contentSize": {
  708. "__type__": "cc.Size",
  709. "width": 880,
  710. "height": 520
  711. },
  712. "_anchorPoint": {
  713. "__type__": "cc.Vec2",
  714. "x": 0.5,
  715. "y": 0.5
  716. },
  717. "_trs": {
  718. "__type__": "TypedArray",
  719. "ctor": "Float64Array",
  720. "array": [
  721. 0,
  722. 0,
  723. 0,
  724. 0,
  725. 0,
  726. 0,
  727. 1,
  728. 1,
  729. 1,
  730. 1
  731. ]
  732. },
  733. "_eulerAngles": {
  734. "__type__": "cc.Vec3",
  735. "x": 0,
  736. "y": 0,
  737. "z": 0
  738. },
  739. "_skewX": 0,
  740. "_skewY": 0,
  741. "_is3DNode": false,
  742. "_groupIndex": 0,
  743. "groupIndex": 0,
  744. "_id": ""
  745. },
  746. {
  747. "__type__": "cc.Sprite",
  748. "_name": "",
  749. "_objFlags": 0,
  750. "node": {
  751. "__id__": 16
  752. },
  753. "_enabled": true,
  754. "_materials": [
  755. {
  756. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  757. }
  758. ],
  759. "_srcBlendFactor": 770,
  760. "_dstBlendFactor": 771,
  761. "_spriteFrame": null,
  762. "_type": 1,
  763. "_sizeMode": 0,
  764. "_fillType": 0,
  765. "_fillCenter": {
  766. "__type__": "cc.Vec2",
  767. "x": 0,
  768. "y": 0
  769. },
  770. "_fillStart": 0,
  771. "_fillRange": 0,
  772. "_isTrimmedMode": true,
  773. "_atlas": null,
  774. "_id": ""
  775. },
  776. {
  777. "__type__": "cc.PrefabInfo",
  778. "root": {
  779. "__id__": 1
  780. },
  781. "asset": {
  782. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  783. },
  784. "fileId": "87nZRDnttABqiHw41BHCRX",
  785. "sync": false
  786. },
  787. {
  788. "__type__": "cc.Node",
  789. "_name": "BGT",
  790. "_objFlags": 0,
  791. "_parent": {
  792. "__id__": 6
  793. },
  794. "_children": [
  795. {
  796. "__id__": 20
  797. },
  798. {
  799. "__id__": 23
  800. },
  801. {
  802. "__id__": 26
  803. }
  804. ],
  805. "_active": true,
  806. "_components": [
  807. {
  808. "__id__": 29
  809. }
  810. ],
  811. "_prefab": {
  812. "__id__": 30
  813. },
  814. "_opacity": 255,
  815. "_color": {
  816. "__type__": "cc.Color",
  817. "r": 255,
  818. "g": 255,
  819. "b": 255,
  820. "a": 255
  821. },
  822. "_contentSize": {
  823. "__type__": "cc.Size",
  824. "width": 877,
  825. "height": 60
  826. },
  827. "_anchorPoint": {
  828. "__type__": "cc.Vec2",
  829. "x": 0.5,
  830. "y": 0.5
  831. },
  832. "_trs": {
  833. "__type__": "TypedArray",
  834. "ctor": "Float64Array",
  835. "array": [
  836. 0,
  837. 232,
  838. 0,
  839. 0,
  840. 0,
  841. 0,
  842. 1,
  843. 1,
  844. 1,
  845. 1
  846. ]
  847. },
  848. "_eulerAngles": {
  849. "__type__": "cc.Vec3",
  850. "x": 0,
  851. "y": 0,
  852. "z": 0
  853. },
  854. "_skewX": 0,
  855. "_skewY": 0,
  856. "_is3DNode": false,
  857. "_groupIndex": 0,
  858. "groupIndex": 0,
  859. "_id": ""
  860. },
  861. {
  862. "__type__": "cc.Node",
  863. "_name": "guang",
  864. "_objFlags": 0,
  865. "_parent": {
  866. "__id__": 19
  867. },
  868. "_children": [],
  869. "_active": true,
  870. "_components": [
  871. {
  872. "__id__": 21
  873. }
  874. ],
  875. "_prefab": {
  876. "__id__": 22
  877. },
  878. "_opacity": 255,
  879. "_color": {
  880. "__type__": "cc.Color",
  881. "r": 255,
  882. "g": 255,
  883. "b": 255,
  884. "a": 255
  885. },
  886. "_contentSize": {
  887. "__type__": "cc.Size",
  888. "width": 308,
  889. "height": 5
  890. },
  891. "_anchorPoint": {
  892. "__type__": "cc.Vec2",
  893. "x": 0.5,
  894. "y": 0.5
  895. },
  896. "_trs": {
  897. "__type__": "TypedArray",
  898. "ctor": "Float64Array",
  899. "array": [
  900. -207,
  901. 39.2,
  902. 0,
  903. 0,
  904. 0,
  905. 0,
  906. 1,
  907. 1,
  908. 1,
  909. 1
  910. ]
  911. },
  912. "_eulerAngles": {
  913. "__type__": "cc.Vec3",
  914. "x": 0,
  915. "y": 0,
  916. "z": 0
  917. },
  918. "_skewX": 0,
  919. "_skewY": 0,
  920. "_is3DNode": false,
  921. "_groupIndex": 0,
  922. "groupIndex": 0,
  923. "_id": ""
  924. },
  925. {
  926. "__type__": "cc.Sprite",
  927. "_name": "",
  928. "_objFlags": 0,
  929. "node": {
  930. "__id__": 20
  931. },
  932. "_enabled": true,
  933. "_materials": [
  934. {
  935. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  936. }
  937. ],
  938. "_srcBlendFactor": 770,
  939. "_dstBlendFactor": 771,
  940. "_spriteFrame": null,
  941. "_type": 0,
  942. "_sizeMode": 1,
  943. "_fillType": 0,
  944. "_fillCenter": {
  945. "__type__": "cc.Vec2",
  946. "x": 0,
  947. "y": 0
  948. },
  949. "_fillStart": 0,
  950. "_fillRange": 0,
  951. "_isTrimmedMode": true,
  952. "_atlas": null,
  953. "_id": ""
  954. },
  955. {
  956. "__type__": "cc.PrefabInfo",
  957. "root": {
  958. "__id__": 1
  959. },
  960. "asset": {
  961. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  962. },
  963. "fileId": "84otWgeL9NTrC/uJJAwSC9",
  964. "sync": false
  965. },
  966. {
  967. "__type__": "cc.Node",
  968. "_name": "guang2",
  969. "_objFlags": 0,
  970. "_parent": {
  971. "__id__": 19
  972. },
  973. "_children": [],
  974. "_active": true,
  975. "_components": [
  976. {
  977. "__id__": 24
  978. }
  979. ],
  980. "_prefab": {
  981. "__id__": 25
  982. },
  983. "_opacity": 255,
  984. "_color": {
  985. "__type__": "cc.Color",
  986. "r": 255,
  987. "g": 255,
  988. "b": 255,
  989. "a": 255
  990. },
  991. "_contentSize": {
  992. "__type__": "cc.Size",
  993. "width": 410,
  994. "height": 5
  995. },
  996. "_anchorPoint": {
  997. "__type__": "cc.Vec2",
  998. "x": 0.5,
  999. "y": 0.5
  1000. },
  1001. "_trs": {
  1002. "__type__": "TypedArray",
  1003. "ctor": "Float64Array",
  1004. "array": [
  1005. 142,
  1006. -496,
  1007. 0,
  1008. 0,
  1009. 0,
  1010. 0,
  1011. 1,
  1012. 1,
  1013. 1,
  1014. 1
  1015. ]
  1016. },
  1017. "_eulerAngles": {
  1018. "__type__": "cc.Vec3",
  1019. "x": 0,
  1020. "y": 0,
  1021. "z": 0
  1022. },
  1023. "_skewX": 0,
  1024. "_skewY": 0,
  1025. "_is3DNode": false,
  1026. "_groupIndex": 0,
  1027. "groupIndex": 0,
  1028. "_id": ""
  1029. },
  1030. {
  1031. "__type__": "cc.Sprite",
  1032. "_name": "",
  1033. "_objFlags": 0,
  1034. "node": {
  1035. "__id__": 23
  1036. },
  1037. "_enabled": true,
  1038. "_materials": [
  1039. {
  1040. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1041. }
  1042. ],
  1043. "_srcBlendFactor": 770,
  1044. "_dstBlendFactor": 771,
  1045. "_spriteFrame": null,
  1046. "_type": 0,
  1047. "_sizeMode": 1,
  1048. "_fillType": 0,
  1049. "_fillCenter": {
  1050. "__type__": "cc.Vec2",
  1051. "x": 0,
  1052. "y": 0
  1053. },
  1054. "_fillStart": 0,
  1055. "_fillRange": 0,
  1056. "_isTrimmedMode": true,
  1057. "_atlas": null,
  1058. "_id": ""
  1059. },
  1060. {
  1061. "__type__": "cc.PrefabInfo",
  1062. "root": {
  1063. "__id__": 1
  1064. },
  1065. "asset": {
  1066. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  1067. },
  1068. "fileId": "3delrnxiVHJ5fBEgrRR6Tm",
  1069. "sync": false
  1070. },
  1071. {
  1072. "__type__": "cc.Node",
  1073. "_name": "TRevenueList",
  1074. "_objFlags": 0,
  1075. "_parent": {
  1076. "__id__": 19
  1077. },
  1078. "_children": [],
  1079. "_active": true,
  1080. "_components": [
  1081. {
  1082. "__id__": 27
  1083. }
  1084. ],
  1085. "_prefab": {
  1086. "__id__": 28
  1087. },
  1088. "_opacity": 255,
  1089. "_color": {
  1090. "__type__": "cc.Color",
  1091. "r": 255,
  1092. "g": 255,
  1093. "b": 255,
  1094. "a": 255
  1095. },
  1096. "_contentSize": {
  1097. "__type__": "cc.Size",
  1098. "width": 310,
  1099. "height": 85
  1100. },
  1101. "_anchorPoint": {
  1102. "__type__": "cc.Vec2",
  1103. "x": 0.5,
  1104. "y": 0.5
  1105. },
  1106. "_trs": {
  1107. "__type__": "TypedArray",
  1108. "ctor": "Float64Array",
  1109. "array": [
  1110. 0,
  1111. 14.2,
  1112. 0,
  1113. 0,
  1114. 0,
  1115. 0,
  1116. 1,
  1117. 1,
  1118. 1,
  1119. 1
  1120. ]
  1121. },
  1122. "_eulerAngles": {
  1123. "__type__": "cc.Vec3",
  1124. "x": 0,
  1125. "y": 0,
  1126. "z": 0
  1127. },
  1128. "_skewX": 0,
  1129. "_skewY": 0,
  1130. "_is3DNode": false,
  1131. "_groupIndex": 0,
  1132. "groupIndex": 0,
  1133. "_id": ""
  1134. },
  1135. {
  1136. "__type__": "cc.Sprite",
  1137. "_name": "",
  1138. "_objFlags": 0,
  1139. "node": {
  1140. "__id__": 26
  1141. },
  1142. "_enabled": true,
  1143. "_materials": [
  1144. {
  1145. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1146. }
  1147. ],
  1148. "_srcBlendFactor": 770,
  1149. "_dstBlendFactor": 771,
  1150. "_spriteFrame": {
  1151. "__uuid__": "677f3c8b-6a9f-43a5-8602-8b36b6abbca7"
  1152. },
  1153. "_type": 0,
  1154. "_sizeMode": 1,
  1155. "_fillType": 0,
  1156. "_fillCenter": {
  1157. "__type__": "cc.Vec2",
  1158. "x": 0,
  1159. "y": 0
  1160. },
  1161. "_fillStart": 0,
  1162. "_fillRange": 0,
  1163. "_isTrimmedMode": true,
  1164. "_atlas": null,
  1165. "_id": ""
  1166. },
  1167. {
  1168. "__type__": "cc.PrefabInfo",
  1169. "root": {
  1170. "__id__": 1
  1171. },
  1172. "asset": {
  1173. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  1174. },
  1175. "fileId": "9aJLsRep1I84a9UG3UTePb",
  1176. "sync": false
  1177. },
  1178. {
  1179. "__type__": "cc.Sprite",
  1180. "_name": "",
  1181. "_objFlags": 0,
  1182. "node": {
  1183. "__id__": 19
  1184. },
  1185. "_enabled": true,
  1186. "_materials": [
  1187. {
  1188. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1189. }
  1190. ],
  1191. "_srcBlendFactor": 770,
  1192. "_dstBlendFactor": 771,
  1193. "_spriteFrame": null,
  1194. "_type": 1,
  1195. "_sizeMode": 0,
  1196. "_fillType": 0,
  1197. "_fillCenter": {
  1198. "__type__": "cc.Vec2",
  1199. "x": 0,
  1200. "y": 0
  1201. },
  1202. "_fillStart": 0,
  1203. "_fillRange": 0,
  1204. "_isTrimmedMode": true,
  1205. "_atlas": null,
  1206. "_id": ""
  1207. },
  1208. {
  1209. "__type__": "cc.PrefabInfo",
  1210. "root": {
  1211. "__id__": 1
  1212. },
  1213. "asset": {
  1214. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  1215. },
  1216. "fileId": "2ask5bl7pPVK3HObgyiWu9",
  1217. "sync": false
  1218. },
  1219. {
  1220. "__type__": "cc.Node",
  1221. "_name": "BtCloseDlg",
  1222. "_objFlags": 0,
  1223. "_parent": {
  1224. "__id__": 6
  1225. },
  1226. "_children": [],
  1227. "_active": true,
  1228. "_components": [
  1229. {
  1230. "__id__": 32
  1231. },
  1232. {
  1233. "__id__": 33
  1234. }
  1235. ],
  1236. "_prefab": {
  1237. "__id__": 35
  1238. },
  1239. "_opacity": 255,
  1240. "_color": {
  1241. "__type__": "cc.Color",
  1242. "r": 255,
  1243. "g": 255,
  1244. "b": 255,
  1245. "a": 255
  1246. },
  1247. "_contentSize": {
  1248. "__type__": "cc.Size",
  1249. "width": 75,
  1250. "height": 80
  1251. },
  1252. "_anchorPoint": {
  1253. "__type__": "cc.Vec2",
  1254. "x": 0.5,
  1255. "y": 0.5
  1256. },
  1257. "_trs": {
  1258. "__type__": "TypedArray",
  1259. "ctor": "Float64Array",
  1260. "array": [
  1261. 416.8,
  1262. 242.9,
  1263. 0,
  1264. 0,
  1265. 0,
  1266. 0,
  1267. 1,
  1268. 1,
  1269. 1,
  1270. 1
  1271. ]
  1272. },
  1273. "_eulerAngles": {
  1274. "__type__": "cc.Vec3",
  1275. "x": 0,
  1276. "y": 0,
  1277. "z": 0
  1278. },
  1279. "_skewX": 0,
  1280. "_skewY": 0,
  1281. "_is3DNode": false,
  1282. "_groupIndex": 0,
  1283. "groupIndex": 0,
  1284. "_id": ""
  1285. },
  1286. {
  1287. "__type__": "cc.Sprite",
  1288. "_name": "",
  1289. "_objFlags": 0,
  1290. "node": {
  1291. "__id__": 31
  1292. },
  1293. "_enabled": true,
  1294. "_materials": [
  1295. {
  1296. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1297. }
  1298. ],
  1299. "_srcBlendFactor": 770,
  1300. "_dstBlendFactor": 771,
  1301. "_spriteFrame": null,
  1302. "_type": 0,
  1303. "_sizeMode": 1,
  1304. "_fillType": 0,
  1305. "_fillCenter": {
  1306. "__type__": "cc.Vec2",
  1307. "x": 0,
  1308. "y": 0
  1309. },
  1310. "_fillStart": 0,
  1311. "_fillRange": 0,
  1312. "_isTrimmedMode": true,
  1313. "_atlas": null,
  1314. "_id": ""
  1315. },
  1316. {
  1317. "__type__": "cc.Button",
  1318. "_name": "",
  1319. "_objFlags": 0,
  1320. "node": {
  1321. "__id__": 31
  1322. },
  1323. "_enabled": true,
  1324. "_normalMaterial": null,
  1325. "_grayMaterial": null,
  1326. "duration": 0,
  1327. "zoomScale": 1.2,
  1328. "clickEvents": [
  1329. {
  1330. "__id__": 34
  1331. }
  1332. ],
  1333. "_N$interactable": true,
  1334. "_N$enableAutoGrayEffect": false,
  1335. "_N$transition": 1,
  1336. "transition": 1,
  1337. "_N$normalColor": {
  1338. "__type__": "cc.Color",
  1339. "r": 255,
  1340. "g": 255,
  1341. "b": 255,
  1342. "a": 255
  1343. },
  1344. "_N$pressedColor": {
  1345. "__type__": "cc.Color",
  1346. "r": 180,
  1347. "g": 180,
  1348. "b": 180,
  1349. "a": 255
  1350. },
  1351. "pressedColor": {
  1352. "__type__": "cc.Color",
  1353. "r": 180,
  1354. "g": 180,
  1355. "b": 180,
  1356. "a": 255
  1357. },
  1358. "_N$hoverColor": {
  1359. "__type__": "cc.Color",
  1360. "r": 255,
  1361. "g": 255,
  1362. "b": 255,
  1363. "a": 255
  1364. },
  1365. "hoverColor": {
  1366. "__type__": "cc.Color",
  1367. "r": 255,
  1368. "g": 255,
  1369. "b": 255,
  1370. "a": 255
  1371. },
  1372. "_N$disabledColor": {
  1373. "__type__": "cc.Color",
  1374. "r": 255,
  1375. "g": 255,
  1376. "b": 255,
  1377. "a": 255
  1378. },
  1379. "_N$normalSprite": null,
  1380. "_N$pressedSprite": null,
  1381. "pressedSprite": null,
  1382. "_N$hoverSprite": null,
  1383. "hoverSprite": null,
  1384. "_N$disabledSprite": null,
  1385. "_N$target": {
  1386. "__id__": 31
  1387. },
  1388. "_id": ""
  1389. },
  1390. {
  1391. "__type__": "cc.ClickEvent",
  1392. "target": {
  1393. "__id__": 1
  1394. },
  1395. "component": "",
  1396. "_componentId": "1c038tuKz9DyK5MlR5uYfwn",
  1397. "handler": "HideView",
  1398. "customEventData": ""
  1399. },
  1400. {
  1401. "__type__": "cc.PrefabInfo",
  1402. "root": {
  1403. "__id__": 1
  1404. },
  1405. "asset": {
  1406. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  1407. },
  1408. "fileId": "c5AU2Hvk1MHoXm6GguGdLt",
  1409. "sync": false
  1410. },
  1411. {
  1412. "__type__": "cc.Node",
  1413. "_name": "BG3",
  1414. "_objFlags": 0,
  1415. "_parent": {
  1416. "__id__": 6
  1417. },
  1418. "_children": [],
  1419. "_active": true,
  1420. "_components": [
  1421. {
  1422. "__id__": 37
  1423. }
  1424. ],
  1425. "_prefab": {
  1426. "__id__": 38
  1427. },
  1428. "_opacity": 255,
  1429. "_color": {
  1430. "__type__": "cc.Color",
  1431. "r": 255,
  1432. "g": 255,
  1433. "b": 255,
  1434. "a": 255
  1435. },
  1436. "_contentSize": {
  1437. "__type__": "cc.Size",
  1438. "width": 860,
  1439. "height": 450
  1440. },
  1441. "_anchorPoint": {
  1442. "__type__": "cc.Vec2",
  1443. "x": 0.5,
  1444. "y": 0.5
  1445. },
  1446. "_trs": {
  1447. "__type__": "TypedArray",
  1448. "ctor": "Float64Array",
  1449. "array": [
  1450. 0,
  1451. -25.7,
  1452. 0,
  1453. 0,
  1454. 0,
  1455. 0,
  1456. 1,
  1457. 1,
  1458. 1,
  1459. 1
  1460. ]
  1461. },
  1462. "_eulerAngles": {
  1463. "__type__": "cc.Vec3",
  1464. "x": 0,
  1465. "y": 0,
  1466. "z": 0
  1467. },
  1468. "_skewX": 0,
  1469. "_skewY": 0,
  1470. "_is3DNode": false,
  1471. "_groupIndex": 0,
  1472. "groupIndex": 0,
  1473. "_id": ""
  1474. },
  1475. {
  1476. "__type__": "cc.Sprite",
  1477. "_name": "",
  1478. "_objFlags": 0,
  1479. "node": {
  1480. "__id__": 36
  1481. },
  1482. "_enabled": true,
  1483. "_materials": [
  1484. {
  1485. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1486. }
  1487. ],
  1488. "_srcBlendFactor": 770,
  1489. "_dstBlendFactor": 771,
  1490. "_spriteFrame": null,
  1491. "_type": 1,
  1492. "_sizeMode": 0,
  1493. "_fillType": 0,
  1494. "_fillCenter": {
  1495. "__type__": "cc.Vec2",
  1496. "x": 0,
  1497. "y": 0
  1498. },
  1499. "_fillStart": 0,
  1500. "_fillRange": 0,
  1501. "_isTrimmedMode": true,
  1502. "_atlas": null,
  1503. "_id": ""
  1504. },
  1505. {
  1506. "__type__": "cc.PrefabInfo",
  1507. "root": {
  1508. "__id__": 1
  1509. },
  1510. "asset": {
  1511. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  1512. },
  1513. "fileId": "6d7keRujNMeY4MxjmHigOP",
  1514. "sync": false
  1515. },
  1516. {
  1517. "__type__": "cc.Node",
  1518. "_name": "BG1",
  1519. "_objFlags": 0,
  1520. "_parent": {
  1521. "__id__": 6
  1522. },
  1523. "_children": [],
  1524. "_active": true,
  1525. "_components": [
  1526. {
  1527. "__id__": 40
  1528. }
  1529. ],
  1530. "_prefab": {
  1531. "__id__": 41
  1532. },
  1533. "_opacity": 255,
  1534. "_color": {
  1535. "__type__": "cc.Color",
  1536. "r": 255,
  1537. "g": 255,
  1538. "b": 255,
  1539. "a": 255
  1540. },
  1541. "_contentSize": {
  1542. "__type__": "cc.Size",
  1543. "width": 856,
  1544. "height": 440
  1545. },
  1546. "_anchorPoint": {
  1547. "__type__": "cc.Vec2",
  1548. "x": 0.5,
  1549. "y": 0.5
  1550. },
  1551. "_trs": {
  1552. "__type__": "TypedArray",
  1553. "ctor": "Float64Array",
  1554. "array": [
  1555. 0,
  1556. -28.5,
  1557. 0,
  1558. 0,
  1559. 0,
  1560. 0,
  1561. 1,
  1562. 1,
  1563. 1,
  1564. 1
  1565. ]
  1566. },
  1567. "_eulerAngles": {
  1568. "__type__": "cc.Vec3",
  1569. "x": 0,
  1570. "y": 0,
  1571. "z": 0
  1572. },
  1573. "_skewX": 0,
  1574. "_skewY": 0,
  1575. "_is3DNode": false,
  1576. "_groupIndex": 0,
  1577. "groupIndex": 0,
  1578. "_id": ""
  1579. },
  1580. {
  1581. "__type__": "cc.Sprite",
  1582. "_name": "",
  1583. "_objFlags": 0,
  1584. "node": {
  1585. "__id__": 39
  1586. },
  1587. "_enabled": true,
  1588. "_materials": [
  1589. {
  1590. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1591. }
  1592. ],
  1593. "_srcBlendFactor": 770,
  1594. "_dstBlendFactor": 771,
  1595. "_spriteFrame": null,
  1596. "_type": 1,
  1597. "_sizeMode": 0,
  1598. "_fillType": 0,
  1599. "_fillCenter": {
  1600. "__type__": "cc.Vec2",
  1601. "x": 0,
  1602. "y": 0
  1603. },
  1604. "_fillStart": 0,
  1605. "_fillRange": 0,
  1606. "_isTrimmedMode": true,
  1607. "_atlas": null,
  1608. "_id": ""
  1609. },
  1610. {
  1611. "__type__": "cc.PrefabInfo",
  1612. "root": {
  1613. "__id__": 1
  1614. },
  1615. "asset": {
  1616. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  1617. },
  1618. "fileId": "3eFqkYcPBBh71zYotKlyOZ",
  1619. "sync": false
  1620. },
  1621. {
  1622. "__type__": "cc.Node",
  1623. "_name": "BGTitle2",
  1624. "_objFlags": 0,
  1625. "_parent": {
  1626. "__id__": 6
  1627. },
  1628. "_children": [],
  1629. "_active": true,
  1630. "_components": [
  1631. {
  1632. "__id__": 43
  1633. }
  1634. ],
  1635. "_prefab": {
  1636. "__id__": 44
  1637. },
  1638. "_opacity": 255,
  1639. "_color": {
  1640. "__type__": "cc.Color",
  1641. "r": 255,
  1642. "g": 255,
  1643. "b": 255,
  1644. "a": 255
  1645. },
  1646. "_contentSize": {
  1647. "__type__": "cc.Size",
  1648. "width": 856,
  1649. "height": 54
  1650. },
  1651. "_anchorPoint": {
  1652. "__type__": "cc.Vec2",
  1653. "x": 0.5,
  1654. "y": 0.5
  1655. },
  1656. "_trs": {
  1657. "__type__": "TypedArray",
  1658. "ctor": "Float64Array",
  1659. "array": [
  1660. 0,
  1661. 167.6,
  1662. 0,
  1663. 0,
  1664. 0,
  1665. 0,
  1666. 1,
  1667. 1,
  1668. 1,
  1669. 1
  1670. ]
  1671. },
  1672. "_eulerAngles": {
  1673. "__type__": "cc.Vec3",
  1674. "x": 0,
  1675. "y": 0,
  1676. "z": 0
  1677. },
  1678. "_skewX": 0,
  1679. "_skewY": 0,
  1680. "_is3DNode": false,
  1681. "_groupIndex": 0,
  1682. "groupIndex": 0,
  1683. "_id": ""
  1684. },
  1685. {
  1686. "__type__": "cc.Sprite",
  1687. "_name": "",
  1688. "_objFlags": 0,
  1689. "node": {
  1690. "__id__": 42
  1691. },
  1692. "_enabled": true,
  1693. "_materials": [
  1694. {
  1695. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1696. }
  1697. ],
  1698. "_srcBlendFactor": 770,
  1699. "_dstBlendFactor": 771,
  1700. "_spriteFrame": null,
  1701. "_type": 1,
  1702. "_sizeMode": 0,
  1703. "_fillType": 0,
  1704. "_fillCenter": {
  1705. "__type__": "cc.Vec2",
  1706. "x": 0,
  1707. "y": 0
  1708. },
  1709. "_fillStart": 0,
  1710. "_fillRange": 0,
  1711. "_isTrimmedMode": true,
  1712. "_atlas": null,
  1713. "_id": ""
  1714. },
  1715. {
  1716. "__type__": "cc.PrefabInfo",
  1717. "root": {
  1718. "__id__": 1
  1719. },
  1720. "asset": {
  1721. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  1722. },
  1723. "fileId": "caT2lYWodMq4qJ6tEAw3u0",
  1724. "sync": false
  1725. },
  1726. {
  1727. "__type__": "cc.Sprite",
  1728. "_name": "",
  1729. "_objFlags": 0,
  1730. "node": {
  1731. "__id__": 6
  1732. },
  1733. "_enabled": true,
  1734. "_materials": [
  1735. {
  1736. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1737. }
  1738. ],
  1739. "_srcBlendFactor": 770,
  1740. "_dstBlendFactor": 771,
  1741. "_spriteFrame": null,
  1742. "_type": 1,
  1743. "_sizeMode": 0,
  1744. "_fillType": 0,
  1745. "_fillCenter": {
  1746. "__type__": "cc.Vec2",
  1747. "x": 0,
  1748. "y": 0
  1749. },
  1750. "_fillStart": 0,
  1751. "_fillRange": 0,
  1752. "_isTrimmedMode": true,
  1753. "_atlas": null,
  1754. "_id": ""
  1755. },
  1756. {
  1757. "__type__": "cc.PrefabInfo",
  1758. "root": {
  1759. "__id__": 1
  1760. },
  1761. "asset": {
  1762. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  1763. },
  1764. "fileId": "7c4UUQsFJFZ6Ch2BxyWcvb",
  1765. "sync": false
  1766. },
  1767. {
  1768. "__type__": "cc.Node",
  1769. "_name": "Top",
  1770. "_objFlags": 0,
  1771. "_parent": {
  1772. "__id__": 1
  1773. },
  1774. "_children": [
  1775. {
  1776. "__id__": 48
  1777. },
  1778. {
  1779. "__id__": 51
  1780. },
  1781. {
  1782. "__id__": 54
  1783. },
  1784. {
  1785. "__id__": 57
  1786. },
  1787. {
  1788. "__id__": 60
  1789. }
  1790. ],
  1791. "_active": true,
  1792. "_components": [],
  1793. "_prefab": {
  1794. "__id__": 63
  1795. },
  1796. "_opacity": 255,
  1797. "_color": {
  1798. "__type__": "cc.Color",
  1799. "r": 255,
  1800. "g": 255,
  1801. "b": 255,
  1802. "a": 255
  1803. },
  1804. "_contentSize": {
  1805. "__type__": "cc.Size",
  1806. "width": 833,
  1807. "height": 58
  1808. },
  1809. "_anchorPoint": {
  1810. "__type__": "cc.Vec2",
  1811. "x": 0.5,
  1812. "y": 0.5
  1813. },
  1814. "_trs": {
  1815. "__type__": "TypedArray",
  1816. "ctor": "Float64Array",
  1817. "array": [
  1818. 18,
  1819. 168,
  1820. 0,
  1821. 0,
  1822. 0,
  1823. 0,
  1824. 1,
  1825. 1,
  1826. 1,
  1827. 1
  1828. ]
  1829. },
  1830. "_eulerAngles": {
  1831. "__type__": "cc.Vec3",
  1832. "x": 0,
  1833. "y": 0,
  1834. "z": 0
  1835. },
  1836. "_skewX": 0,
  1837. "_skewY": 0,
  1838. "_is3DNode": false,
  1839. "_groupIndex": 0,
  1840. "groupIndex": 0,
  1841. "_id": ""
  1842. },
  1843. {
  1844. "__type__": "cc.Node",
  1845. "_name": "Label",
  1846. "_objFlags": 0,
  1847. "_parent": {
  1848. "__id__": 47
  1849. },
  1850. "_children": [],
  1851. "_active": true,
  1852. "_components": [
  1853. {
  1854. "__id__": 49
  1855. }
  1856. ],
  1857. "_prefab": {
  1858. "__id__": 50
  1859. },
  1860. "_opacity": 255,
  1861. "_color": {
  1862. "__type__": "cc.Color",
  1863. "r": 181,
  1864. "g": 71,
  1865. "b": 36,
  1866. "a": 255
  1867. },
  1868. "_contentSize": {
  1869. "__type__": "cc.Size",
  1870. "width": 75,
  1871. "height": 34.02
  1872. },
  1873. "_anchorPoint": {
  1874. "__type__": "cc.Vec2",
  1875. "x": 0.5,
  1876. "y": 0.5
  1877. },
  1878. "_trs": {
  1879. "__type__": "TypedArray",
  1880. "ctor": "Float64Array",
  1881. "array": [
  1882. -339,
  1883. 0,
  1884. 0,
  1885. 0,
  1886. 0,
  1887. 0,
  1888. 1,
  1889. 1,
  1890. 1,
  1891. 1
  1892. ]
  1893. },
  1894. "_eulerAngles": {
  1895. "__type__": "cc.Vec3",
  1896. "x": 0,
  1897. "y": 0,
  1898. "z": 0
  1899. },
  1900. "_skewX": 0,
  1901. "_skewY": 0,
  1902. "_is3DNode": false,
  1903. "_groupIndex": 0,
  1904. "groupIndex": 0,
  1905. "_id": ""
  1906. },
  1907. {
  1908. "__type__": "cc.Label",
  1909. "_name": "",
  1910. "_objFlags": 0,
  1911. "node": {
  1912. "__id__": 48
  1913. },
  1914. "_enabled": true,
  1915. "_materials": [
  1916. {
  1917. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1918. }
  1919. ],
  1920. "_srcBlendFactor": 770,
  1921. "_dstBlendFactor": 771,
  1922. "_string": "玩家ID",
  1923. "_N$string": "玩家ID",
  1924. "_fontSize": 25,
  1925. "_lineHeight": 27,
  1926. "_enableWrapText": true,
  1927. "_N$file": {
  1928. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  1929. },
  1930. "_isSystemFontUsed": false,
  1931. "_spacingX": 0,
  1932. "_batchAsBitmap": false,
  1933. "_styleFlags": 0,
  1934. "_underlineHeight": 0,
  1935. "_N$horizontalAlign": 1,
  1936. "_N$verticalAlign": 1,
  1937. "_N$fontFamily": "Arial",
  1938. "_N$overflow": 0,
  1939. "_N$cacheMode": 0,
  1940. "_id": ""
  1941. },
  1942. {
  1943. "__type__": "cc.PrefabInfo",
  1944. "root": {
  1945. "__id__": 1
  1946. },
  1947. "asset": {
  1948. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  1949. },
  1950. "fileId": "6cVEVFVrhAjJcOSQirxbex",
  1951. "sync": false
  1952. },
  1953. {
  1954. "__type__": "cc.Node",
  1955. "_name": "Label",
  1956. "_objFlags": 0,
  1957. "_parent": {
  1958. "__id__": 47
  1959. },
  1960. "_children": [],
  1961. "_active": true,
  1962. "_components": [
  1963. {
  1964. "__id__": 52
  1965. }
  1966. ],
  1967. "_prefab": {
  1968. "__id__": 53
  1969. },
  1970. "_opacity": 255,
  1971. "_color": {
  1972. "__type__": "cc.Color",
  1973. "r": 181,
  1974. "g": 71,
  1975. "b": 36,
  1976. "a": 255
  1977. },
  1978. "_contentSize": {
  1979. "__type__": "cc.Size",
  1980. "width": 50,
  1981. "height": 34.02
  1982. },
  1983. "_anchorPoint": {
  1984. "__type__": "cc.Vec2",
  1985. "x": 0.5,
  1986. "y": 0.5
  1987. },
  1988. "_trs": {
  1989. "__type__": "TypedArray",
  1990. "ctor": "Float64Array",
  1991. "array": [
  1992. -159,
  1993. 0,
  1994. 0,
  1995. 0,
  1996. 0,
  1997. 0,
  1998. 1,
  1999. 1,
  2000. 1,
  2001. 1
  2002. ]
  2003. },
  2004. "_eulerAngles": {
  2005. "__type__": "cc.Vec3",
  2006. "x": 0,
  2007. "y": 0,
  2008. "z": 0
  2009. },
  2010. "_skewX": 0,
  2011. "_skewY": 0,
  2012. "_is3DNode": false,
  2013. "_groupIndex": 0,
  2014. "groupIndex": 0,
  2015. "_id": ""
  2016. },
  2017. {
  2018. "__type__": "cc.Label",
  2019. "_name": "",
  2020. "_objFlags": 0,
  2021. "node": {
  2022. "__id__": 51
  2023. },
  2024. "_enabled": true,
  2025. "_materials": [
  2026. {
  2027. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2028. }
  2029. ],
  2030. "_srcBlendFactor": 770,
  2031. "_dstBlendFactor": 771,
  2032. "_string": "昵稱",
  2033. "_N$string": "昵稱",
  2034. "_fontSize": 25,
  2035. "_lineHeight": 27,
  2036. "_enableWrapText": true,
  2037. "_N$file": {
  2038. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2039. },
  2040. "_isSystemFontUsed": false,
  2041. "_spacingX": 0,
  2042. "_batchAsBitmap": false,
  2043. "_styleFlags": 0,
  2044. "_underlineHeight": 0,
  2045. "_N$horizontalAlign": 1,
  2046. "_N$verticalAlign": 1,
  2047. "_N$fontFamily": "Arial",
  2048. "_N$overflow": 0,
  2049. "_N$cacheMode": 0,
  2050. "_id": ""
  2051. },
  2052. {
  2053. "__type__": "cc.PrefabInfo",
  2054. "root": {
  2055. "__id__": 1
  2056. },
  2057. "asset": {
  2058. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  2059. },
  2060. "fileId": "76e1TG48RFVYIoo76Wc8Qt",
  2061. "sync": false
  2062. },
  2063. {
  2064. "__type__": "cc.Node",
  2065. "_name": "Label",
  2066. "_objFlags": 0,
  2067. "_parent": {
  2068. "__id__": 47
  2069. },
  2070. "_children": [],
  2071. "_active": true,
  2072. "_components": [
  2073. {
  2074. "__id__": 55
  2075. }
  2076. ],
  2077. "_prefab": {
  2078. "__id__": 56
  2079. },
  2080. "_opacity": 255,
  2081. "_color": {
  2082. "__type__": "cc.Color",
  2083. "r": 181,
  2084. "g": 71,
  2085. "b": 36,
  2086. "a": 255
  2087. },
  2088. "_contentSize": {
  2089. "__type__": "cc.Size",
  2090. "width": 100,
  2091. "height": 34.02
  2092. },
  2093. "_anchorPoint": {
  2094. "__type__": "cc.Vec2",
  2095. "x": 0.5,
  2096. "y": 0.5
  2097. },
  2098. "_trs": {
  2099. "__type__": "TypedArray",
  2100. "ctor": "Float64Array",
  2101. "array": [
  2102. 39,
  2103. 0,
  2104. 0,
  2105. 0,
  2106. 0,
  2107. 0,
  2108. 1,
  2109. 1,
  2110. 1,
  2111. 1
  2112. ]
  2113. },
  2114. "_eulerAngles": {
  2115. "__type__": "cc.Vec3",
  2116. "x": 0,
  2117. "y": 0,
  2118. "z": 0
  2119. },
  2120. "_skewX": 0,
  2121. "_skewY": 0,
  2122. "_is3DNode": false,
  2123. "_groupIndex": 0,
  2124. "groupIndex": 0,
  2125. "_id": ""
  2126. },
  2127. {
  2128. "__type__": "cc.Label",
  2129. "_name": "",
  2130. "_objFlags": 0,
  2131. "node": {
  2132. "__id__": 54
  2133. },
  2134. "_enabled": true,
  2135. "_materials": [
  2136. {
  2137. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2138. }
  2139. ],
  2140. "_srcBlendFactor": 770,
  2141. "_dstBlendFactor": 771,
  2142. "_string": "前日積分",
  2143. "_N$string": "前日積分",
  2144. "_fontSize": 25,
  2145. "_lineHeight": 27,
  2146. "_enableWrapText": true,
  2147. "_N$file": {
  2148. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2149. },
  2150. "_isSystemFontUsed": false,
  2151. "_spacingX": 0,
  2152. "_batchAsBitmap": false,
  2153. "_styleFlags": 0,
  2154. "_underlineHeight": 0,
  2155. "_N$horizontalAlign": 1,
  2156. "_N$verticalAlign": 1,
  2157. "_N$fontFamily": "Arial",
  2158. "_N$overflow": 0,
  2159. "_N$cacheMode": 0,
  2160. "_id": ""
  2161. },
  2162. {
  2163. "__type__": "cc.PrefabInfo",
  2164. "root": {
  2165. "__id__": 1
  2166. },
  2167. "asset": {
  2168. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  2169. },
  2170. "fileId": "7fQz/yaVBBFLxZ8+3nXq/4",
  2171. "sync": false
  2172. },
  2173. {
  2174. "__type__": "cc.Node",
  2175. "_name": "Label",
  2176. "_objFlags": 0,
  2177. "_parent": {
  2178. "__id__": 47
  2179. },
  2180. "_children": [],
  2181. "_active": true,
  2182. "_components": [
  2183. {
  2184. "__id__": 58
  2185. }
  2186. ],
  2187. "_prefab": {
  2188. "__id__": 59
  2189. },
  2190. "_opacity": 255,
  2191. "_color": {
  2192. "__type__": "cc.Color",
  2193. "r": 181,
  2194. "g": 71,
  2195. "b": 36,
  2196. "a": 255
  2197. },
  2198. "_contentSize": {
  2199. "__type__": "cc.Size",
  2200. "width": 100,
  2201. "height": 34.02
  2202. },
  2203. "_anchorPoint": {
  2204. "__type__": "cc.Vec2",
  2205. "x": 0.5,
  2206. "y": 0.5
  2207. },
  2208. "_trs": {
  2209. "__type__": "TypedArray",
  2210. "ctor": "Float64Array",
  2211. "array": [
  2212. 204,
  2213. 0,
  2214. 0,
  2215. 0,
  2216. 0,
  2217. 0,
  2218. 1,
  2219. 1,
  2220. 1,
  2221. 1
  2222. ]
  2223. },
  2224. "_eulerAngles": {
  2225. "__type__": "cc.Vec3",
  2226. "x": 0,
  2227. "y": 0,
  2228. "z": 0
  2229. },
  2230. "_skewX": 0,
  2231. "_skewY": 0,
  2232. "_is3DNode": false,
  2233. "_groupIndex": 0,
  2234. "groupIndex": 0,
  2235. "_id": ""
  2236. },
  2237. {
  2238. "__type__": "cc.Label",
  2239. "_name": "",
  2240. "_objFlags": 0,
  2241. "node": {
  2242. "__id__": 57
  2243. },
  2244. "_enabled": true,
  2245. "_materials": [
  2246. {
  2247. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2248. }
  2249. ],
  2250. "_srcBlendFactor": 770,
  2251. "_dstBlendFactor": 771,
  2252. "_string": "昨日積分",
  2253. "_N$string": "昨日積分",
  2254. "_fontSize": 25,
  2255. "_lineHeight": 27,
  2256. "_enableWrapText": true,
  2257. "_N$file": {
  2258. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2259. },
  2260. "_isSystemFontUsed": false,
  2261. "_spacingX": 0,
  2262. "_batchAsBitmap": false,
  2263. "_styleFlags": 0,
  2264. "_underlineHeight": 0,
  2265. "_N$horizontalAlign": 1,
  2266. "_N$verticalAlign": 1,
  2267. "_N$fontFamily": "Arial",
  2268. "_N$overflow": 0,
  2269. "_N$cacheMode": 0,
  2270. "_id": ""
  2271. },
  2272. {
  2273. "__type__": "cc.PrefabInfo",
  2274. "root": {
  2275. "__id__": 1
  2276. },
  2277. "asset": {
  2278. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  2279. },
  2280. "fileId": "34XfVoIyRLn7taW5M92RXa",
  2281. "sync": false
  2282. },
  2283. {
  2284. "__type__": "cc.Node",
  2285. "_name": "Label",
  2286. "_objFlags": 0,
  2287. "_parent": {
  2288. "__id__": 47
  2289. },
  2290. "_children": [],
  2291. "_active": true,
  2292. "_components": [
  2293. {
  2294. "__id__": 61
  2295. }
  2296. ],
  2297. "_prefab": {
  2298. "__id__": 62
  2299. },
  2300. "_opacity": 255,
  2301. "_color": {
  2302. "__type__": "cc.Color",
  2303. "r": 181,
  2304. "g": 71,
  2305. "b": 36,
  2306. "a": 255
  2307. },
  2308. "_contentSize": {
  2309. "__type__": "cc.Size",
  2310. "width": 100,
  2311. "height": 34.02
  2312. },
  2313. "_anchorPoint": {
  2314. "__type__": "cc.Vec2",
  2315. "x": 0.5,
  2316. "y": 0.5
  2317. },
  2318. "_trs": {
  2319. "__type__": "TypedArray",
  2320. "ctor": "Float64Array",
  2321. "array": [
  2322. 349,
  2323. 0,
  2324. 0,
  2325. 0,
  2326. 0,
  2327. 0,
  2328. 1,
  2329. 1,
  2330. 1,
  2331. 1
  2332. ]
  2333. },
  2334. "_eulerAngles": {
  2335. "__type__": "cc.Vec3",
  2336. "x": 0,
  2337. "y": 0,
  2338. "z": 0
  2339. },
  2340. "_skewX": 0,
  2341. "_skewY": 0,
  2342. "_is3DNode": false,
  2343. "_groupIndex": 0,
  2344. "groupIndex": 0,
  2345. "_id": ""
  2346. },
  2347. {
  2348. "__type__": "cc.Label",
  2349. "_name": "",
  2350. "_objFlags": 0,
  2351. "node": {
  2352. "__id__": 60
  2353. },
  2354. "_enabled": true,
  2355. "_materials": [
  2356. {
  2357. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2358. }
  2359. ],
  2360. "_srcBlendFactor": 770,
  2361. "_dstBlendFactor": 771,
  2362. "_string": "今日積分",
  2363. "_N$string": "今日積分",
  2364. "_fontSize": 25,
  2365. "_lineHeight": 27,
  2366. "_enableWrapText": true,
  2367. "_N$file": {
  2368. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2369. },
  2370. "_isSystemFontUsed": false,
  2371. "_spacingX": 0,
  2372. "_batchAsBitmap": false,
  2373. "_styleFlags": 0,
  2374. "_underlineHeight": 0,
  2375. "_N$horizontalAlign": 1,
  2376. "_N$verticalAlign": 1,
  2377. "_N$fontFamily": "Arial",
  2378. "_N$overflow": 0,
  2379. "_N$cacheMode": 0,
  2380. "_id": ""
  2381. },
  2382. {
  2383. "__type__": "cc.PrefabInfo",
  2384. "root": {
  2385. "__id__": 1
  2386. },
  2387. "asset": {
  2388. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  2389. },
  2390. "fileId": "91UcS2cntHubjB6uJnJK8p",
  2391. "sync": false
  2392. },
  2393. {
  2394. "__type__": "cc.PrefabInfo",
  2395. "root": {
  2396. "__id__": 1
  2397. },
  2398. "asset": {
  2399. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  2400. },
  2401. "fileId": "9eBn2HgclCT6DcZFKz6Mt7",
  2402. "sync": false
  2403. },
  2404. {
  2405. "__type__": "cc.Node",
  2406. "_name": "ScrollView",
  2407. "_objFlags": 0,
  2408. "_parent": {
  2409. "__id__": 1
  2410. },
  2411. "_children": [
  2412. {
  2413. "__id__": 65
  2414. }
  2415. ],
  2416. "_active": true,
  2417. "_components": [
  2418. {
  2419. "__id__": 93
  2420. }
  2421. ],
  2422. "_prefab": {
  2423. "__id__": 94
  2424. },
  2425. "_opacity": 255,
  2426. "_color": {
  2427. "__type__": "cc.Color",
  2428. "r": 255,
  2429. "g": 255,
  2430. "b": 255,
  2431. "a": 255
  2432. },
  2433. "_contentSize": {
  2434. "__type__": "cc.Size",
  2435. "width": 850,
  2436. "height": 384
  2437. },
  2438. "_anchorPoint": {
  2439. "__type__": "cc.Vec2",
  2440. "x": 0.5,
  2441. "y": 0.5
  2442. },
  2443. "_trs": {
  2444. "__type__": "TypedArray",
  2445. "ctor": "Float64Array",
  2446. "array": [
  2447. 0,
  2448. -50,
  2449. 0,
  2450. 0,
  2451. 0,
  2452. 0,
  2453. 1,
  2454. 1,
  2455. 1,
  2456. 1
  2457. ]
  2458. },
  2459. "_eulerAngles": {
  2460. "__type__": "cc.Vec3",
  2461. "x": 0,
  2462. "y": 0,
  2463. "z": 0
  2464. },
  2465. "_skewX": 0,
  2466. "_skewY": 0,
  2467. "_is3DNode": false,
  2468. "_groupIndex": 0,
  2469. "groupIndex": 0,
  2470. "_id": ""
  2471. },
  2472. {
  2473. "__type__": "cc.Node",
  2474. "_name": "view",
  2475. "_objFlags": 0,
  2476. "_parent": {
  2477. "__id__": 64
  2478. },
  2479. "_children": [
  2480. {
  2481. "__id__": 66
  2482. }
  2483. ],
  2484. "_active": true,
  2485. "_components": [
  2486. {
  2487. "__id__": 91
  2488. }
  2489. ],
  2490. "_prefab": {
  2491. "__id__": 92
  2492. },
  2493. "_opacity": 255,
  2494. "_color": {
  2495. "__type__": "cc.Color",
  2496. "r": 255,
  2497. "g": 255,
  2498. "b": 255,
  2499. "a": 255
  2500. },
  2501. "_contentSize": {
  2502. "__type__": "cc.Size",
  2503. "width": 850,
  2504. "height": 384
  2505. },
  2506. "_anchorPoint": {
  2507. "__type__": "cc.Vec2",
  2508. "x": 0.5,
  2509. "y": 0.5
  2510. },
  2511. "_trs": {
  2512. "__type__": "TypedArray",
  2513. "ctor": "Float64Array",
  2514. "array": [
  2515. 0,
  2516. 0,
  2517. 0,
  2518. 0,
  2519. 0,
  2520. 0,
  2521. 1,
  2522. 1,
  2523. 1,
  2524. 1
  2525. ]
  2526. },
  2527. "_eulerAngles": {
  2528. "__type__": "cc.Vec3",
  2529. "x": 0,
  2530. "y": 0,
  2531. "z": 0
  2532. },
  2533. "_skewX": 0,
  2534. "_skewY": 0,
  2535. "_is3DNode": false,
  2536. "_groupIndex": 0,
  2537. "groupIndex": 0,
  2538. "_id": ""
  2539. },
  2540. {
  2541. "__type__": "cc.Node",
  2542. "_name": "content",
  2543. "_objFlags": 0,
  2544. "_parent": {
  2545. "__id__": 65
  2546. },
  2547. "_children": [
  2548. {
  2549. "__id__": 67
  2550. }
  2551. ],
  2552. "_active": true,
  2553. "_components": [
  2554. {
  2555. "__id__": 89
  2556. }
  2557. ],
  2558. "_prefab": {
  2559. "__id__": 90
  2560. },
  2561. "_opacity": 255,
  2562. "_color": {
  2563. "__type__": "cc.Color",
  2564. "r": 255,
  2565. "g": 255,
  2566. "b": 255,
  2567. "a": 255
  2568. },
  2569. "_contentSize": {
  2570. "__type__": "cc.Size",
  2571. "width": 1230,
  2572. "height": 50
  2573. },
  2574. "_anchorPoint": {
  2575. "__type__": "cc.Vec2",
  2576. "x": 0.5,
  2577. "y": 1
  2578. },
  2579. "_trs": {
  2580. "__type__": "TypedArray",
  2581. "ctor": "Float64Array",
  2582. "array": [
  2583. 0,
  2584. 192,
  2585. 0,
  2586. 0,
  2587. 0,
  2588. 0,
  2589. 1,
  2590. 1,
  2591. 1,
  2592. 1
  2593. ]
  2594. },
  2595. "_eulerAngles": {
  2596. "__type__": "cc.Vec3",
  2597. "x": 0,
  2598. "y": 0,
  2599. "z": 0
  2600. },
  2601. "_skewX": 0,
  2602. "_skewY": 0,
  2603. "_is3DNode": false,
  2604. "_groupIndex": 0,
  2605. "groupIndex": 0,
  2606. "_id": ""
  2607. },
  2608. {
  2609. "__type__": "cc.Node",
  2610. "_name": "RevenueItem",
  2611. "_objFlags": 0,
  2612. "_parent": {
  2613. "__id__": 66
  2614. },
  2615. "_children": [
  2616. {
  2617. "__id__": 68
  2618. },
  2619. {
  2620. "__id__": 71
  2621. },
  2622. {
  2623. "__id__": 74
  2624. },
  2625. {
  2626. "__id__": 77
  2627. },
  2628. {
  2629. "__id__": 80
  2630. },
  2631. {
  2632. "__id__": 83
  2633. }
  2634. ],
  2635. "_active": true,
  2636. "_components": [
  2637. {
  2638. "__id__": 86
  2639. },
  2640. {
  2641. "__id__": 87
  2642. }
  2643. ],
  2644. "_prefab": {
  2645. "__id__": 88
  2646. },
  2647. "_opacity": 255,
  2648. "_color": {
  2649. "__type__": "cc.Color",
  2650. "r": 255,
  2651. "g": 255,
  2652. "b": 255,
  2653. "a": 255
  2654. },
  2655. "_contentSize": {
  2656. "__type__": "cc.Size",
  2657. "width": 1230,
  2658. "height": 50
  2659. },
  2660. "_anchorPoint": {
  2661. "__type__": "cc.Vec2",
  2662. "x": 0.5,
  2663. "y": 0.5
  2664. },
  2665. "_trs": {
  2666. "__type__": "TypedArray",
  2667. "ctor": "Float64Array",
  2668. "array": [
  2669. 0,
  2670. -25,
  2671. 0,
  2672. 0,
  2673. 0,
  2674. 0,
  2675. 1,
  2676. 1,
  2677. 1,
  2678. 1
  2679. ]
  2680. },
  2681. "_eulerAngles": {
  2682. "__type__": "cc.Vec3",
  2683. "x": 0,
  2684. "y": 0,
  2685. "z": 0
  2686. },
  2687. "_skewX": 0,
  2688. "_skewY": 0,
  2689. "_is3DNode": false,
  2690. "_groupIndex": 0,
  2691. "groupIndex": 0,
  2692. "_id": ""
  2693. },
  2694. {
  2695. "__type__": "cc.Node",
  2696. "_name": "LbID",
  2697. "_objFlags": 0,
  2698. "_parent": {
  2699. "__id__": 67
  2700. },
  2701. "_children": [],
  2702. "_active": true,
  2703. "_components": [
  2704. {
  2705. "__id__": 69
  2706. }
  2707. ],
  2708. "_prefab": {
  2709. "__id__": 70
  2710. },
  2711. "_opacity": 255,
  2712. "_color": {
  2713. "__type__": "cc.Color",
  2714. "r": 181,
  2715. "g": 71,
  2716. "b": 36,
  2717. "a": 255
  2718. },
  2719. "_contentSize": {
  2720. "__type__": "cc.Size",
  2721. "width": 75,
  2722. "height": 34.02
  2723. },
  2724. "_anchorPoint": {
  2725. "__type__": "cc.Vec2",
  2726. "x": 0.5,
  2727. "y": 0.5
  2728. },
  2729. "_trs": {
  2730. "__type__": "TypedArray",
  2731. "ctor": "Float64Array",
  2732. "array": [
  2733. -323,
  2734. 0,
  2735. 0,
  2736. 0,
  2737. 0,
  2738. 0,
  2739. 1,
  2740. 1,
  2741. 1,
  2742. 1
  2743. ]
  2744. },
  2745. "_eulerAngles": {
  2746. "__type__": "cc.Vec3",
  2747. "x": 0,
  2748. "y": 0,
  2749. "z": 0
  2750. },
  2751. "_skewX": 0,
  2752. "_skewY": 0,
  2753. "_is3DNode": false,
  2754. "_groupIndex": 0,
  2755. "groupIndex": 0,
  2756. "_id": ""
  2757. },
  2758. {
  2759. "__type__": "cc.Label",
  2760. "_name": "",
  2761. "_objFlags": 0,
  2762. "node": {
  2763. "__id__": 68
  2764. },
  2765. "_enabled": true,
  2766. "_materials": [
  2767. {
  2768. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2769. }
  2770. ],
  2771. "_srcBlendFactor": 770,
  2772. "_dstBlendFactor": 771,
  2773. "_string": "123456",
  2774. "_N$string": "123456",
  2775. "_fontSize": 25,
  2776. "_lineHeight": 27,
  2777. "_enableWrapText": true,
  2778. "_N$file": {
  2779. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2780. },
  2781. "_isSystemFontUsed": false,
  2782. "_spacingX": 0,
  2783. "_batchAsBitmap": false,
  2784. "_styleFlags": 0,
  2785. "_underlineHeight": 0,
  2786. "_N$horizontalAlign": 1,
  2787. "_N$verticalAlign": 1,
  2788. "_N$fontFamily": "Arial",
  2789. "_N$overflow": 0,
  2790. "_N$cacheMode": 0,
  2791. "_id": ""
  2792. },
  2793. {
  2794. "__type__": "cc.PrefabInfo",
  2795. "root": {
  2796. "__id__": 1
  2797. },
  2798. "asset": {
  2799. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  2800. },
  2801. "fileId": "a28B1j805NZpzl2pILMw5b",
  2802. "sync": false
  2803. },
  2804. {
  2805. "__type__": "cc.Node",
  2806. "_name": "LbNick",
  2807. "_objFlags": 0,
  2808. "_parent": {
  2809. "__id__": 67
  2810. },
  2811. "_children": [],
  2812. "_active": true,
  2813. "_components": [
  2814. {
  2815. "__id__": 72
  2816. }
  2817. ],
  2818. "_prefab": {
  2819. "__id__": 73
  2820. },
  2821. "_opacity": 255,
  2822. "_color": {
  2823. "__type__": "cc.Color",
  2824. "r": 181,
  2825. "g": 71,
  2826. "b": 36,
  2827. "a": 255
  2828. },
  2829. "_contentSize": {
  2830. "__type__": "cc.Size",
  2831. "width": 150,
  2832. "height": 34.02
  2833. },
  2834. "_anchorPoint": {
  2835. "__type__": "cc.Vec2",
  2836. "x": 0.5,
  2837. "y": 0.5
  2838. },
  2839. "_trs": {
  2840. "__type__": "TypedArray",
  2841. "ctor": "Float64Array",
  2842. "array": [
  2843. -139,
  2844. 0,
  2845. 0,
  2846. 0,
  2847. 0,
  2848. 0,
  2849. 1,
  2850. 1,
  2851. 1,
  2852. 1
  2853. ]
  2854. },
  2855. "_eulerAngles": {
  2856. "__type__": "cc.Vec3",
  2857. "x": 0,
  2858. "y": 0,
  2859. "z": 0
  2860. },
  2861. "_skewX": 0,
  2862. "_skewY": 0,
  2863. "_is3DNode": false,
  2864. "_groupIndex": 0,
  2865. "groupIndex": 0,
  2866. "_id": ""
  2867. },
  2868. {
  2869. "__type__": "cc.Label",
  2870. "_name": "",
  2871. "_objFlags": 0,
  2872. "node": {
  2873. "__id__": 71
  2874. },
  2875. "_enabled": true,
  2876. "_materials": [
  2877. {
  2878. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2879. }
  2880. ],
  2881. "_srcBlendFactor": 770,
  2882. "_dstBlendFactor": 771,
  2883. "_string": "玩家六字昵稱",
  2884. "_N$string": "玩家六字昵稱",
  2885. "_fontSize": 25,
  2886. "_lineHeight": 27,
  2887. "_enableWrapText": true,
  2888. "_N$file": {
  2889. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2890. },
  2891. "_isSystemFontUsed": false,
  2892. "_spacingX": 0,
  2893. "_batchAsBitmap": false,
  2894. "_styleFlags": 0,
  2895. "_underlineHeight": 0,
  2896. "_N$horizontalAlign": 1,
  2897. "_N$verticalAlign": 1,
  2898. "_N$fontFamily": "Arial",
  2899. "_N$overflow": 0,
  2900. "_N$cacheMode": 0,
  2901. "_id": ""
  2902. },
  2903. {
  2904. "__type__": "cc.PrefabInfo",
  2905. "root": {
  2906. "__id__": 1
  2907. },
  2908. "asset": {
  2909. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  2910. },
  2911. "fileId": "10EBC+hXFH0qQurRMdnXb/",
  2912. "sync": false
  2913. },
  2914. {
  2915. "__type__": "cc.Node",
  2916. "_name": "LbYYS",
  2917. "_objFlags": 0,
  2918. "_parent": {
  2919. "__id__": 67
  2920. },
  2921. "_children": [],
  2922. "_active": true,
  2923. "_components": [
  2924. {
  2925. "__id__": 75
  2926. }
  2927. ],
  2928. "_prefab": {
  2929. "__id__": 76
  2930. },
  2931. "_opacity": 255,
  2932. "_color": {
  2933. "__type__": "cc.Color",
  2934. "r": 181,
  2935. "g": 71,
  2936. "b": 36,
  2937. "a": 255
  2938. },
  2939. "_contentSize": {
  2940. "__type__": "cc.Size",
  2941. "width": 12.5,
  2942. "height": 34.02
  2943. },
  2944. "_anchorPoint": {
  2945. "__type__": "cc.Vec2",
  2946. "x": 0.5,
  2947. "y": 0.5
  2948. },
  2949. "_trs": {
  2950. "__type__": "TypedArray",
  2951. "ctor": "Float64Array",
  2952. "array": [
  2953. 58,
  2954. 0,
  2955. 0,
  2956. 0,
  2957. 0,
  2958. 0,
  2959. 1,
  2960. 1,
  2961. 1,
  2962. 1
  2963. ]
  2964. },
  2965. "_eulerAngles": {
  2966. "__type__": "cc.Vec3",
  2967. "x": 0,
  2968. "y": 0,
  2969. "z": 0
  2970. },
  2971. "_skewX": 0,
  2972. "_skewY": 0,
  2973. "_is3DNode": false,
  2974. "_groupIndex": 0,
  2975. "groupIndex": 0,
  2976. "_id": ""
  2977. },
  2978. {
  2979. "__type__": "cc.Label",
  2980. "_name": "",
  2981. "_objFlags": 0,
  2982. "node": {
  2983. "__id__": 74
  2984. },
  2985. "_enabled": true,
  2986. "_materials": [
  2987. {
  2988. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2989. }
  2990. ],
  2991. "_srcBlendFactor": 770,
  2992. "_dstBlendFactor": 771,
  2993. "_string": "0",
  2994. "_N$string": "0",
  2995. "_fontSize": 25,
  2996. "_lineHeight": 27,
  2997. "_enableWrapText": true,
  2998. "_N$file": {
  2999. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  3000. },
  3001. "_isSystemFontUsed": false,
  3002. "_spacingX": 0,
  3003. "_batchAsBitmap": false,
  3004. "_styleFlags": 0,
  3005. "_underlineHeight": 0,
  3006. "_N$horizontalAlign": 1,
  3007. "_N$verticalAlign": 1,
  3008. "_N$fontFamily": "Arial",
  3009. "_N$overflow": 0,
  3010. "_N$cacheMode": 0,
  3011. "_id": ""
  3012. },
  3013. {
  3014. "__type__": "cc.PrefabInfo",
  3015. "root": {
  3016. "__id__": 1
  3017. },
  3018. "asset": {
  3019. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  3020. },
  3021. "fileId": "d40sXuSSRPALfNKkifZu0G",
  3022. "sync": false
  3023. },
  3024. {
  3025. "__type__": "cc.Node",
  3026. "_name": "LbYS",
  3027. "_objFlags": 0,
  3028. "_parent": {
  3029. "__id__": 67
  3030. },
  3031. "_children": [],
  3032. "_active": true,
  3033. "_components": [
  3034. {
  3035. "__id__": 78
  3036. }
  3037. ],
  3038. "_prefab": {
  3039. "__id__": 79
  3040. },
  3041. "_opacity": 255,
  3042. "_color": {
  3043. "__type__": "cc.Color",
  3044. "r": 181,
  3045. "g": 71,
  3046. "b": 36,
  3047. "a": 255
  3048. },
  3049. "_contentSize": {
  3050. "__type__": "cc.Size",
  3051. "width": 12.5,
  3052. "height": 34.02
  3053. },
  3054. "_anchorPoint": {
  3055. "__type__": "cc.Vec2",
  3056. "x": 0.5,
  3057. "y": 0.5
  3058. },
  3059. "_trs": {
  3060. "__type__": "TypedArray",
  3061. "ctor": "Float64Array",
  3062. "array": [
  3063. 224,
  3064. 0,
  3065. 0,
  3066. 0,
  3067. 0,
  3068. 0,
  3069. 1,
  3070. 1,
  3071. 1,
  3072. 1
  3073. ]
  3074. },
  3075. "_eulerAngles": {
  3076. "__type__": "cc.Vec3",
  3077. "x": 0,
  3078. "y": 0,
  3079. "z": 0
  3080. },
  3081. "_skewX": 0,
  3082. "_skewY": 0,
  3083. "_is3DNode": false,
  3084. "_groupIndex": 0,
  3085. "groupIndex": 0,
  3086. "_id": ""
  3087. },
  3088. {
  3089. "__type__": "cc.Label",
  3090. "_name": "",
  3091. "_objFlags": 0,
  3092. "node": {
  3093. "__id__": 77
  3094. },
  3095. "_enabled": true,
  3096. "_materials": [
  3097. {
  3098. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3099. }
  3100. ],
  3101. "_srcBlendFactor": 770,
  3102. "_dstBlendFactor": 771,
  3103. "_string": "0",
  3104. "_N$string": "0",
  3105. "_fontSize": 25,
  3106. "_lineHeight": 27,
  3107. "_enableWrapText": true,
  3108. "_N$file": {
  3109. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  3110. },
  3111. "_isSystemFontUsed": false,
  3112. "_spacingX": 0,
  3113. "_batchAsBitmap": false,
  3114. "_styleFlags": 0,
  3115. "_underlineHeight": 0,
  3116. "_N$horizontalAlign": 1,
  3117. "_N$verticalAlign": 1,
  3118. "_N$fontFamily": "Arial",
  3119. "_N$overflow": 0,
  3120. "_N$cacheMode": 0,
  3121. "_id": ""
  3122. },
  3123. {
  3124. "__type__": "cc.PrefabInfo",
  3125. "root": {
  3126. "__id__": 1
  3127. },
  3128. "asset": {
  3129. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  3130. },
  3131. "fileId": "2cm0/1fGRHUZyibhCgtlqt",
  3132. "sync": false
  3133. },
  3134. {
  3135. "__type__": "cc.Node",
  3136. "_name": "LbTS",
  3137. "_objFlags": 0,
  3138. "_parent": {
  3139. "__id__": 67
  3140. },
  3141. "_children": [],
  3142. "_active": true,
  3143. "_components": [
  3144. {
  3145. "__id__": 81
  3146. }
  3147. ],
  3148. "_prefab": {
  3149. "__id__": 82
  3150. },
  3151. "_opacity": 255,
  3152. "_color": {
  3153. "__type__": "cc.Color",
  3154. "r": 181,
  3155. "g": 71,
  3156. "b": 36,
  3157. "a": 255
  3158. },
  3159. "_contentSize": {
  3160. "__type__": "cc.Size",
  3161. "width": 12.5,
  3162. "height": 34.02
  3163. },
  3164. "_anchorPoint": {
  3165. "__type__": "cc.Vec2",
  3166. "x": 0.5,
  3167. "y": 0.5
  3168. },
  3169. "_trs": {
  3170. "__type__": "TypedArray",
  3171. "ctor": "Float64Array",
  3172. "array": [
  3173. 368,
  3174. 0,
  3175. 0,
  3176. 0,
  3177. 0,
  3178. 0,
  3179. 1,
  3180. 1,
  3181. 1,
  3182. 1
  3183. ]
  3184. },
  3185. "_eulerAngles": {
  3186. "__type__": "cc.Vec3",
  3187. "x": 0,
  3188. "y": 0,
  3189. "z": 0
  3190. },
  3191. "_skewX": 0,
  3192. "_skewY": 0,
  3193. "_is3DNode": false,
  3194. "_groupIndex": 0,
  3195. "groupIndex": 0,
  3196. "_id": ""
  3197. },
  3198. {
  3199. "__type__": "cc.Label",
  3200. "_name": "",
  3201. "_objFlags": 0,
  3202. "node": {
  3203. "__id__": 80
  3204. },
  3205. "_enabled": true,
  3206. "_materials": [
  3207. {
  3208. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3209. }
  3210. ],
  3211. "_srcBlendFactor": 770,
  3212. "_dstBlendFactor": 771,
  3213. "_string": "0",
  3214. "_N$string": "0",
  3215. "_fontSize": 25,
  3216. "_lineHeight": 27,
  3217. "_enableWrapText": true,
  3218. "_N$file": {
  3219. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  3220. },
  3221. "_isSystemFontUsed": false,
  3222. "_spacingX": 0,
  3223. "_batchAsBitmap": false,
  3224. "_styleFlags": 0,
  3225. "_underlineHeight": 0,
  3226. "_N$horizontalAlign": 1,
  3227. "_N$verticalAlign": 1,
  3228. "_N$fontFamily": "Arial",
  3229. "_N$overflow": 0,
  3230. "_N$cacheMode": 0,
  3231. "_id": ""
  3232. },
  3233. {
  3234. "__type__": "cc.PrefabInfo",
  3235. "root": {
  3236. "__id__": 1
  3237. },
  3238. "asset": {
  3239. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  3240. },
  3241. "fileId": "518lUMkZpC353Px167XoIW",
  3242. "sync": false
  3243. },
  3244. {
  3245. "__type__": "cc.Node",
  3246. "_name": "RecordLine",
  3247. "_objFlags": 0,
  3248. "_parent": {
  3249. "__id__": 67
  3250. },
  3251. "_children": [],
  3252. "_active": true,
  3253. "_components": [
  3254. {
  3255. "__id__": 84
  3256. }
  3257. ],
  3258. "_prefab": {
  3259. "__id__": 85
  3260. },
  3261. "_opacity": 255,
  3262. "_color": {
  3263. "__type__": "cc.Color",
  3264. "r": 255,
  3265. "g": 255,
  3266. "b": 255,
  3267. "a": 255
  3268. },
  3269. "_contentSize": {
  3270. "__type__": "cc.Size",
  3271. "width": 800,
  3272. "height": 2
  3273. },
  3274. "_anchorPoint": {
  3275. "__type__": "cc.Vec2",
  3276. "x": 0.5,
  3277. "y": 0.5
  3278. },
  3279. "_trs": {
  3280. "__type__": "TypedArray",
  3281. "ctor": "Float64Array",
  3282. "array": [
  3283. 0,
  3284. -25,
  3285. 0,
  3286. 0,
  3287. 0,
  3288. 0,
  3289. 1,
  3290. 1,
  3291. 1,
  3292. 1
  3293. ]
  3294. },
  3295. "_eulerAngles": {
  3296. "__type__": "cc.Vec3",
  3297. "x": 0,
  3298. "y": 0,
  3299. "z": 0
  3300. },
  3301. "_skewX": 0,
  3302. "_skewY": 0,
  3303. "_is3DNode": false,
  3304. "_groupIndex": 0,
  3305. "groupIndex": 0,
  3306. "_id": ""
  3307. },
  3308. {
  3309. "__type__": "cc.Sprite",
  3310. "_name": "",
  3311. "_objFlags": 0,
  3312. "node": {
  3313. "__id__": 83
  3314. },
  3315. "_enabled": true,
  3316. "_materials": [
  3317. {
  3318. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3319. }
  3320. ],
  3321. "_srcBlendFactor": 770,
  3322. "_dstBlendFactor": 771,
  3323. "_spriteFrame": null,
  3324. "_type": 0,
  3325. "_sizeMode": 0,
  3326. "_fillType": 0,
  3327. "_fillCenter": {
  3328. "__type__": "cc.Vec2",
  3329. "x": 0,
  3330. "y": 0
  3331. },
  3332. "_fillStart": 0,
  3333. "_fillRange": 0,
  3334. "_isTrimmedMode": true,
  3335. "_atlas": null,
  3336. "_id": ""
  3337. },
  3338. {
  3339. "__type__": "cc.PrefabInfo",
  3340. "root": {
  3341. "__id__": 1
  3342. },
  3343. "asset": {
  3344. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  3345. },
  3346. "fileId": "e4y3Piuw1KJofTiB9+spBR",
  3347. "sync": false
  3348. },
  3349. {
  3350. "__type__": "1c038tuKz9DyK5MlR5uYfwn",
  3351. "_name": "",
  3352. "_objFlags": 0,
  3353. "node": {
  3354. "__id__": 67
  3355. },
  3356. "_enabled": true,
  3357. "_id": ""
  3358. },
  3359. {
  3360. "__type__": "e5b4cMwR9xJS5FMbqdmDi74",
  3361. "_name": "",
  3362. "_objFlags": 0,
  3363. "node": {
  3364. "__id__": 67
  3365. },
  3366. "_enabled": true,
  3367. "m_HeadNode": null,
  3368. "m_HeadErr": null,
  3369. "m_SpGender": [],
  3370. "m_LabNick": {
  3371. "__id__": 72
  3372. },
  3373. "m_LabID": {
  3374. "__id__": 69
  3375. },
  3376. "m_BtKick": null,
  3377. "_id": ""
  3378. },
  3379. {
  3380. "__type__": "cc.PrefabInfo",
  3381. "root": {
  3382. "__id__": 1
  3383. },
  3384. "asset": {
  3385. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  3386. },
  3387. "fileId": "738CNjCeZI5L7sgcM0PAT0",
  3388. "sync": false
  3389. },
  3390. {
  3391. "__type__": "cc.Layout",
  3392. "_name": "",
  3393. "_objFlags": 0,
  3394. "node": {
  3395. "__id__": 66
  3396. },
  3397. "_enabled": true,
  3398. "_layoutSize": {
  3399. "__type__": "cc.Size",
  3400. "width": 1230,
  3401. "height": 50
  3402. },
  3403. "_resize": 1,
  3404. "_N$layoutType": 2,
  3405. "_N$cellSize": {
  3406. "__type__": "cc.Size",
  3407. "width": 40,
  3408. "height": 40
  3409. },
  3410. "_N$startAxis": 0,
  3411. "_N$paddingLeft": 0,
  3412. "_N$paddingRight": 0,
  3413. "_N$paddingTop": 0,
  3414. "_N$paddingBottom": 0,
  3415. "_N$spacingX": 0,
  3416. "_N$spacingY": 0,
  3417. "_N$verticalDirection": 1,
  3418. "_N$horizontalDirection": 0,
  3419. "_N$affectedByScale": false,
  3420. "_id": ""
  3421. },
  3422. {
  3423. "__type__": "cc.PrefabInfo",
  3424. "root": {
  3425. "__id__": 1
  3426. },
  3427. "asset": {
  3428. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  3429. },
  3430. "fileId": "442+wKWJNFx4w2zHG5BI+j",
  3431. "sync": false
  3432. },
  3433. {
  3434. "__type__": "cc.Mask",
  3435. "_name": "",
  3436. "_objFlags": 0,
  3437. "node": {
  3438. "__id__": 65
  3439. },
  3440. "_enabled": true,
  3441. "_materials": [
  3442. {
  3443. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3444. }
  3445. ],
  3446. "_spriteFrame": null,
  3447. "_type": 0,
  3448. "_segments": 64,
  3449. "_N$alphaThreshold": 1,
  3450. "_N$inverted": false,
  3451. "_id": ""
  3452. },
  3453. {
  3454. "__type__": "cc.PrefabInfo",
  3455. "root": {
  3456. "__id__": 1
  3457. },
  3458. "asset": {
  3459. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  3460. },
  3461. "fileId": "bau6RzibJNopy1G1D2ol8/",
  3462. "sync": false
  3463. },
  3464. {
  3465. "__type__": "cc.ScrollView",
  3466. "_name": "",
  3467. "_objFlags": 0,
  3468. "node": {
  3469. "__id__": 64
  3470. },
  3471. "_enabled": true,
  3472. "horizontal": false,
  3473. "vertical": true,
  3474. "inertia": true,
  3475. "brake": 0.75,
  3476. "elastic": true,
  3477. "bounceDuration": 0.23,
  3478. "scrollEvents": [],
  3479. "cancelInnerEvents": true,
  3480. "_N$content": {
  3481. "__id__": 66
  3482. },
  3483. "content": {
  3484. "__id__": 66
  3485. },
  3486. "_N$horizontalScrollBar": null,
  3487. "_N$verticalScrollBar": null,
  3488. "_id": ""
  3489. },
  3490. {
  3491. "__type__": "cc.PrefabInfo",
  3492. "root": {
  3493. "__id__": 1
  3494. },
  3495. "asset": {
  3496. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  3497. },
  3498. "fileId": "8atQfSoTFLD7g6PXjosZNo",
  3499. "sync": false
  3500. },
  3501. {
  3502. "__type__": "1c038tuKz9DyK5MlR5uYfwn",
  3503. "_name": "",
  3504. "_objFlags": 0,
  3505. "node": {
  3506. "__id__": 1
  3507. },
  3508. "_enabled": true,
  3509. "_id": ""
  3510. },
  3511. {
  3512. "__type__": "667d7cRO4ZHOrbfi0fiHKIF",
  3513. "_name": "",
  3514. "_objFlags": 0,
  3515. "node": {
  3516. "__id__": 1
  3517. },
  3518. "_enabled": true,
  3519. "m_NdLayoutArr": [
  3520. {
  3521. "__id__": 66
  3522. }
  3523. ],
  3524. "_id": ""
  3525. },
  3526. {
  3527. "__type__": "cc.PrefabInfo",
  3528. "root": {
  3529. "__id__": 1
  3530. },
  3531. "asset": {
  3532. "__uuid__": "f9360147-3c1f-465a-8d61-30b62e003c25"
  3533. },
  3534. "fileId": "",
  3535. "sync": false
  3536. }
  3537. ]