DreamMain.prefab 56 KB

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