BattleRoom.prefab 53 KB

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