ShopUI.prefab 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278
  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. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "ShopUI",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 10
  24. },
  25. {
  26. "__id__": 34
  27. },
  28. {
  29. "__id__": 51
  30. },
  31. {
  32. "__id__": 68
  33. },
  34. {
  35. "__id__": 78
  36. },
  37. {
  38. "__id__": 82
  39. },
  40. {
  41. "__id__": 131
  42. }
  43. ],
  44. "_active": true,
  45. "_components": [
  46. {
  47. "__id__": 136
  48. },
  49. {
  50. "__id__": 137
  51. },
  52. {
  53. "__id__": 138
  54. }
  55. ],
  56. "_prefab": {
  57. "__id__": 139
  58. },
  59. "_lpos": {
  60. "__type__": "cc.Vec3",
  61. "x": 0,
  62. "y": 0,
  63. "z": 0
  64. },
  65. "_lrot": {
  66. "__type__": "cc.Quat",
  67. "x": 0,
  68. "y": 0,
  69. "z": 0,
  70. "w": 1
  71. },
  72. "_lscale": {
  73. "__type__": "cc.Vec3",
  74. "x": 1,
  75. "y": 1,
  76. "z": 1
  77. },
  78. "_layer": 1073741824,
  79. "_euler": {
  80. "__type__": "cc.Vec3",
  81. "x": 0,
  82. "y": 0,
  83. "z": 0
  84. },
  85. "_id": ""
  86. },
  87. {
  88. "__type__": "cc.Node",
  89. "_name": "Background",
  90. "_objFlags": 0,
  91. "_parent": {
  92. "__id__": 1
  93. },
  94. "_children": [],
  95. "_active": true,
  96. "_components": [
  97. {
  98. "__id__": 3
  99. },
  100. {
  101. "__id__": 4
  102. },
  103. {
  104. "__id__": 5
  105. },
  106. {
  107. "__id__": 6
  108. },
  109. {
  110. "__id__": 7
  111. }
  112. ],
  113. "_prefab": {
  114. "__id__": 9
  115. },
  116. "_lpos": {
  117. "__type__": "cc.Vec3",
  118. "x": 0,
  119. "y": 0,
  120. "z": 0
  121. },
  122. "_lrot": {
  123. "__type__": "cc.Quat",
  124. "x": 0,
  125. "y": 0,
  126. "z": 0,
  127. "w": 1
  128. },
  129. "_lscale": {
  130. "__type__": "cc.Vec3",
  131. "x": 1,
  132. "y": 1,
  133. "z": 1
  134. },
  135. "_layer": 33554432,
  136. "_euler": {
  137. "__type__": "cc.Vec3",
  138. "x": 0,
  139. "y": 0,
  140. "z": 0
  141. },
  142. "_id": ""
  143. },
  144. {
  145. "__type__": "cc.UITransformComponent",
  146. "_name": "Sprite<UITransformComponent>",
  147. "_objFlags": 0,
  148. "node": {
  149. "__id__": 2
  150. },
  151. "_enabled": true,
  152. "_priority": 0,
  153. "_contentSize": {
  154. "__type__": "cc.Size",
  155. "width": 750,
  156. "height": 1334
  157. },
  158. "_anchorPoint": {
  159. "__type__": "cc.Vec2",
  160. "x": 0.5,
  161. "y": 0.5
  162. },
  163. "_id": ""
  164. },
  165. {
  166. "__type__": "cc.SpriteComponent",
  167. "_name": "Sprite<SpriteComponent>",
  168. "_objFlags": 0,
  169. "node": {
  170. "__id__": 2
  171. },
  172. "_enabled": true,
  173. "_srcBlendFactor": 2,
  174. "_dstBlendFactor": 4,
  175. "_color": {
  176. "__type__": "cc.Color",
  177. "r": 0,
  178. "g": 0,
  179. "b": 0,
  180. "a": 255
  181. },
  182. "_sharedMaterial": null,
  183. "_spriteFrame": {
  184. "__uuid__": "91741946-403d-4e33-9e07-d6f85b0a0086@f9941"
  185. },
  186. "_type": 0,
  187. "_fillType": 0,
  188. "_sizeMode": 0,
  189. "_fillCenter": {
  190. "__type__": "cc.Vec2",
  191. "x": 0,
  192. "y": 0
  193. },
  194. "_fillStart": 0,
  195. "_fillRange": 0,
  196. "_isTrimmedMode": true,
  197. "_useGrayscale": false,
  198. "_atlas": null,
  199. "_id": ""
  200. },
  201. {
  202. "__type__": "cc.WidgetComponent",
  203. "_name": "Sprite<WidgetComponent>",
  204. "_objFlags": 0,
  205. "node": {
  206. "__id__": 2
  207. },
  208. "_enabled": true,
  209. "_alignFlags": 45,
  210. "_target": null,
  211. "_left": 0,
  212. "_right": 0,
  213. "_top": 0,
  214. "_bottom": 0,
  215. "_horizontalCenter": 0,
  216. "_verticalCenter": 0,
  217. "_isAbsLeft": true,
  218. "_isAbsRight": true,
  219. "_isAbsTop": true,
  220. "_isAbsBottom": true,
  221. "_isAbsHorizontalCenter": true,
  222. "_isAbsVerticalCenter": true,
  223. "_originalWidth": 40,
  224. "_originalHeight": 36,
  225. "_alignMode": 2,
  226. "_lockFlags": 0,
  227. "_id": ""
  228. },
  229. {
  230. "__type__": "cc.UIOpacityComponent",
  231. "_name": "Background<UIOpacityComponent>",
  232. "_objFlags": 0,
  233. "node": {
  234. "__id__": 2
  235. },
  236. "_enabled": true,
  237. "_opacity": 200,
  238. "_id": ""
  239. },
  240. {
  241. "__type__": "cc.ButtonComponent",
  242. "_name": "Background<ButtonComponent>",
  243. "_objFlags": 0,
  244. "node": {
  245. "__id__": 2
  246. },
  247. "_enabled": true,
  248. "clickEvents": [
  249. {
  250. "__id__": 8
  251. }
  252. ],
  253. "_interactable": true,
  254. "_transition": 0,
  255. "_normalColor": {
  256. "__type__": "cc.Color",
  257. "r": 214,
  258. "g": 214,
  259. "b": 214,
  260. "a": 255
  261. },
  262. "_hoverColor": {
  263. "__type__": "cc.Color",
  264. "r": 211,
  265. "g": 211,
  266. "b": 211,
  267. "a": 255
  268. },
  269. "_pressColor": {
  270. "__type__": "cc.Color",
  271. "r": 255,
  272. "g": 255,
  273. "b": 255,
  274. "a": 255
  275. },
  276. "_disabledColor": {
  277. "__type__": "cc.Color",
  278. "r": 124,
  279. "g": 124,
  280. "b": 124,
  281. "a": 255
  282. },
  283. "_normalSprite": null,
  284. "_hoverSprite": null,
  285. "_pressedSprite": null,
  286. "_disabledSprite": null,
  287. "_duration": 0.1,
  288. "_zoomScale": 1.2,
  289. "_target": null,
  290. "_id": ""
  291. },
  292. {
  293. "__type__": "cc.ClickEvent",
  294. "target": {
  295. "__id__": 1
  296. },
  297. "component": "",
  298. "_componentId": "37fe6LfvF5F0pkrzYdfUpH2",
  299. "handler": "BackButtonClick",
  300. "customEventData": ""
  301. },
  302. {
  303. "__type__": "cc.PrefabInfo",
  304. "root": {
  305. "__id__": 1
  306. },
  307. "asset": {
  308. "__id__": 0
  309. },
  310. "fileId": "46UpZTh/FIe79dQ+MK5YQ3",
  311. "sync": false,
  312. "_synced": {
  313. "default": false,
  314. "serializable": false
  315. }
  316. },
  317. {
  318. "__type__": "cc.Node",
  319. "_name": "Frame_Com",
  320. "_objFlags": 0,
  321. "_parent": {
  322. "__id__": 1
  323. },
  324. "_children": [
  325. {
  326. "__id__": 11
  327. },
  328. {
  329. "__id__": 16
  330. },
  331. {
  332. "__id__": 21
  333. }
  334. ],
  335. "_active": true,
  336. "_components": [
  337. {
  338. "__id__": 32
  339. }
  340. ],
  341. "_prefab": {
  342. "__id__": 33
  343. },
  344. "_lpos": {
  345. "__type__": "cc.Vec3",
  346. "x": 0,
  347. "y": 477.437,
  348. "z": 0
  349. },
  350. "_lrot": {
  351. "__type__": "cc.Quat",
  352. "x": 0,
  353. "y": 0,
  354. "z": 0,
  355. "w": 1
  356. },
  357. "_lscale": {
  358. "__type__": "cc.Vec3",
  359. "x": 1,
  360. "y": 1,
  361. "z": 1
  362. },
  363. "_layer": 1073741824,
  364. "_euler": {
  365. "__type__": "cc.Vec3",
  366. "x": 0,
  367. "y": 0,
  368. "z": 0
  369. },
  370. "_id": ""
  371. },
  372. {
  373. "__type__": "cc.Node",
  374. "_name": "BG",
  375. "_objFlags": 0,
  376. "_parent": {
  377. "__id__": 10
  378. },
  379. "_children": [],
  380. "_active": true,
  381. "_components": [
  382. {
  383. "__id__": 12
  384. },
  385. {
  386. "__id__": 13
  387. },
  388. {
  389. "__id__": 14
  390. }
  391. ],
  392. "_prefab": {
  393. "__id__": 15
  394. },
  395. "_lpos": {
  396. "__type__": "cc.Vec3",
  397. "x": 0,
  398. "y": -80,
  399. "z": 0
  400. },
  401. "_lrot": {
  402. "__type__": "cc.Quat",
  403. "x": 0,
  404. "y": 0,
  405. "z": 0,
  406. "w": 1
  407. },
  408. "_lscale": {
  409. "__type__": "cc.Vec3",
  410. "x": 1,
  411. "y": 1,
  412. "z": 1
  413. },
  414. "_layer": 33554432,
  415. "_euler": {
  416. "__type__": "cc.Vec3",
  417. "x": 0,
  418. "y": 0,
  419. "z": 0
  420. },
  421. "_id": ""
  422. },
  423. {
  424. "__type__": "cc.UITransformComponent",
  425. "_name": "",
  426. "_objFlags": 0,
  427. "node": {
  428. "__id__": 11
  429. },
  430. "_enabled": true,
  431. "_priority": 0,
  432. "_contentSize": {
  433. "__type__": "cc.Size",
  434. "width": 590,
  435. "height": 760
  436. },
  437. "_anchorPoint": {
  438. "__type__": "cc.Vec2",
  439. "x": 0.5,
  440. "y": 1
  441. },
  442. "_id": ""
  443. },
  444. {
  445. "__type__": "cc.SpriteComponent",
  446. "_name": "",
  447. "_objFlags": 0,
  448. "node": {
  449. "__id__": 11
  450. },
  451. "_enabled": true,
  452. "_srcBlendFactor": 2,
  453. "_dstBlendFactor": 4,
  454. "_color": {
  455. "__type__": "cc.Color",
  456. "r": 255,
  457. "g": 255,
  458. "b": 255,
  459. "a": 255
  460. },
  461. "_sharedMaterial": null,
  462. "_spriteFrame": {
  463. "__uuid__": "c1fe7e46-ce41-4fcd-bb4c-8f2c81d3b6ba@f9941"
  464. },
  465. "_type": 1,
  466. "_fillType": 0,
  467. "_sizeMode": 0,
  468. "_fillCenter": {
  469. "__type__": "cc.Vec2",
  470. "x": 0,
  471. "y": 0
  472. },
  473. "_fillStart": 0,
  474. "_fillRange": 0,
  475. "_isTrimmedMode": true,
  476. "_useGrayscale": false,
  477. "_atlas": null,
  478. "_id": ""
  479. },
  480. {
  481. "__type__": "cc.ButtonComponent",
  482. "_name": "",
  483. "_objFlags": 0,
  484. "node": {
  485. "__id__": 11
  486. },
  487. "_enabled": true,
  488. "clickEvents": [],
  489. "_interactable": true,
  490. "_transition": 0,
  491. "_normalColor": {
  492. "__type__": "cc.Color",
  493. "r": 214,
  494. "g": 214,
  495. "b": 214,
  496. "a": 255
  497. },
  498. "_hoverColor": {
  499. "__type__": "cc.Color",
  500. "r": 211,
  501. "g": 211,
  502. "b": 211,
  503. "a": 255
  504. },
  505. "_pressColor": {
  506. "__type__": "cc.Color",
  507. "r": 255,
  508. "g": 255,
  509. "b": 255,
  510. "a": 255
  511. },
  512. "_disabledColor": {
  513. "__type__": "cc.Color",
  514. "r": 124,
  515. "g": 124,
  516. "b": 124,
  517. "a": 255
  518. },
  519. "_normalSprite": null,
  520. "_hoverSprite": null,
  521. "_pressedSprite": null,
  522. "_disabledSprite": null,
  523. "_duration": 0.1,
  524. "_zoomScale": 1.2,
  525. "_target": null,
  526. "_id": ""
  527. },
  528. {
  529. "__type__": "cc.PrefabInfo",
  530. "root": {
  531. "__id__": 1
  532. },
  533. "asset": {
  534. "__id__": 0
  535. },
  536. "fileId": "33HeiC8NxGeYGW8pNOklI+",
  537. "sync": false,
  538. "_synced": {
  539. "default": false,
  540. "serializable": false
  541. }
  542. },
  543. {
  544. "__type__": "cc.Node",
  545. "_name": "ImgTitle",
  546. "_objFlags": 0,
  547. "_parent": {
  548. "__id__": 10
  549. },
  550. "_children": [],
  551. "_active": true,
  552. "_components": [
  553. {
  554. "__id__": 17
  555. },
  556. {
  557. "__id__": 18
  558. },
  559. {
  560. "__id__": 19
  561. }
  562. ],
  563. "_prefab": {
  564. "__id__": 20
  565. },
  566. "_lpos": {
  567. "__type__": "cc.Vec3",
  568. "x": 0,
  569. "y": 0,
  570. "z": 0
  571. },
  572. "_lrot": {
  573. "__type__": "cc.Quat",
  574. "x": 0,
  575. "y": 0,
  576. "z": 0,
  577. "w": 1
  578. },
  579. "_lscale": {
  580. "__type__": "cc.Vec3",
  581. "x": 1,
  582. "y": 1,
  583. "z": 1
  584. },
  585. "_layer": 33554432,
  586. "_euler": {
  587. "__type__": "cc.Vec3",
  588. "x": 0,
  589. "y": 0,
  590. "z": 0
  591. },
  592. "_id": ""
  593. },
  594. {
  595. "__type__": "cc.UITransformComponent",
  596. "_name": "",
  597. "_objFlags": 0,
  598. "node": {
  599. "__id__": 16
  600. },
  601. "_enabled": true,
  602. "_priority": 0,
  603. "_contentSize": {
  604. "__type__": "cc.Size",
  605. "width": 590,
  606. "height": 90
  607. },
  608. "_anchorPoint": {
  609. "__type__": "cc.Vec2",
  610. "x": 0.5,
  611. "y": 1
  612. },
  613. "_id": ""
  614. },
  615. {
  616. "__type__": "cc.SpriteComponent",
  617. "_name": "",
  618. "_objFlags": 0,
  619. "node": {
  620. "__id__": 16
  621. },
  622. "_enabled": true,
  623. "_srcBlendFactor": 2,
  624. "_dstBlendFactor": 4,
  625. "_color": {
  626. "__type__": "cc.Color",
  627. "r": 255,
  628. "g": 255,
  629. "b": 255,
  630. "a": 255
  631. },
  632. "_sharedMaterial": null,
  633. "_spriteFrame": {
  634. "__uuid__": "02f117ef-258b-49d0-b801-8bf0b33d6398@f9941"
  635. },
  636. "_type": 1,
  637. "_fillType": 0,
  638. "_sizeMode": 0,
  639. "_fillCenter": {
  640. "__type__": "cc.Vec2",
  641. "x": 0,
  642. "y": 0
  643. },
  644. "_fillStart": 0,
  645. "_fillRange": 0,
  646. "_isTrimmedMode": true,
  647. "_useGrayscale": false,
  648. "_atlas": null,
  649. "_id": ""
  650. },
  651. {
  652. "__type__": "cc.ButtonComponent",
  653. "_name": "",
  654. "_objFlags": 0,
  655. "node": {
  656. "__id__": 16
  657. },
  658. "_enabled": true,
  659. "clickEvents": [],
  660. "_interactable": true,
  661. "_transition": 0,
  662. "_normalColor": {
  663. "__type__": "cc.Color",
  664. "r": 214,
  665. "g": 214,
  666. "b": 214,
  667. "a": 255
  668. },
  669. "_hoverColor": {
  670. "__type__": "cc.Color",
  671. "r": 211,
  672. "g": 211,
  673. "b": 211,
  674. "a": 255
  675. },
  676. "_pressColor": {
  677. "__type__": "cc.Color",
  678. "r": 255,
  679. "g": 255,
  680. "b": 255,
  681. "a": 255
  682. },
  683. "_disabledColor": {
  684. "__type__": "cc.Color",
  685. "r": 124,
  686. "g": 124,
  687. "b": 124,
  688. "a": 255
  689. },
  690. "_normalSprite": null,
  691. "_hoverSprite": null,
  692. "_pressedSprite": null,
  693. "_disabledSprite": null,
  694. "_duration": 0.1,
  695. "_zoomScale": 1.2,
  696. "_target": null,
  697. "_id": ""
  698. },
  699. {
  700. "__type__": "cc.PrefabInfo",
  701. "root": {
  702. "__id__": 1
  703. },
  704. "asset": {
  705. "__id__": 0
  706. },
  707. "fileId": "18l/xt+iVL/KViq2AqVNRM",
  708. "sync": false,
  709. "_synced": {
  710. "default": false,
  711. "serializable": false
  712. }
  713. },
  714. {
  715. "__type__": "cc.Node",
  716. "_name": "BackButton",
  717. "_objFlags": 0,
  718. "_parent": {
  719. "__id__": 10
  720. },
  721. "_children": [
  722. {
  723. "__id__": 22
  724. }
  725. ],
  726. "_active": true,
  727. "_components": [
  728. {
  729. "__id__": 26
  730. },
  731. {
  732. "__id__": 27
  733. },
  734. {
  735. "__id__": 28
  736. },
  737. {
  738. "__id__": 30
  739. }
  740. ],
  741. "_prefab": {
  742. "__id__": 31
  743. },
  744. "_lpos": {
  745. "__type__": "cc.Vec3",
  746. "x": 252,
  747. "y": -42,
  748. "z": 0
  749. },
  750. "_lrot": {
  751. "__type__": "cc.Quat",
  752. "x": 0,
  753. "y": 0,
  754. "z": 0,
  755. "w": 1
  756. },
  757. "_lscale": {
  758. "__type__": "cc.Vec3",
  759. "x": 1,
  760. "y": 1,
  761. "z": 1
  762. },
  763. "_layer": 33554432,
  764. "_euler": {
  765. "__type__": "cc.Vec3",
  766. "x": 0,
  767. "y": 0,
  768. "z": 0
  769. },
  770. "_id": ""
  771. },
  772. {
  773. "__type__": "cc.Node",
  774. "_name": "Sprite",
  775. "_objFlags": 0,
  776. "_parent": {
  777. "__id__": 21
  778. },
  779. "_children": [],
  780. "_active": true,
  781. "_components": [
  782. {
  783. "__id__": 23
  784. },
  785. {
  786. "__id__": 24
  787. }
  788. ],
  789. "_prefab": {
  790. "__id__": 25
  791. },
  792. "_lpos": {
  793. "__type__": "cc.Vec3",
  794. "x": 1,
  795. "y": -2,
  796. "z": 0
  797. },
  798. "_lrot": {
  799. "__type__": "cc.Quat",
  800. "x": 0,
  801. "y": 0,
  802. "z": 0,
  803. "w": 1
  804. },
  805. "_lscale": {
  806. "__type__": "cc.Vec3",
  807. "x": 1,
  808. "y": 1,
  809. "z": 1
  810. },
  811. "_layer": 33554432,
  812. "_euler": {
  813. "__type__": "cc.Vec3",
  814. "x": 0,
  815. "y": 0,
  816. "z": 0
  817. },
  818. "_id": ""
  819. },
  820. {
  821. "__type__": "cc.UITransformComponent",
  822. "_name": "",
  823. "_objFlags": 0,
  824. "node": {
  825. "__id__": 22
  826. },
  827. "_enabled": true,
  828. "_priority": 0,
  829. "_contentSize": {
  830. "__type__": "cc.Size",
  831. "width": 42,
  832. "height": 42
  833. },
  834. "_anchorPoint": {
  835. "__type__": "cc.Vec2",
  836. "x": 0.5,
  837. "y": 0.5
  838. },
  839. "_id": ""
  840. },
  841. {
  842. "__type__": "cc.SpriteComponent",
  843. "_name": "",
  844. "_objFlags": 0,
  845. "node": {
  846. "__id__": 22
  847. },
  848. "_enabled": true,
  849. "_srcBlendFactor": 2,
  850. "_dstBlendFactor": 4,
  851. "_color": {
  852. "__type__": "cc.Color",
  853. "r": 255,
  854. "g": 255,
  855. "b": 255,
  856. "a": 255
  857. },
  858. "_sharedMaterial": null,
  859. "_spriteFrame": {
  860. "__uuid__": "b867f327-054c-4029-b83b-a06217d9334c@f9941"
  861. },
  862. "_type": 0,
  863. "_fillType": 0,
  864. "_sizeMode": 1,
  865. "_fillCenter": {
  866. "__type__": "cc.Vec2",
  867. "x": 0,
  868. "y": 0
  869. },
  870. "_fillStart": 0,
  871. "_fillRange": 0,
  872. "_isTrimmedMode": true,
  873. "_useGrayscale": false,
  874. "_atlas": null,
  875. "_id": ""
  876. },
  877. {
  878. "__type__": "cc.PrefabInfo",
  879. "root": {
  880. "__id__": 1
  881. },
  882. "asset": {
  883. "__id__": 0
  884. },
  885. "fileId": "d8OsgBwg5P6oP6BN46eFlx",
  886. "sync": false,
  887. "_synced": {
  888. "default": false,
  889. "serializable": false
  890. }
  891. },
  892. {
  893. "__type__": "cc.UITransformComponent",
  894. "_name": "BackButton<UITransformComponent>",
  895. "_objFlags": 0,
  896. "node": {
  897. "__id__": 21
  898. },
  899. "_enabled": true,
  900. "_priority": 0,
  901. "_contentSize": {
  902. "__type__": "cc.Size",
  903. "width": 64,
  904. "height": 64
  905. },
  906. "_anchorPoint": {
  907. "__type__": "cc.Vec2",
  908. "x": 0.5,
  909. "y": 0.5
  910. },
  911. "_id": ""
  912. },
  913. {
  914. "__type__": "cc.SpriteComponent",
  915. "_name": "BackButton<SpriteComponent>",
  916. "_objFlags": 0,
  917. "node": {
  918. "__id__": 21
  919. },
  920. "_enabled": true,
  921. "_srcBlendFactor": 2,
  922. "_dstBlendFactor": 4,
  923. "_color": {
  924. "__type__": "cc.Color",
  925. "r": 255,
  926. "g": 255,
  927. "b": 255,
  928. "a": 255
  929. },
  930. "_sharedMaterial": null,
  931. "_spriteFrame": {
  932. "__uuid__": "9094aca8-354f-40a5-8e91-44074259f1c1@f9941"
  933. },
  934. "_type": 1,
  935. "_fillType": 0,
  936. "_sizeMode": 1,
  937. "_fillCenter": {
  938. "__type__": "cc.Vec2",
  939. "x": 0,
  940. "y": 0
  941. },
  942. "_fillStart": 0,
  943. "_fillRange": 0,
  944. "_isTrimmedMode": true,
  945. "_useGrayscale": false,
  946. "_atlas": null,
  947. "_id": ""
  948. },
  949. {
  950. "__type__": "cc.ButtonComponent",
  951. "_name": "BackButton<ButtonComponent>",
  952. "_objFlags": 0,
  953. "node": {
  954. "__id__": 21
  955. },
  956. "_enabled": true,
  957. "clickEvents": [
  958. {
  959. "__id__": 29
  960. }
  961. ],
  962. "_interactable": true,
  963. "_transition": 2,
  964. "_normalColor": {
  965. "__type__": "cc.Color",
  966. "r": 214,
  967. "g": 214,
  968. "b": 214,
  969. "a": 255
  970. },
  971. "_hoverColor": {
  972. "__type__": "cc.Color",
  973. "r": 211,
  974. "g": 211,
  975. "b": 211,
  976. "a": 255
  977. },
  978. "_pressColor": {
  979. "__type__": "cc.Color",
  980. "r": 255,
  981. "g": 255,
  982. "b": 255,
  983. "a": 255
  984. },
  985. "_disabledColor": {
  986. "__type__": "cc.Color",
  987. "r": 124,
  988. "g": 124,
  989. "b": 124,
  990. "a": 255
  991. },
  992. "_normalSprite": {
  993. "__uuid__": "9094aca8-354f-40a5-8e91-44074259f1c1@f9941"
  994. },
  995. "_hoverSprite": {
  996. "__uuid__": "9094aca8-354f-40a5-8e91-44074259f1c1@f9941"
  997. },
  998. "_pressedSprite": {
  999. "__uuid__": "9094aca8-354f-40a5-8e91-44074259f1c1@f9941"
  1000. },
  1001. "_disabledSprite": {
  1002. "__uuid__": "9094aca8-354f-40a5-8e91-44074259f1c1@f9941"
  1003. },
  1004. "_duration": 0.1,
  1005. "_zoomScale": 1.2,
  1006. "_target": {
  1007. "__id__": 21
  1008. },
  1009. "_id": ""
  1010. },
  1011. {
  1012. "__type__": "cc.ClickEvent",
  1013. "target": {
  1014. "__id__": 1
  1015. },
  1016. "component": "",
  1017. "_componentId": "37fe6LfvF5F0pkrzYdfUpH2",
  1018. "handler": "BackButtonClick",
  1019. "customEventData": ""
  1020. },
  1021. {
  1022. "__type__": "cc.WidgetComponent",
  1023. "_name": "BackButton<WidgetComponent>",
  1024. "_objFlags": 0,
  1025. "node": {
  1026. "__id__": 21
  1027. },
  1028. "_enabled": true,
  1029. "_alignFlags": 9,
  1030. "_target": null,
  1031. "_left": 270,
  1032. "_right": 0,
  1033. "_top": 10,
  1034. "_bottom": 0,
  1035. "_horizontalCenter": 0,
  1036. "_verticalCenter": 0,
  1037. "_isAbsLeft": true,
  1038. "_isAbsRight": true,
  1039. "_isAbsTop": true,
  1040. "_isAbsBottom": true,
  1041. "_isAbsHorizontalCenter": true,
  1042. "_isAbsVerticalCenter": true,
  1043. "_originalWidth": 0,
  1044. "_originalHeight": 0,
  1045. "_alignMode": 2,
  1046. "_lockFlags": 0,
  1047. "_id": ""
  1048. },
  1049. {
  1050. "__type__": "cc.PrefabInfo",
  1051. "root": {
  1052. "__id__": 1
  1053. },
  1054. "asset": {
  1055. "__id__": 0
  1056. },
  1057. "fileId": "12SvuxLppMDKZMbzT73gGL",
  1058. "sync": false,
  1059. "_synced": {
  1060. "default": false,
  1061. "serializable": false
  1062. }
  1063. },
  1064. {
  1065. "__type__": "cc.UITransformComponent",
  1066. "_name": "",
  1067. "_objFlags": 0,
  1068. "node": {
  1069. "__id__": 10
  1070. },
  1071. "_enabled": true,
  1072. "_priority": 0,
  1073. "_contentSize": {
  1074. "__type__": "cc.Size",
  1075. "width": 100,
  1076. "height": 100
  1077. },
  1078. "_anchorPoint": {
  1079. "__type__": "cc.Vec2",
  1080. "x": 0.5,
  1081. "y": 1
  1082. },
  1083. "_id": ""
  1084. },
  1085. {
  1086. "__type__": "cc.PrefabInfo",
  1087. "root": {
  1088. "__id__": 1
  1089. },
  1090. "asset": {
  1091. "__id__": 0
  1092. },
  1093. "fileId": "01U3xgRFhDzbb2uV8mRSEE",
  1094. "sync": false,
  1095. "_synced": {
  1096. "default": false,
  1097. "serializable": false
  1098. }
  1099. },
  1100. {
  1101. "__type__": "cc.Node",
  1102. "_name": "FenceButton",
  1103. "_objFlags": 0,
  1104. "_parent": {
  1105. "__id__": 1
  1106. },
  1107. "_children": [
  1108. {
  1109. "__id__": 35
  1110. },
  1111. {
  1112. "__id__": 39
  1113. },
  1114. {
  1115. "__id__": 43
  1116. }
  1117. ],
  1118. "_active": true,
  1119. "_components": [
  1120. {
  1121. "__id__": 47
  1122. },
  1123. {
  1124. "__id__": 48
  1125. },
  1126. {
  1127. "__id__": 49
  1128. }
  1129. ],
  1130. "_prefab": {
  1131. "__id__": 50
  1132. },
  1133. "_lpos": {
  1134. "__type__": "cc.Vec3",
  1135. "x": 88,
  1136. "y": 433.4369999999999,
  1137. "z": 0
  1138. },
  1139. "_lrot": {
  1140. "__type__": "cc.Quat",
  1141. "x": 0,
  1142. "y": 0,
  1143. "z": 0,
  1144. "w": 1
  1145. },
  1146. "_lscale": {
  1147. "__type__": "cc.Vec3",
  1148. "x": 1,
  1149. "y": 1,
  1150. "z": 1
  1151. },
  1152. "_layer": 33554432,
  1153. "_euler": {
  1154. "__type__": "cc.Vec3",
  1155. "x": 0,
  1156. "y": 0,
  1157. "z": 0
  1158. },
  1159. "_id": ""
  1160. },
  1161. {
  1162. "__type__": "cc.Node",
  1163. "_name": "TxtUp",
  1164. "_objFlags": 0,
  1165. "_parent": {
  1166. "__id__": 34
  1167. },
  1168. "_children": [],
  1169. "_active": true,
  1170. "_components": [
  1171. {
  1172. "__id__": 36
  1173. },
  1174. {
  1175. "__id__": 37
  1176. }
  1177. ],
  1178. "_prefab": {
  1179. "__id__": 38
  1180. },
  1181. "_lpos": {
  1182. "__type__": "cc.Vec3",
  1183. "x": 1,
  1184. "y": -2,
  1185. "z": 0
  1186. },
  1187. "_lrot": {
  1188. "__type__": "cc.Quat",
  1189. "x": 0,
  1190. "y": 0,
  1191. "z": 0,
  1192. "w": 1
  1193. },
  1194. "_lscale": {
  1195. "__type__": "cc.Vec3",
  1196. "x": 1,
  1197. "y": 1,
  1198. "z": 1
  1199. },
  1200. "_layer": 33554432,
  1201. "_euler": {
  1202. "__type__": "cc.Vec3",
  1203. "x": 0,
  1204. "y": 0,
  1205. "z": 0
  1206. },
  1207. "_id": ""
  1208. },
  1209. {
  1210. "__type__": "cc.UITransformComponent",
  1211. "_name": "",
  1212. "_objFlags": 0,
  1213. "node": {
  1214. "__id__": 35
  1215. },
  1216. "_enabled": true,
  1217. "_priority": 0,
  1218. "_contentSize": {
  1219. "__type__": "cc.Size",
  1220. "width": 100,
  1221. "height": 40
  1222. },
  1223. "_anchorPoint": {
  1224. "__type__": "cc.Vec2",
  1225. "x": 0.5,
  1226. "y": 0.5
  1227. },
  1228. "_id": ""
  1229. },
  1230. {
  1231. "__type__": "cc.LabelComponent",
  1232. "_name": "",
  1233. "_objFlags": 0,
  1234. "node": {
  1235. "__id__": 35
  1236. },
  1237. "_enabled": true,
  1238. "_srcBlendFactor": 2,
  1239. "_dstBlendFactor": 4,
  1240. "_color": {
  1241. "__type__": "cc.Color",
  1242. "r": 52,
  1243. "g": 76,
  1244. "b": 131,
  1245. "a": 255
  1246. },
  1247. "_sharedMaterial": null,
  1248. "_useOriginalSize": true,
  1249. "_string": "栅栏",
  1250. "_horizontalAlign": 1,
  1251. "_verticalAlign": 1,
  1252. "_actualFontSize": 32,
  1253. "_fontSize": 32,
  1254. "_fontFamily": "Arial",
  1255. "_lineHeight": 40,
  1256. "_overflow": 1,
  1257. "_enableWrapText": false,
  1258. "_font": null,
  1259. "_isSystemFontUsed": true,
  1260. "_isItalic": false,
  1261. "_isBold": false,
  1262. "_isUnderline": false,
  1263. "_cacheMode": 0,
  1264. "_id": ""
  1265. },
  1266. {
  1267. "__type__": "cc.PrefabInfo",
  1268. "root": {
  1269. "__id__": 1
  1270. },
  1271. "asset": {
  1272. "__id__": 0
  1273. },
  1274. "fileId": "229KKLuDNAm6urVkL1Zsqa",
  1275. "sync": false,
  1276. "_synced": {
  1277. "default": false,
  1278. "serializable": false
  1279. }
  1280. },
  1281. {
  1282. "__type__": "cc.Node",
  1283. "_name": "TxtDown",
  1284. "_objFlags": 0,
  1285. "_parent": {
  1286. "__id__": 34
  1287. },
  1288. "_children": [],
  1289. "_active": true,
  1290. "_components": [
  1291. {
  1292. "__id__": 40
  1293. },
  1294. {
  1295. "__id__": 41
  1296. }
  1297. ],
  1298. "_prefab": {
  1299. "__id__": 42
  1300. },
  1301. "_lpos": {
  1302. "__type__": "cc.Vec3",
  1303. "x": 1,
  1304. "y": -2,
  1305. "z": 0
  1306. },
  1307. "_lrot": {
  1308. "__type__": "cc.Quat",
  1309. "x": 0,
  1310. "y": 0,
  1311. "z": 0,
  1312. "w": 1
  1313. },
  1314. "_lscale": {
  1315. "__type__": "cc.Vec3",
  1316. "x": 1,
  1317. "y": 1,
  1318. "z": 1
  1319. },
  1320. "_layer": 33554432,
  1321. "_euler": {
  1322. "__type__": "cc.Vec3",
  1323. "x": 0,
  1324. "y": 0,
  1325. "z": 0
  1326. },
  1327. "_id": ""
  1328. },
  1329. {
  1330. "__type__": "cc.UITransformComponent",
  1331. "_name": "",
  1332. "_objFlags": 0,
  1333. "node": {
  1334. "__id__": 39
  1335. },
  1336. "_enabled": true,
  1337. "_priority": 0,
  1338. "_contentSize": {
  1339. "__type__": "cc.Size",
  1340. "width": 100,
  1341. "height": 40
  1342. },
  1343. "_anchorPoint": {
  1344. "__type__": "cc.Vec2",
  1345. "x": 0.5,
  1346. "y": 0.5
  1347. },
  1348. "_id": ""
  1349. },
  1350. {
  1351. "__type__": "cc.LabelComponent",
  1352. "_name": "",
  1353. "_objFlags": 0,
  1354. "node": {
  1355. "__id__": 39
  1356. },
  1357. "_enabled": true,
  1358. "_srcBlendFactor": 2,
  1359. "_dstBlendFactor": 4,
  1360. "_color": {
  1361. "__type__": "cc.Color",
  1362. "r": 0,
  1363. "g": 91,
  1364. "b": 173,
  1365. "a": 255
  1366. },
  1367. "_sharedMaterial": null,
  1368. "_useOriginalSize": true,
  1369. "_string": "栅栏",
  1370. "_horizontalAlign": 1,
  1371. "_verticalAlign": 1,
  1372. "_actualFontSize": 32,
  1373. "_fontSize": 32,
  1374. "_fontFamily": "Arial",
  1375. "_lineHeight": 40,
  1376. "_overflow": 1,
  1377. "_enableWrapText": false,
  1378. "_font": null,
  1379. "_isSystemFontUsed": true,
  1380. "_isItalic": false,
  1381. "_isBold": false,
  1382. "_isUnderline": false,
  1383. "_cacheMode": 0,
  1384. "_id": ""
  1385. },
  1386. {
  1387. "__type__": "cc.PrefabInfo",
  1388. "root": {
  1389. "__id__": 1
  1390. },
  1391. "asset": {
  1392. "__id__": 0
  1393. },
  1394. "fileId": "384Uh1TgdFNqqHYHgnY6ot",
  1395. "sync": false,
  1396. "_synced": {
  1397. "default": false,
  1398. "serializable": false
  1399. }
  1400. },
  1401. {
  1402. "__type__": "cc.Node",
  1403. "_name": "Tips",
  1404. "_objFlags": 0,
  1405. "_parent": {
  1406. "__id__": 34
  1407. },
  1408. "_children": [],
  1409. "_active": true,
  1410. "_components": [
  1411. {
  1412. "__id__": 44
  1413. },
  1414. {
  1415. "__id__": 45
  1416. }
  1417. ],
  1418. "_prefab": {
  1419. "__id__": 46
  1420. },
  1421. "_lpos": {
  1422. "__type__": "cc.Vec3",
  1423. "x": 115,
  1424. "y": 37,
  1425. "z": 0
  1426. },
  1427. "_lrot": {
  1428. "__type__": "cc.Quat",
  1429. "x": 0,
  1430. "y": 0,
  1431. "z": 0,
  1432. "w": 1
  1433. },
  1434. "_lscale": {
  1435. "__type__": "cc.Vec3",
  1436. "x": 1,
  1437. "y": 1,
  1438. "z": 1
  1439. },
  1440. "_layer": 33554432,
  1441. "_euler": {
  1442. "__type__": "cc.Vec3",
  1443. "x": 0,
  1444. "y": 0,
  1445. "z": 0
  1446. },
  1447. "_id": ""
  1448. },
  1449. {
  1450. "__type__": "cc.UITransformComponent",
  1451. "_name": "",
  1452. "_objFlags": 0,
  1453. "node": {
  1454. "__id__": 43
  1455. },
  1456. "_enabled": true,
  1457. "_priority": 0,
  1458. "_contentSize": {
  1459. "__type__": "cc.Size",
  1460. "width": 22,
  1461. "height": 22
  1462. },
  1463. "_anchorPoint": {
  1464. "__type__": "cc.Vec2",
  1465. "x": 0.5,
  1466. "y": 0.5
  1467. },
  1468. "_id": ""
  1469. },
  1470. {
  1471. "__type__": "cc.SpriteComponent",
  1472. "_name": "",
  1473. "_objFlags": 0,
  1474. "node": {
  1475. "__id__": 43
  1476. },
  1477. "_enabled": true,
  1478. "_srcBlendFactor": 2,
  1479. "_dstBlendFactor": 4,
  1480. "_color": {
  1481. "__type__": "cc.Color",
  1482. "r": 255,
  1483. "g": 255,
  1484. "b": 255,
  1485. "a": 255
  1486. },
  1487. "_sharedMaterial": null,
  1488. "_spriteFrame": {
  1489. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  1490. },
  1491. "_type": 0,
  1492. "_fillType": 0,
  1493. "_sizeMode": 1,
  1494. "_fillCenter": {
  1495. "__type__": "cc.Vec2",
  1496. "x": 0,
  1497. "y": 0
  1498. },
  1499. "_fillStart": 0,
  1500. "_fillRange": 0,
  1501. "_isTrimmedMode": true,
  1502. "_useGrayscale": false,
  1503. "_atlas": null,
  1504. "_id": ""
  1505. },
  1506. {
  1507. "__type__": "cc.PrefabInfo",
  1508. "root": {
  1509. "__id__": 1
  1510. },
  1511. "asset": {
  1512. "__id__": 0
  1513. },
  1514. "fileId": "f8zvlWSbVG/5xO9vNp+3c9",
  1515. "sync": false,
  1516. "_synced": {
  1517. "default": false,
  1518. "serializable": false
  1519. }
  1520. },
  1521. {
  1522. "__type__": "cc.UITransformComponent",
  1523. "_name": "",
  1524. "_objFlags": 0,
  1525. "node": {
  1526. "__id__": 34
  1527. },
  1528. "_enabled": true,
  1529. "_priority": 0,
  1530. "_contentSize": {
  1531. "__type__": "cc.Size",
  1532. "width": 236,
  1533. "height": 70
  1534. },
  1535. "_anchorPoint": {
  1536. "__type__": "cc.Vec2",
  1537. "x": 0.5,
  1538. "y": 0.5
  1539. },
  1540. "_id": ""
  1541. },
  1542. {
  1543. "__type__": "cc.SpriteComponent",
  1544. "_name": "",
  1545. "_objFlags": 0,
  1546. "node": {
  1547. "__id__": 34
  1548. },
  1549. "_enabled": true,
  1550. "_srcBlendFactor": 2,
  1551. "_dstBlendFactor": 4,
  1552. "_color": {
  1553. "__type__": "cc.Color",
  1554. "r": 255,
  1555. "g": 255,
  1556. "b": 255,
  1557. "a": 255
  1558. },
  1559. "_sharedMaterial": null,
  1560. "_spriteFrame": {
  1561. "__uuid__": "18ec5b98-cb9b-467b-b68e-e1136cdb6fef@f9941"
  1562. },
  1563. "_type": 1,
  1564. "_fillType": 0,
  1565. "_sizeMode": 0,
  1566. "_fillCenter": {
  1567. "__type__": "cc.Vec2",
  1568. "x": 0,
  1569. "y": 0
  1570. },
  1571. "_fillStart": 0,
  1572. "_fillRange": 0,
  1573. "_isTrimmedMode": true,
  1574. "_useGrayscale": false,
  1575. "_atlas": null,
  1576. "_id": ""
  1577. },
  1578. {
  1579. "__type__": "cc.ButtonComponent",
  1580. "_name": "",
  1581. "_objFlags": 0,
  1582. "node": {
  1583. "__id__": 34
  1584. },
  1585. "_enabled": true,
  1586. "clickEvents": [],
  1587. "_interactable": true,
  1588. "_transition": 2,
  1589. "_normalColor": {
  1590. "__type__": "cc.Color",
  1591. "r": 214,
  1592. "g": 214,
  1593. "b": 214,
  1594. "a": 255
  1595. },
  1596. "_hoverColor": {
  1597. "__type__": "cc.Color",
  1598. "r": 211,
  1599. "g": 211,
  1600. "b": 211,
  1601. "a": 255
  1602. },
  1603. "_pressColor": {
  1604. "__type__": "cc.Color",
  1605. "r": 255,
  1606. "g": 255,
  1607. "b": 255,
  1608. "a": 255
  1609. },
  1610. "_disabledColor": {
  1611. "__type__": "cc.Color",
  1612. "r": 124,
  1613. "g": 124,
  1614. "b": 124,
  1615. "a": 255
  1616. },
  1617. "_normalSprite": {
  1618. "__uuid__": "18ec5b98-cb9b-467b-b68e-e1136cdb6fef@f9941"
  1619. },
  1620. "_hoverSprite": {
  1621. "__uuid__": "9033e28f-9180-4f79-a5a7-5d58df0f7ab0@f9941"
  1622. },
  1623. "_pressedSprite": {
  1624. "__uuid__": "9033e28f-9180-4f79-a5a7-5d58df0f7ab0@f9941"
  1625. },
  1626. "_disabledSprite": {
  1627. "__uuid__": "18ec5b98-cb9b-467b-b68e-e1136cdb6fef@f9941"
  1628. },
  1629. "_duration": 0.1,
  1630. "_zoomScale": 1.2,
  1631. "_target": {
  1632. "__id__": 34
  1633. },
  1634. "_id": ""
  1635. },
  1636. {
  1637. "__type__": "cc.PrefabInfo",
  1638. "root": {
  1639. "__id__": 1
  1640. },
  1641. "asset": {
  1642. "__id__": 0
  1643. },
  1644. "fileId": "9eFZFhompISYwI+l3w0QAG",
  1645. "sync": false,
  1646. "_synced": {
  1647. "default": false,
  1648. "serializable": false
  1649. }
  1650. },
  1651. {
  1652. "__type__": "cc.Node",
  1653. "_name": "GunButton",
  1654. "_objFlags": 0,
  1655. "_parent": {
  1656. "__id__": 1
  1657. },
  1658. "_children": [
  1659. {
  1660. "__id__": 52
  1661. },
  1662. {
  1663. "__id__": 56
  1664. },
  1665. {
  1666. "__id__": 60
  1667. }
  1668. ],
  1669. "_active": true,
  1670. "_components": [
  1671. {
  1672. "__id__": 64
  1673. },
  1674. {
  1675. "__id__": 65
  1676. },
  1677. {
  1678. "__id__": 66
  1679. }
  1680. ],
  1681. "_prefab": {
  1682. "__id__": 67
  1683. },
  1684. "_lpos": {
  1685. "__type__": "cc.Vec3",
  1686. "x": -163,
  1687. "y": 433.4369999999999,
  1688. "z": 0
  1689. },
  1690. "_lrot": {
  1691. "__type__": "cc.Quat",
  1692. "x": 0,
  1693. "y": 0,
  1694. "z": 0,
  1695. "w": 1
  1696. },
  1697. "_lscale": {
  1698. "__type__": "cc.Vec3",
  1699. "x": 1,
  1700. "y": 1,
  1701. "z": 1
  1702. },
  1703. "_layer": 33554432,
  1704. "_euler": {
  1705. "__type__": "cc.Vec3",
  1706. "x": 0,
  1707. "y": 0,
  1708. "z": 0
  1709. },
  1710. "_id": ""
  1711. },
  1712. {
  1713. "__type__": "cc.Node",
  1714. "_name": "TxtUp",
  1715. "_objFlags": 0,
  1716. "_parent": {
  1717. "__id__": 51
  1718. },
  1719. "_children": [],
  1720. "_active": true,
  1721. "_components": [
  1722. {
  1723. "__id__": 53
  1724. },
  1725. {
  1726. "__id__": 54
  1727. }
  1728. ],
  1729. "_prefab": {
  1730. "__id__": 55
  1731. },
  1732. "_lpos": {
  1733. "__type__": "cc.Vec3",
  1734. "x": 1,
  1735. "y": -2,
  1736. "z": 0
  1737. },
  1738. "_lrot": {
  1739. "__type__": "cc.Quat",
  1740. "x": 0,
  1741. "y": 0,
  1742. "z": 0,
  1743. "w": 1
  1744. },
  1745. "_lscale": {
  1746. "__type__": "cc.Vec3",
  1747. "x": 1,
  1748. "y": 1,
  1749. "z": 1
  1750. },
  1751. "_layer": 33554432,
  1752. "_euler": {
  1753. "__type__": "cc.Vec3",
  1754. "x": 0,
  1755. "y": 0,
  1756. "z": 0
  1757. },
  1758. "_id": ""
  1759. },
  1760. {
  1761. "__type__": "cc.UITransformComponent",
  1762. "_name": "",
  1763. "_objFlags": 0,
  1764. "node": {
  1765. "__id__": 52
  1766. },
  1767. "_enabled": true,
  1768. "_priority": 0,
  1769. "_contentSize": {
  1770. "__type__": "cc.Size",
  1771. "width": 100,
  1772. "height": 40
  1773. },
  1774. "_anchorPoint": {
  1775. "__type__": "cc.Vec2",
  1776. "x": 0.5,
  1777. "y": 0.5
  1778. },
  1779. "_id": ""
  1780. },
  1781. {
  1782. "__type__": "cc.LabelComponent",
  1783. "_name": "",
  1784. "_objFlags": 0,
  1785. "node": {
  1786. "__id__": 52
  1787. },
  1788. "_enabled": true,
  1789. "_srcBlendFactor": 2,
  1790. "_dstBlendFactor": 4,
  1791. "_color": {
  1792. "__type__": "cc.Color",
  1793. "r": 52,
  1794. "g": 76,
  1795. "b": 131,
  1796. "a": 255
  1797. },
  1798. "_sharedMaterial": null,
  1799. "_useOriginalSize": true,
  1800. "_string": "枪械库",
  1801. "_horizontalAlign": 1,
  1802. "_verticalAlign": 1,
  1803. "_actualFontSize": 32,
  1804. "_fontSize": 32,
  1805. "_fontFamily": "Arial",
  1806. "_lineHeight": 40,
  1807. "_overflow": 1,
  1808. "_enableWrapText": false,
  1809. "_font": null,
  1810. "_isSystemFontUsed": true,
  1811. "_isItalic": false,
  1812. "_isBold": false,
  1813. "_isUnderline": false,
  1814. "_cacheMode": 0,
  1815. "_id": ""
  1816. },
  1817. {
  1818. "__type__": "cc.PrefabInfo",
  1819. "root": {
  1820. "__id__": 1
  1821. },
  1822. "asset": {
  1823. "__id__": 0
  1824. },
  1825. "fileId": "66y4Gkc7xC4bYjgPxZNavd",
  1826. "sync": false,
  1827. "_synced": {
  1828. "default": false,
  1829. "serializable": false
  1830. }
  1831. },
  1832. {
  1833. "__type__": "cc.Node",
  1834. "_name": "TxtDown",
  1835. "_objFlags": 0,
  1836. "_parent": {
  1837. "__id__": 51
  1838. },
  1839. "_children": [],
  1840. "_active": true,
  1841. "_components": [
  1842. {
  1843. "__id__": 57
  1844. },
  1845. {
  1846. "__id__": 58
  1847. }
  1848. ],
  1849. "_prefab": {
  1850. "__id__": 59
  1851. },
  1852. "_lpos": {
  1853. "__type__": "cc.Vec3",
  1854. "x": 1,
  1855. "y": -2,
  1856. "z": 0
  1857. },
  1858. "_lrot": {
  1859. "__type__": "cc.Quat",
  1860. "x": 0,
  1861. "y": 0,
  1862. "z": 0,
  1863. "w": 1
  1864. },
  1865. "_lscale": {
  1866. "__type__": "cc.Vec3",
  1867. "x": 1,
  1868. "y": 1,
  1869. "z": 1
  1870. },
  1871. "_layer": 33554432,
  1872. "_euler": {
  1873. "__type__": "cc.Vec3",
  1874. "x": 0,
  1875. "y": 0,
  1876. "z": 0
  1877. },
  1878. "_id": ""
  1879. },
  1880. {
  1881. "__type__": "cc.UITransformComponent",
  1882. "_name": "",
  1883. "_objFlags": 0,
  1884. "node": {
  1885. "__id__": 56
  1886. },
  1887. "_enabled": true,
  1888. "_priority": 0,
  1889. "_contentSize": {
  1890. "__type__": "cc.Size",
  1891. "width": 100,
  1892. "height": 40
  1893. },
  1894. "_anchorPoint": {
  1895. "__type__": "cc.Vec2",
  1896. "x": 0.5,
  1897. "y": 0.5
  1898. },
  1899. "_id": ""
  1900. },
  1901. {
  1902. "__type__": "cc.LabelComponent",
  1903. "_name": "",
  1904. "_objFlags": 0,
  1905. "node": {
  1906. "__id__": 56
  1907. },
  1908. "_enabled": true,
  1909. "_srcBlendFactor": 2,
  1910. "_dstBlendFactor": 4,
  1911. "_color": {
  1912. "__type__": "cc.Color",
  1913. "r": 0,
  1914. "g": 91,
  1915. "b": 173,
  1916. "a": 255
  1917. },
  1918. "_sharedMaterial": null,
  1919. "_useOriginalSize": true,
  1920. "_string": "枪械库",
  1921. "_horizontalAlign": 1,
  1922. "_verticalAlign": 1,
  1923. "_actualFontSize": 32,
  1924. "_fontSize": 32,
  1925. "_fontFamily": "Arial",
  1926. "_lineHeight": 40,
  1927. "_overflow": 1,
  1928. "_enableWrapText": false,
  1929. "_font": null,
  1930. "_isSystemFontUsed": true,
  1931. "_isItalic": false,
  1932. "_isBold": false,
  1933. "_isUnderline": false,
  1934. "_cacheMode": 0,
  1935. "_id": ""
  1936. },
  1937. {
  1938. "__type__": "cc.PrefabInfo",
  1939. "root": {
  1940. "__id__": 1
  1941. },
  1942. "asset": {
  1943. "__id__": 0
  1944. },
  1945. "fileId": "5afY1XA0xKiaBjhxgcpKIi",
  1946. "sync": false,
  1947. "_synced": {
  1948. "default": false,
  1949. "serializable": false
  1950. }
  1951. },
  1952. {
  1953. "__type__": "cc.Node",
  1954. "_name": "Tips",
  1955. "_objFlags": 0,
  1956. "_parent": {
  1957. "__id__": 51
  1958. },
  1959. "_children": [],
  1960. "_active": true,
  1961. "_components": [
  1962. {
  1963. "__id__": 61
  1964. },
  1965. {
  1966. "__id__": 62
  1967. }
  1968. ],
  1969. "_prefab": {
  1970. "__id__": 63
  1971. },
  1972. "_lpos": {
  1973. "__type__": "cc.Vec3",
  1974. "x": 115,
  1975. "y": 37,
  1976. "z": 0
  1977. },
  1978. "_lrot": {
  1979. "__type__": "cc.Quat",
  1980. "x": 0,
  1981. "y": 0,
  1982. "z": 0,
  1983. "w": 1
  1984. },
  1985. "_lscale": {
  1986. "__type__": "cc.Vec3",
  1987. "x": 1,
  1988. "y": 1,
  1989. "z": 1
  1990. },
  1991. "_layer": 33554432,
  1992. "_euler": {
  1993. "__type__": "cc.Vec3",
  1994. "x": 0,
  1995. "y": 0,
  1996. "z": 0
  1997. },
  1998. "_id": ""
  1999. },
  2000. {
  2001. "__type__": "cc.UITransformComponent",
  2002. "_name": "",
  2003. "_objFlags": 0,
  2004. "node": {
  2005. "__id__": 60
  2006. },
  2007. "_enabled": true,
  2008. "_priority": 0,
  2009. "_contentSize": {
  2010. "__type__": "cc.Size",
  2011. "width": 22,
  2012. "height": 22
  2013. },
  2014. "_anchorPoint": {
  2015. "__type__": "cc.Vec2",
  2016. "x": 0.5,
  2017. "y": 0.5
  2018. },
  2019. "_id": ""
  2020. },
  2021. {
  2022. "__type__": "cc.SpriteComponent",
  2023. "_name": "",
  2024. "_objFlags": 0,
  2025. "node": {
  2026. "__id__": 60
  2027. },
  2028. "_enabled": true,
  2029. "_srcBlendFactor": 2,
  2030. "_dstBlendFactor": 4,
  2031. "_color": {
  2032. "__type__": "cc.Color",
  2033. "r": 255,
  2034. "g": 255,
  2035. "b": 255,
  2036. "a": 255
  2037. },
  2038. "_sharedMaterial": null,
  2039. "_spriteFrame": {
  2040. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  2041. },
  2042. "_type": 0,
  2043. "_fillType": 0,
  2044. "_sizeMode": 1,
  2045. "_fillCenter": {
  2046. "__type__": "cc.Vec2",
  2047. "x": 0,
  2048. "y": 0
  2049. },
  2050. "_fillStart": 0,
  2051. "_fillRange": 0,
  2052. "_isTrimmedMode": true,
  2053. "_useGrayscale": false,
  2054. "_atlas": null,
  2055. "_id": ""
  2056. },
  2057. {
  2058. "__type__": "cc.PrefabInfo",
  2059. "root": {
  2060. "__id__": 1
  2061. },
  2062. "asset": {
  2063. "__id__": 0
  2064. },
  2065. "fileId": "a6y7mEFtpP1ZbpPCwFnCE0",
  2066. "sync": false,
  2067. "_synced": {
  2068. "default": false,
  2069. "serializable": false
  2070. }
  2071. },
  2072. {
  2073. "__type__": "cc.UITransformComponent",
  2074. "_name": "",
  2075. "_objFlags": 0,
  2076. "node": {
  2077. "__id__": 51
  2078. },
  2079. "_enabled": true,
  2080. "_priority": 0,
  2081. "_contentSize": {
  2082. "__type__": "cc.Size",
  2083. "width": 236,
  2084. "height": 70
  2085. },
  2086. "_anchorPoint": {
  2087. "__type__": "cc.Vec2",
  2088. "x": 0.5,
  2089. "y": 0.5
  2090. },
  2091. "_id": ""
  2092. },
  2093. {
  2094. "__type__": "cc.SpriteComponent",
  2095. "_name": "",
  2096. "_objFlags": 0,
  2097. "node": {
  2098. "__id__": 51
  2099. },
  2100. "_enabled": true,
  2101. "_srcBlendFactor": 2,
  2102. "_dstBlendFactor": 4,
  2103. "_color": {
  2104. "__type__": "cc.Color",
  2105. "r": 255,
  2106. "g": 255,
  2107. "b": 255,
  2108. "a": 255
  2109. },
  2110. "_sharedMaterial": null,
  2111. "_spriteFrame": {
  2112. "__uuid__": "18ec5b98-cb9b-467b-b68e-e1136cdb6fef@f9941"
  2113. },
  2114. "_type": 1,
  2115. "_fillType": 0,
  2116. "_sizeMode": 0,
  2117. "_fillCenter": {
  2118. "__type__": "cc.Vec2",
  2119. "x": 0,
  2120. "y": 0
  2121. },
  2122. "_fillStart": 0,
  2123. "_fillRange": 0,
  2124. "_isTrimmedMode": true,
  2125. "_useGrayscale": false,
  2126. "_atlas": null,
  2127. "_id": ""
  2128. },
  2129. {
  2130. "__type__": "cc.ButtonComponent",
  2131. "_name": "",
  2132. "_objFlags": 0,
  2133. "node": {
  2134. "__id__": 51
  2135. },
  2136. "_enabled": true,
  2137. "clickEvents": [],
  2138. "_interactable": true,
  2139. "_transition": 2,
  2140. "_normalColor": {
  2141. "__type__": "cc.Color",
  2142. "r": 214,
  2143. "g": 214,
  2144. "b": 214,
  2145. "a": 255
  2146. },
  2147. "_hoverColor": {
  2148. "__type__": "cc.Color",
  2149. "r": 211,
  2150. "g": 211,
  2151. "b": 211,
  2152. "a": 255
  2153. },
  2154. "_pressColor": {
  2155. "__type__": "cc.Color",
  2156. "r": 255,
  2157. "g": 255,
  2158. "b": 255,
  2159. "a": 255
  2160. },
  2161. "_disabledColor": {
  2162. "__type__": "cc.Color",
  2163. "r": 124,
  2164. "g": 124,
  2165. "b": 124,
  2166. "a": 255
  2167. },
  2168. "_normalSprite": {
  2169. "__uuid__": "18ec5b98-cb9b-467b-b68e-e1136cdb6fef@f9941"
  2170. },
  2171. "_hoverSprite": {
  2172. "__uuid__": "9033e28f-9180-4f79-a5a7-5d58df0f7ab0@f9941"
  2173. },
  2174. "_pressedSprite": {
  2175. "__uuid__": "9033e28f-9180-4f79-a5a7-5d58df0f7ab0@f9941"
  2176. },
  2177. "_disabledSprite": {
  2178. "__uuid__": "18ec5b98-cb9b-467b-b68e-e1136cdb6fef@f9941"
  2179. },
  2180. "_duration": 0.1,
  2181. "_zoomScale": 1.2,
  2182. "_target": {
  2183. "__id__": 51
  2184. },
  2185. "_id": ""
  2186. },
  2187. {
  2188. "__type__": "cc.PrefabInfo",
  2189. "root": {
  2190. "__id__": 1
  2191. },
  2192. "asset": {
  2193. "__id__": 0
  2194. },
  2195. "fileId": "21IMw0JrJDt5I3aXP2ay78",
  2196. "sync": false,
  2197. "_synced": {
  2198. "default": false,
  2199. "serializable": false
  2200. }
  2201. },
  2202. {
  2203. "__type__": "cc.Node",
  2204. "_name": "List",
  2205. "_objFlags": 0,
  2206. "_parent": {
  2207. "__id__": 1
  2208. },
  2209. "_children": [
  2210. {
  2211. "__id__": 69
  2212. }
  2213. ],
  2214. "_active": true,
  2215. "_components": [
  2216. {
  2217. "__id__": 73
  2218. },
  2219. {
  2220. "__id__": 74
  2221. },
  2222. {
  2223. "__id__": 75
  2224. },
  2225. {
  2226. "__id__": 76
  2227. }
  2228. ],
  2229. "_prefab": {
  2230. "__id__": 77
  2231. },
  2232. "_lpos": {
  2233. "__type__": "cc.Vec3",
  2234. "x": 0,
  2235. "y": 382,
  2236. "z": 0
  2237. },
  2238. "_lrot": {
  2239. "__type__": "cc.Quat",
  2240. "x": 0,
  2241. "y": 0,
  2242. "z": 0,
  2243. "w": 1
  2244. },
  2245. "_lscale": {
  2246. "__type__": "cc.Vec3",
  2247. "x": 1,
  2248. "y": 1,
  2249. "z": 1
  2250. },
  2251. "_layer": 1073741824,
  2252. "_euler": {
  2253. "__type__": "cc.Vec3",
  2254. "x": 0,
  2255. "y": 0,
  2256. "z": 0
  2257. },
  2258. "_id": ""
  2259. },
  2260. {
  2261. "__type__": "cc.Node",
  2262. "_name": "ListContent",
  2263. "_objFlags": 0,
  2264. "_parent": {
  2265. "__id__": 68
  2266. },
  2267. "_children": [],
  2268. "_active": true,
  2269. "_components": [
  2270. {
  2271. "__id__": 70
  2272. },
  2273. {
  2274. "__id__": 71
  2275. }
  2276. ],
  2277. "_prefab": {
  2278. "__id__": 72
  2279. },
  2280. "_lpos": {
  2281. "__type__": "cc.Vec3",
  2282. "x": 0,
  2283. "y": -382,
  2284. "z": 0
  2285. },
  2286. "_lrot": {
  2287. "__type__": "cc.Quat",
  2288. "x": 0,
  2289. "y": 0,
  2290. "z": 0,
  2291. "w": 1
  2292. },
  2293. "_lscale": {
  2294. "__type__": "cc.Vec3",
  2295. "x": 1,
  2296. "y": 1,
  2297. "z": 1
  2298. },
  2299. "_layer": 33554432,
  2300. "_euler": {
  2301. "__type__": "cc.Vec3",
  2302. "x": 0,
  2303. "y": 0,
  2304. "z": 0
  2305. },
  2306. "_id": ""
  2307. },
  2308. {
  2309. "__type__": "cc.UITransformComponent",
  2310. "_name": "ListContent<UITransformComponent>",
  2311. "_objFlags": 0,
  2312. "node": {
  2313. "__id__": 69
  2314. },
  2315. "_enabled": true,
  2316. "_priority": 0,
  2317. "_contentSize": {
  2318. "__type__": "cc.Size",
  2319. "width": 750,
  2320. "height": 760
  2321. },
  2322. "_anchorPoint": {
  2323. "__type__": "cc.Vec2",
  2324. "x": 0.5,
  2325. "y": 0.5
  2326. },
  2327. "_id": ""
  2328. },
  2329. {
  2330. "__type__": "cc.LayoutComponent",
  2331. "_name": "ListContent<LayoutComponent>",
  2332. "_objFlags": 0,
  2333. "node": {
  2334. "__id__": 69
  2335. },
  2336. "_enabled": true,
  2337. "_resizeMode": 1,
  2338. "_N$layoutType": 2,
  2339. "_N$padding": 0,
  2340. "_cellSize": {
  2341. "__type__": "cc.Size",
  2342. "width": 40,
  2343. "height": 40
  2344. },
  2345. "_startAxis": 0,
  2346. "_paddingLeft": 0,
  2347. "_paddingRight": 0,
  2348. "_paddingTop": 0,
  2349. "_paddingBottom": 0,
  2350. "_spacingX": 0,
  2351. "_spacingY": 10,
  2352. "_verticalDirection": 1,
  2353. "_horizontalDirection": 0,
  2354. "_affectedByScale": false,
  2355. "_id": ""
  2356. },
  2357. {
  2358. "__type__": "cc.PrefabInfo",
  2359. "root": {
  2360. "__id__": 1
  2361. },
  2362. "asset": {
  2363. "__id__": 0
  2364. },
  2365. "fileId": "478gzZbQdN0IY81ckfTuoY",
  2366. "sync": false,
  2367. "_synced": {
  2368. "default": false,
  2369. "serializable": false
  2370. }
  2371. },
  2372. {
  2373. "__type__": "cc.UITransformComponent",
  2374. "_name": "List<UITransformComponent>",
  2375. "_objFlags": 0,
  2376. "node": {
  2377. "__id__": 68
  2378. },
  2379. "_enabled": true,
  2380. "_priority": 0,
  2381. "_contentSize": {
  2382. "__type__": "cc.Size",
  2383. "width": 750,
  2384. "height": 720
  2385. },
  2386. "_anchorPoint": {
  2387. "__type__": "cc.Vec2",
  2388. "x": 0.5,
  2389. "y": 1
  2390. },
  2391. "_id": ""
  2392. },
  2393. {
  2394. "__type__": "cc.ScrollViewComponent",
  2395. "_name": "List<ScrollViewComponent>",
  2396. "_objFlags": 0,
  2397. "node": {
  2398. "__id__": 68
  2399. },
  2400. "_enabled": true,
  2401. "bounceDuration": 1,
  2402. "brake": 0.5,
  2403. "elastic": false,
  2404. "inertia": false,
  2405. "horizontal": false,
  2406. "vertical": true,
  2407. "cancelInnerEvents": true,
  2408. "scrollEvents": [],
  2409. "_content": {
  2410. "__id__": 69
  2411. },
  2412. "_horizontalScrollBar": null,
  2413. "_verticalScrollBar": null,
  2414. "_id": ""
  2415. },
  2416. {
  2417. "__type__": "cc.WidgetComponent",
  2418. "_name": "List<WidgetComponent>",
  2419. "_objFlags": 0,
  2420. "node": {
  2421. "__id__": 68
  2422. },
  2423. "_enabled": true,
  2424. "_alignFlags": 45,
  2425. "_target": null,
  2426. "_left": 0,
  2427. "_right": 0,
  2428. "_top": 285,
  2429. "_bottom": 329,
  2430. "_horizontalCenter": 0,
  2431. "_verticalCenter": 0,
  2432. "_isAbsLeft": true,
  2433. "_isAbsRight": true,
  2434. "_isAbsTop": true,
  2435. "_isAbsBottom": true,
  2436. "_isAbsHorizontalCenter": true,
  2437. "_isAbsVerticalCenter": true,
  2438. "_originalWidth": 100,
  2439. "_originalHeight": 100,
  2440. "_alignMode": 2,
  2441. "_lockFlags": 0,
  2442. "_id": ""
  2443. },
  2444. {
  2445. "__type__": "cc.MaskComponent",
  2446. "_name": "List<MaskComponent>",
  2447. "_objFlags": 0,
  2448. "node": {
  2449. "__id__": 68
  2450. },
  2451. "_enabled": true,
  2452. "_srcBlendFactor": 2,
  2453. "_dstBlendFactor": 4,
  2454. "_color": {
  2455. "__type__": "cc.Color",
  2456. "r": 255,
  2457. "g": 255,
  2458. "b": 255,
  2459. "a": 255
  2460. },
  2461. "_sharedMaterial": null,
  2462. "_type": 0,
  2463. "_inverted": false,
  2464. "_segments": 64,
  2465. "_id": ""
  2466. },
  2467. {
  2468. "__type__": "cc.PrefabInfo",
  2469. "root": {
  2470. "__id__": 1
  2471. },
  2472. "asset": {
  2473. "__id__": 0
  2474. },
  2475. "fileId": "50JwIp2M9BfrTwY8bBhNLC",
  2476. "sync": false,
  2477. "_synced": {
  2478. "default": false,
  2479. "serializable": false
  2480. }
  2481. },
  2482. {
  2483. "__type__": "cc.Node",
  2484. "_name": "TxtTips",
  2485. "_objFlags": 0,
  2486. "_parent": {
  2487. "__id__": 1
  2488. },
  2489. "_children": [],
  2490. "_active": true,
  2491. "_components": [
  2492. {
  2493. "__id__": 79
  2494. },
  2495. {
  2496. "__id__": 80
  2497. }
  2498. ],
  2499. "_prefab": {
  2500. "__id__": 81
  2501. },
  2502. "_lpos": {
  2503. "__type__": "cc.Vec3",
  2504. "x": 0,
  2505. "y": -396,
  2506. "z": 0
  2507. },
  2508. "_lrot": {
  2509. "__type__": "cc.Quat",
  2510. "x": 0,
  2511. "y": 0,
  2512. "z": 0,
  2513. "w": 1
  2514. },
  2515. "_lscale": {
  2516. "__type__": "cc.Vec3",
  2517. "x": 1,
  2518. "y": 1,
  2519. "z": 1
  2520. },
  2521. "_layer": 33554432,
  2522. "_euler": {
  2523. "__type__": "cc.Vec3",
  2524. "x": 0,
  2525. "y": 0,
  2526. "z": 0
  2527. },
  2528. "_id": ""
  2529. },
  2530. {
  2531. "__type__": "cc.UITransformComponent",
  2532. "_name": "",
  2533. "_objFlags": 0,
  2534. "node": {
  2535. "__id__": 78
  2536. },
  2537. "_enabled": true,
  2538. "_priority": 0,
  2539. "_contentSize": {
  2540. "__type__": "cc.Size",
  2541. "width": 208,
  2542. "height": 50.4
  2543. },
  2544. "_anchorPoint": {
  2545. "__type__": "cc.Vec2",
  2546. "x": 0.5,
  2547. "y": 0.5
  2548. },
  2549. "_id": ""
  2550. },
  2551. {
  2552. "__type__": "cc.LabelComponent",
  2553. "_name": "",
  2554. "_objFlags": 0,
  2555. "node": {
  2556. "__id__": 78
  2557. },
  2558. "_enabled": true,
  2559. "_srcBlendFactor": 2,
  2560. "_dstBlendFactor": 4,
  2561. "_color": {
  2562. "__type__": "cc.Color",
  2563. "r": 255,
  2564. "g": 255,
  2565. "b": 255,
  2566. "a": 255
  2567. },
  2568. "_sharedMaterial": null,
  2569. "_useOriginalSize": true,
  2570. "_string": "点击空白区域关闭",
  2571. "_horizontalAlign": 1,
  2572. "_verticalAlign": 1,
  2573. "_actualFontSize": 26,
  2574. "_fontSize": 26,
  2575. "_fontFamily": "Arial",
  2576. "_lineHeight": 40,
  2577. "_overflow": 0,
  2578. "_enableWrapText": true,
  2579. "_font": null,
  2580. "_isSystemFontUsed": true,
  2581. "_isItalic": false,
  2582. "_isBold": false,
  2583. "_isUnderline": false,
  2584. "_cacheMode": 0,
  2585. "_id": ""
  2586. },
  2587. {
  2588. "__type__": "cc.PrefabInfo",
  2589. "root": {
  2590. "__id__": 1
  2591. },
  2592. "asset": {
  2593. "__id__": 0
  2594. },
  2595. "fileId": "71zm+Xrq1P/4nSwsKhYZI/",
  2596. "sync": false,
  2597. "_synced": {
  2598. "default": false,
  2599. "serializable": false
  2600. }
  2601. },
  2602. {
  2603. "__type__": "cc.Node",
  2604. "_name": "TopGroup",
  2605. "_objFlags": 0,
  2606. "_parent": {
  2607. "__id__": 1
  2608. },
  2609. "_children": [
  2610. {
  2611. "__id__": 83
  2612. },
  2613. {
  2614. "__id__": 88
  2615. },
  2616. {
  2617. "__id__": 110
  2618. }
  2619. ],
  2620. "_active": true,
  2621. "_components": [
  2622. {
  2623. "__id__": 128
  2624. },
  2625. {
  2626. "__id__": 129
  2627. }
  2628. ],
  2629. "_prefab": {
  2630. "__id__": 130
  2631. },
  2632. "_lpos": {
  2633. "__type__": "cc.Vec3",
  2634. "x": -325,
  2635. "y": 600,
  2636. "z": 0
  2637. },
  2638. "_lrot": {
  2639. "__type__": "cc.Quat",
  2640. "x": 0,
  2641. "y": 0,
  2642. "z": 0,
  2643. "w": 1
  2644. },
  2645. "_lscale": {
  2646. "__type__": "cc.Vec3",
  2647. "x": 1,
  2648. "y": 1,
  2649. "z": 1
  2650. },
  2651. "_layer": 1073741824,
  2652. "_euler": {
  2653. "__type__": "cc.Vec3",
  2654. "x": 0,
  2655. "y": 0,
  2656. "z": 0
  2657. },
  2658. "_id": ""
  2659. },
  2660. {
  2661. "__type__": "cc.Node",
  2662. "_name": "BGIcondi",
  2663. "_objFlags": 0,
  2664. "_parent": {
  2665. "__id__": 82
  2666. },
  2667. "_children": [],
  2668. "_active": true,
  2669. "_components": [
  2670. {
  2671. "__id__": 84
  2672. },
  2673. {
  2674. "__id__": 85
  2675. },
  2676. {
  2677. "__id__": 86
  2678. }
  2679. ],
  2680. "_prefab": {
  2681. "__id__": 87
  2682. },
  2683. "_lpos": {
  2684. "__type__": "cc.Vec3",
  2685. "x": -50,
  2686. "y": -39,
  2687. "z": 0
  2688. },
  2689. "_lrot": {
  2690. "__type__": "cc.Quat",
  2691. "x": 0,
  2692. "y": 0,
  2693. "z": 0,
  2694. "w": 1
  2695. },
  2696. "_lscale": {
  2697. "__type__": "cc.Vec3",
  2698. "x": 1,
  2699. "y": 1,
  2700. "z": 1
  2701. },
  2702. "_layer": 33554432,
  2703. "_euler": {
  2704. "__type__": "cc.Vec3",
  2705. "x": 0,
  2706. "y": 0,
  2707. "z": 0
  2708. },
  2709. "_id": ""
  2710. },
  2711. {
  2712. "__type__": "cc.UITransformComponent",
  2713. "_name": "BGIcondi<UITransformComponent>",
  2714. "_objFlags": 0,
  2715. "node": {
  2716. "__id__": 83
  2717. },
  2718. "_enabled": true,
  2719. "_priority": 0,
  2720. "_contentSize": {
  2721. "__type__": "cc.Size",
  2722. "width": 703,
  2723. "height": 76
  2724. },
  2725. "_anchorPoint": {
  2726. "__type__": "cc.Vec2",
  2727. "x": 0,
  2728. "y": 0.5
  2729. },
  2730. "_id": ""
  2731. },
  2732. {
  2733. "__type__": "cc.SpriteComponent",
  2734. "_name": "BGIcondi<SpriteComponent>",
  2735. "_objFlags": 0,
  2736. "node": {
  2737. "__id__": 83
  2738. },
  2739. "_enabled": true,
  2740. "_srcBlendFactor": 2,
  2741. "_dstBlendFactor": 4,
  2742. "_color": {
  2743. "__type__": "cc.Color",
  2744. "r": 255,
  2745. "g": 255,
  2746. "b": 255,
  2747. "a": 255
  2748. },
  2749. "_sharedMaterial": null,
  2750. "_spriteFrame": {
  2751. "__uuid__": "86138ab3-01a0-4ce6-97d3-15225731f529@f9941"
  2752. },
  2753. "_type": 0,
  2754. "_fillType": 0,
  2755. "_sizeMode": 1,
  2756. "_fillCenter": {
  2757. "__type__": "cc.Vec2",
  2758. "x": 0,
  2759. "y": 0
  2760. },
  2761. "_fillStart": 0,
  2762. "_fillRange": 0,
  2763. "_isTrimmedMode": true,
  2764. "_useGrayscale": false,
  2765. "_atlas": null,
  2766. "_id": ""
  2767. },
  2768. {
  2769. "__type__": "cc.WidgetComponent",
  2770. "_name": "BGIcondi<WidgetComponent>",
  2771. "_objFlags": 0,
  2772. "node": {
  2773. "__id__": 83
  2774. },
  2775. "_enabled": true,
  2776. "_alignFlags": 9,
  2777. "_target": null,
  2778. "_left": 0,
  2779. "_right": 0,
  2780. "_top": 51,
  2781. "_bottom": 0,
  2782. "_horizontalCenter": 0,
  2783. "_verticalCenter": 0,
  2784. "_isAbsLeft": true,
  2785. "_isAbsRight": true,
  2786. "_isAbsTop": true,
  2787. "_isAbsBottom": true,
  2788. "_isAbsHorizontalCenter": true,
  2789. "_isAbsVerticalCenter": true,
  2790. "_originalWidth": 0,
  2791. "_originalHeight": 0,
  2792. "_alignMode": 2,
  2793. "_lockFlags": 0,
  2794. "_id": ""
  2795. },
  2796. {
  2797. "__type__": "cc.PrefabInfo",
  2798. "root": {
  2799. "__id__": 1
  2800. },
  2801. "asset": {
  2802. "__id__": 0
  2803. },
  2804. "fileId": "9263iwhTNBzrxkVpIdoIg/",
  2805. "sync": false,
  2806. "_synced": {
  2807. "default": false,
  2808. "serializable": false
  2809. }
  2810. },
  2811. {
  2812. "__type__": "cc.Node",
  2813. "_name": "GlodView",
  2814. "_objFlags": 0,
  2815. "_parent": {
  2816. "__id__": 82
  2817. },
  2818. "_children": [
  2819. {
  2820. "__id__": 89
  2821. },
  2822. {
  2823. "__id__": 94
  2824. },
  2825. {
  2826. "__id__": 98
  2827. },
  2828. {
  2829. "__id__": 102
  2830. }
  2831. ],
  2832. "_active": true,
  2833. "_components": [
  2834. {
  2835. "__id__": 106
  2836. },
  2837. {
  2838. "__id__": 107
  2839. },
  2840. {
  2841. "__id__": 108
  2842. }
  2843. ],
  2844. "_prefab": {
  2845. "__id__": 109
  2846. },
  2847. "_lpos": {
  2848. "__type__": "cc.Vec3",
  2849. "x": 56,
  2850. "y": -38.090000000000146,
  2851. "z": 0
  2852. },
  2853. "_lrot": {
  2854. "__type__": "cc.Quat",
  2855. "x": 0,
  2856. "y": 0,
  2857. "z": 0,
  2858. "w": 1
  2859. },
  2860. "_lscale": {
  2861. "__type__": "cc.Vec3",
  2862. "x": 1,
  2863. "y": 1,
  2864. "z": 1
  2865. },
  2866. "_layer": 1073741824,
  2867. "_euler": {
  2868. "__type__": "cc.Vec3",
  2869. "x": 0,
  2870. "y": 0,
  2871. "z": 0
  2872. },
  2873. "_id": ""
  2874. },
  2875. {
  2876. "__type__": "cc.Node",
  2877. "_name": "Background",
  2878. "_objFlags": 0,
  2879. "_parent": {
  2880. "__id__": 88
  2881. },
  2882. "_children": [],
  2883. "_active": true,
  2884. "_components": [
  2885. {
  2886. "__id__": 90
  2887. },
  2888. {
  2889. "__id__": 91
  2890. },
  2891. {
  2892. "__id__": 92
  2893. }
  2894. ],
  2895. "_prefab": {
  2896. "__id__": 93
  2897. },
  2898. "_lpos": {
  2899. "__type__": "cc.Vec3",
  2900. "x": 63,
  2901. "y": 0,
  2902. "z": 0
  2903. },
  2904. "_lrot": {
  2905. "__type__": "cc.Quat",
  2906. "x": 0,
  2907. "y": 0,
  2908. "z": 0,
  2909. "w": 1
  2910. },
  2911. "_lscale": {
  2912. "__type__": "cc.Vec3",
  2913. "x": 1,
  2914. "y": 1,
  2915. "z": 1
  2916. },
  2917. "_layer": 33554432,
  2918. "_euler": {
  2919. "__type__": "cc.Vec3",
  2920. "x": 0,
  2921. "y": 0,
  2922. "z": 0
  2923. },
  2924. "_id": ""
  2925. },
  2926. {
  2927. "__type__": "cc.UITransformComponent",
  2928. "_name": "Background<UITransformComponent>",
  2929. "_objFlags": 0,
  2930. "node": {
  2931. "__id__": 89
  2932. },
  2933. "_enabled": true,
  2934. "_priority": 0,
  2935. "_contentSize": {
  2936. "__type__": "cc.Size",
  2937. "width": 250,
  2938. "height": 40
  2939. },
  2940. "_anchorPoint": {
  2941. "__type__": "cc.Vec2",
  2942. "x": 0.5,
  2943. "y": 0.5
  2944. },
  2945. "_id": ""
  2946. },
  2947. {
  2948. "__type__": "cc.SpriteComponent",
  2949. "_name": "Background<SpriteComponent>",
  2950. "_objFlags": 0,
  2951. "node": {
  2952. "__id__": 89
  2953. },
  2954. "_enabled": true,
  2955. "_srcBlendFactor": 2,
  2956. "_dstBlendFactor": 4,
  2957. "_color": {
  2958. "__type__": "cc.Color",
  2959. "r": 255,
  2960. "g": 255,
  2961. "b": 255,
  2962. "a": 255
  2963. },
  2964. "_sharedMaterial": null,
  2965. "_spriteFrame": {
  2966. "__uuid__": "72e319bc-562c-4474-b068-4d153e08dc18@f9941"
  2967. },
  2968. "_type": 1,
  2969. "_fillType": 0,
  2970. "_sizeMode": 0,
  2971. "_fillCenter": {
  2972. "__type__": "cc.Vec2",
  2973. "x": 0,
  2974. "y": 0
  2975. },
  2976. "_fillStart": 0,
  2977. "_fillRange": 0,
  2978. "_isTrimmedMode": true,
  2979. "_useGrayscale": false,
  2980. "_atlas": null,
  2981. "_id": ""
  2982. },
  2983. {
  2984. "__type__": "cc.UIOpacityComponent",
  2985. "_name": "Background<UIOpacityComponent>",
  2986. "_objFlags": 0,
  2987. "node": {
  2988. "__id__": 89
  2989. },
  2990. "_enabled": true,
  2991. "_opacity": 125,
  2992. "_id": ""
  2993. },
  2994. {
  2995. "__type__": "cc.PrefabInfo",
  2996. "root": {
  2997. "__id__": 1
  2998. },
  2999. "asset": {
  3000. "__id__": 0
  3001. },
  3002. "fileId": "adwjwg+YdLLKB233yHP/cO",
  3003. "sync": false,
  3004. "_synced": {
  3005. "default": false,
  3006. "serializable": false
  3007. }
  3008. },
  3009. {
  3010. "__type__": "cc.Node",
  3011. "_name": "GlodIcon",
  3012. "_objFlags": 0,
  3013. "_parent": {
  3014. "__id__": 88
  3015. },
  3016. "_children": [],
  3017. "_active": true,
  3018. "_components": [
  3019. {
  3020. "__id__": 95
  3021. },
  3022. {
  3023. "__id__": 96
  3024. }
  3025. ],
  3026. "_prefab": {
  3027. "__id__": 97
  3028. },
  3029. "_lpos": {
  3030. "__type__": "cc.Vec3",
  3031. "x": -60,
  3032. "y": -3,
  3033. "z": 0
  3034. },
  3035. "_lrot": {
  3036. "__type__": "cc.Quat",
  3037. "x": 0,
  3038. "y": 0,
  3039. "z": 0,
  3040. "w": 1
  3041. },
  3042. "_lscale": {
  3043. "__type__": "cc.Vec3",
  3044. "x": 1,
  3045. "y": 1,
  3046. "z": 1
  3047. },
  3048. "_layer": 33554432,
  3049. "_euler": {
  3050. "__type__": "cc.Vec3",
  3051. "x": 0,
  3052. "y": 0,
  3053. "z": 0
  3054. },
  3055. "_id": ""
  3056. },
  3057. {
  3058. "__type__": "cc.UITransformComponent",
  3059. "_name": "GlodIcon<UITransformComponent>",
  3060. "_objFlags": 0,
  3061. "node": {
  3062. "__id__": 94
  3063. },
  3064. "_enabled": true,
  3065. "_priority": 0,
  3066. "_contentSize": {
  3067. "__type__": "cc.Size",
  3068. "width": 50,
  3069. "height": 49
  3070. },
  3071. "_anchorPoint": {
  3072. "__type__": "cc.Vec2",
  3073. "x": 0.5,
  3074. "y": 0.5
  3075. },
  3076. "_id": ""
  3077. },
  3078. {
  3079. "__type__": "cc.SpriteComponent",
  3080. "_name": "GlodIcon<SpriteComponent>",
  3081. "_objFlags": 0,
  3082. "node": {
  3083. "__id__": 94
  3084. },
  3085. "_enabled": true,
  3086. "_srcBlendFactor": 2,
  3087. "_dstBlendFactor": 4,
  3088. "_color": {
  3089. "__type__": "cc.Color",
  3090. "r": 255,
  3091. "g": 255,
  3092. "b": 255,
  3093. "a": 255
  3094. },
  3095. "_sharedMaterial": null,
  3096. "_spriteFrame": {
  3097. "__uuid__": "0b44fc8c-d664-46d8-bddf-1514caec8e51@f9941"
  3098. },
  3099. "_type": 0,
  3100. "_fillType": 0,
  3101. "_sizeMode": 1,
  3102. "_fillCenter": {
  3103. "__type__": "cc.Vec2",
  3104. "x": 0,
  3105. "y": 0
  3106. },
  3107. "_fillStart": 0,
  3108. "_fillRange": 0,
  3109. "_isTrimmedMode": true,
  3110. "_useGrayscale": false,
  3111. "_atlas": null,
  3112. "_id": ""
  3113. },
  3114. {
  3115. "__type__": "cc.PrefabInfo",
  3116. "root": {
  3117. "__id__": 1
  3118. },
  3119. "asset": {
  3120. "__id__": 0
  3121. },
  3122. "fileId": "cd85aeKZtLCrZi/8/kCEZ2",
  3123. "sync": false,
  3124. "_synced": {
  3125. "default": false,
  3126. "serializable": false
  3127. }
  3128. },
  3129. {
  3130. "__type__": "cc.Node",
  3131. "_name": "GlodNum1",
  3132. "_objFlags": 0,
  3133. "_parent": {
  3134. "__id__": 88
  3135. },
  3136. "_children": [],
  3137. "_active": true,
  3138. "_components": [
  3139. {
  3140. "__id__": 99
  3141. },
  3142. {
  3143. "__id__": 100
  3144. }
  3145. ],
  3146. "_prefab": {
  3147. "__id__": 101
  3148. },
  3149. "_lpos": {
  3150. "__type__": "cc.Vec3",
  3151. "x": -12,
  3152. "y": -1,
  3153. "z": 0
  3154. },
  3155. "_lrot": {
  3156. "__type__": "cc.Quat",
  3157. "x": 0,
  3158. "y": 0,
  3159. "z": 0,
  3160. "w": 1
  3161. },
  3162. "_lscale": {
  3163. "__type__": "cc.Vec3",
  3164. "x": 1,
  3165. "y": 1,
  3166. "z": 1
  3167. },
  3168. "_layer": 33554432,
  3169. "_euler": {
  3170. "__type__": "cc.Vec3",
  3171. "x": 0,
  3172. "y": 0,
  3173. "z": 0
  3174. },
  3175. "_id": ""
  3176. },
  3177. {
  3178. "__type__": "cc.UITransformComponent",
  3179. "_name": "Label<UITransformComponent>",
  3180. "_objFlags": 0,
  3181. "node": {
  3182. "__id__": 98
  3183. },
  3184. "_enabled": true,
  3185. "_priority": 0,
  3186. "_contentSize": {
  3187. "__type__": "cc.Size",
  3188. "width": 80.05,
  3189. "height": 50.4
  3190. },
  3191. "_anchorPoint": {
  3192. "__type__": "cc.Vec2",
  3193. "x": 0,
  3194. "y": 0.5
  3195. },
  3196. "_id": ""
  3197. },
  3198. {
  3199. "__type__": "cc.LabelComponent",
  3200. "_name": "Label<LabelComponent>",
  3201. "_objFlags": 0,
  3202. "node": {
  3203. "__id__": 98
  3204. },
  3205. "_enabled": true,
  3206. "_srcBlendFactor": 2,
  3207. "_dstBlendFactor": 4,
  3208. "_color": {
  3209. "__type__": "cc.Color",
  3210. "r": 255,
  3211. "g": 237,
  3212. "b": 105,
  3213. "a": 255
  3214. },
  3215. "_sharedMaterial": null,
  3216. "_useOriginalSize": true,
  3217. "_string": "10.2K",
  3218. "_horizontalAlign": 0,
  3219. "_verticalAlign": 1,
  3220. "_actualFontSize": 30,
  3221. "_fontSize": 30,
  3222. "_fontFamily": "Arial",
  3223. "_lineHeight": 40,
  3224. "_overflow": 0,
  3225. "_enableWrapText": true,
  3226. "_font": null,
  3227. "_isSystemFontUsed": true,
  3228. "_isItalic": false,
  3229. "_isBold": true,
  3230. "_isUnderline": false,
  3231. "_cacheMode": 0,
  3232. "_id": ""
  3233. },
  3234. {
  3235. "__type__": "cc.PrefabInfo",
  3236. "root": {
  3237. "__id__": 1
  3238. },
  3239. "asset": {
  3240. "__id__": 0
  3241. },
  3242. "fileId": "96Ye3oYOFIFq6SBMqCtrXm",
  3243. "sync": false,
  3244. "_synced": {
  3245. "default": false,
  3246. "serializable": false
  3247. }
  3248. },
  3249. {
  3250. "__type__": "cc.Node",
  3251. "_name": "GlodNum2",
  3252. "_objFlags": 0,
  3253. "_parent": {
  3254. "__id__": 88
  3255. },
  3256. "_children": [],
  3257. "_active": true,
  3258. "_components": [
  3259. {
  3260. "__id__": 103
  3261. },
  3262. {
  3263. "__id__": 104
  3264. }
  3265. ],
  3266. "_prefab": {
  3267. "__id__": 105
  3268. },
  3269. "_lpos": {
  3270. "__type__": "cc.Vec3",
  3271. "x": 182.789,
  3272. "y": -1,
  3273. "z": 0
  3274. },
  3275. "_lrot": {
  3276. "__type__": "cc.Quat",
  3277. "x": 0,
  3278. "y": 0,
  3279. "z": 0,
  3280. "w": 1
  3281. },
  3282. "_lscale": {
  3283. "__type__": "cc.Vec3",
  3284. "x": 1,
  3285. "y": 1,
  3286. "z": 1
  3287. },
  3288. "_layer": 33554432,
  3289. "_euler": {
  3290. "__type__": "cc.Vec3",
  3291. "x": 0,
  3292. "y": 0,
  3293. "z": 0
  3294. },
  3295. "_id": ""
  3296. },
  3297. {
  3298. "__type__": "cc.UITransformComponent",
  3299. "_name": "Label<UITransformComponent>",
  3300. "_objFlags": 0,
  3301. "node": {
  3302. "__id__": 102
  3303. },
  3304. "_enabled": true,
  3305. "_priority": 0,
  3306. "_contentSize": {
  3307. "__type__": "cc.Size",
  3308. "width": 43.02,
  3309. "height": 50.4
  3310. },
  3311. "_anchorPoint": {
  3312. "__type__": "cc.Vec2",
  3313. "x": 1,
  3314. "y": 0.5
  3315. },
  3316. "_id": ""
  3317. },
  3318. {
  3319. "__type__": "cc.LabelComponent",
  3320. "_name": "Label<LabelComponent>",
  3321. "_objFlags": 0,
  3322. "node": {
  3323. "__id__": 102
  3324. },
  3325. "_enabled": true,
  3326. "_srcBlendFactor": 2,
  3327. "_dstBlendFactor": 4,
  3328. "_color": {
  3329. "__type__": "cc.Color",
  3330. "r": 255,
  3331. "g": 237,
  3332. "b": 105,
  3333. "a": 255
  3334. },
  3335. "_sharedMaterial": null,
  3336. "_useOriginalSize": true,
  3337. "_string": "10/秒",
  3338. "_horizontalAlign": 2,
  3339. "_verticalAlign": 1,
  3340. "_actualFontSize": 18,
  3341. "_fontSize": 18,
  3342. "_fontFamily": "Arial",
  3343. "_lineHeight": 40,
  3344. "_overflow": 0,
  3345. "_enableWrapText": true,
  3346. "_font": null,
  3347. "_isSystemFontUsed": true,
  3348. "_isItalic": false,
  3349. "_isBold": true,
  3350. "_isUnderline": false,
  3351. "_cacheMode": 0,
  3352. "_id": ""
  3353. },
  3354. {
  3355. "__type__": "cc.PrefabInfo",
  3356. "root": {
  3357. "__id__": 1
  3358. },
  3359. "asset": {
  3360. "__id__": 0
  3361. },
  3362. "fileId": "98v1cu0NpHs5i+rZl2EevR",
  3363. "sync": false,
  3364. "_synced": {
  3365. "default": false,
  3366. "serializable": false
  3367. }
  3368. },
  3369. {
  3370. "__type__": "cc.UITransformComponent",
  3371. "_name": "GlodView<UITransformComponent>",
  3372. "_objFlags": 0,
  3373. "node": {
  3374. "__id__": 88
  3375. },
  3376. "_enabled": true,
  3377. "_priority": 0,
  3378. "_contentSize": {
  3379. "__type__": "cc.Size",
  3380. "width": 100,
  3381. "height": 100
  3382. },
  3383. "_anchorPoint": {
  3384. "__type__": "cc.Vec2",
  3385. "x": 0.5,
  3386. "y": 0.5
  3387. },
  3388. "_id": ""
  3389. },
  3390. {
  3391. "__type__": "cc.WidgetComponent",
  3392. "_name": "GlodView<WidgetComponent>",
  3393. "_objFlags": 0,
  3394. "node": {
  3395. "__id__": 88
  3396. },
  3397. "_enabled": true,
  3398. "_alignFlags": 9,
  3399. "_target": null,
  3400. "_left": 56,
  3401. "_right": 0,
  3402. "_top": 38.090000000000146,
  3403. "_bottom": 0,
  3404. "_horizontalCenter": 0,
  3405. "_verticalCenter": 0,
  3406. "_isAbsLeft": true,
  3407. "_isAbsRight": true,
  3408. "_isAbsTop": true,
  3409. "_isAbsBottom": true,
  3410. "_isAbsHorizontalCenter": true,
  3411. "_isAbsVerticalCenter": true,
  3412. "_originalWidth": 0,
  3413. "_originalHeight": 0,
  3414. "_alignMode": 2,
  3415. "_lockFlags": 0,
  3416. "_id": ""
  3417. },
  3418. {
  3419. "__type__": "cc.WidgetComponent",
  3420. "_name": "GlodView<WidgetComponent>",
  3421. "_objFlags": 0,
  3422. "node": {
  3423. "__id__": 88
  3424. },
  3425. "_enabled": true,
  3426. "_alignFlags": 9,
  3427. "_target": null,
  3428. "_left": -1599.6799999999998,
  3429. "_right": 0,
  3430. "_top": 38.090000000000146,
  3431. "_bottom": 0,
  3432. "_horizontalCenter": 0,
  3433. "_verticalCenter": 0,
  3434. "_isAbsLeft": true,
  3435. "_isAbsRight": true,
  3436. "_isAbsTop": true,
  3437. "_isAbsBottom": true,
  3438. "_isAbsHorizontalCenter": true,
  3439. "_isAbsVerticalCenter": true,
  3440. "_originalWidth": 0,
  3441. "_originalHeight": 0,
  3442. "_alignMode": 2,
  3443. "_lockFlags": 0,
  3444. "_id": ""
  3445. },
  3446. {
  3447. "__type__": "cc.PrefabInfo",
  3448. "root": {
  3449. "__id__": 1
  3450. },
  3451. "asset": {
  3452. "__id__": 0
  3453. },
  3454. "fileId": "7doTmonHdDq6/QJRr7SxXU",
  3455. "sync": false,
  3456. "_synced": {
  3457. "default": false,
  3458. "serializable": false
  3459. }
  3460. },
  3461. {
  3462. "__type__": "cc.Node",
  3463. "_name": "DiamondView",
  3464. "_objFlags": 0,
  3465. "_parent": {
  3466. "__id__": 82
  3467. },
  3468. "_children": [
  3469. {
  3470. "__id__": 111
  3471. },
  3472. {
  3473. "__id__": 116
  3474. },
  3475. {
  3476. "__id__": 120
  3477. }
  3478. ],
  3479. "_active": true,
  3480. "_components": [
  3481. {
  3482. "__id__": 124
  3483. },
  3484. {
  3485. "__id__": 125
  3486. },
  3487. {
  3488. "__id__": 126
  3489. }
  3490. ],
  3491. "_prefab": {
  3492. "__id__": 127
  3493. },
  3494. "_lpos": {
  3495. "__type__": "cc.Vec3",
  3496. "x": 368,
  3497. "y": -38.090000000000146,
  3498. "z": 0
  3499. },
  3500. "_lrot": {
  3501. "__type__": "cc.Quat",
  3502. "x": 0,
  3503. "y": 0,
  3504. "z": 0,
  3505. "w": 1
  3506. },
  3507. "_lscale": {
  3508. "__type__": "cc.Vec3",
  3509. "x": 1,
  3510. "y": 1,
  3511. "z": 1
  3512. },
  3513. "_layer": 1073741824,
  3514. "_euler": {
  3515. "__type__": "cc.Vec3",
  3516. "x": 0,
  3517. "y": 0,
  3518. "z": 0
  3519. },
  3520. "_id": ""
  3521. },
  3522. {
  3523. "__type__": "cc.Node",
  3524. "_name": "Background",
  3525. "_objFlags": 0,
  3526. "_parent": {
  3527. "__id__": 110
  3528. },
  3529. "_children": [],
  3530. "_active": true,
  3531. "_components": [
  3532. {
  3533. "__id__": 112
  3534. },
  3535. {
  3536. "__id__": 113
  3537. },
  3538. {
  3539. "__id__": 114
  3540. }
  3541. ],
  3542. "_prefab": {
  3543. "__id__": 115
  3544. },
  3545. "_lpos": {
  3546. "__type__": "cc.Vec3",
  3547. "x": -60,
  3548. "y": 0,
  3549. "z": 0
  3550. },
  3551. "_lrot": {
  3552. "__type__": "cc.Quat",
  3553. "x": 0,
  3554. "y": 0,
  3555. "z": 0,
  3556. "w": 1
  3557. },
  3558. "_lscale": {
  3559. "__type__": "cc.Vec3",
  3560. "x": 1,
  3561. "y": 1,
  3562. "z": 1
  3563. },
  3564. "_layer": 33554432,
  3565. "_euler": {
  3566. "__type__": "cc.Vec3",
  3567. "x": 0,
  3568. "y": 0,
  3569. "z": 0
  3570. },
  3571. "_id": ""
  3572. },
  3573. {
  3574. "__type__": "cc.UITransformComponent",
  3575. "_name": "Background<UITransformComponent>",
  3576. "_objFlags": 0,
  3577. "node": {
  3578. "__id__": 111
  3579. },
  3580. "_enabled": true,
  3581. "_priority": 0,
  3582. "_contentSize": {
  3583. "__type__": "cc.Size",
  3584. "width": 120,
  3585. "height": 40
  3586. },
  3587. "_anchorPoint": {
  3588. "__type__": "cc.Vec2",
  3589. "x": 0,
  3590. "y": 0.5
  3591. },
  3592. "_id": ""
  3593. },
  3594. {
  3595. "__type__": "cc.SpriteComponent",
  3596. "_name": "Background<SpriteComponent>",
  3597. "_objFlags": 0,
  3598. "node": {
  3599. "__id__": 111
  3600. },
  3601. "_enabled": true,
  3602. "_srcBlendFactor": 2,
  3603. "_dstBlendFactor": 4,
  3604. "_color": {
  3605. "__type__": "cc.Color",
  3606. "r": 255,
  3607. "g": 255,
  3608. "b": 255,
  3609. "a": 255
  3610. },
  3611. "_sharedMaterial": null,
  3612. "_spriteFrame": {
  3613. "__uuid__": "72e319bc-562c-4474-b068-4d153e08dc18@f9941"
  3614. },
  3615. "_type": 1,
  3616. "_fillType": 0,
  3617. "_sizeMode": 0,
  3618. "_fillCenter": {
  3619. "__type__": "cc.Vec2",
  3620. "x": 0,
  3621. "y": 0
  3622. },
  3623. "_fillStart": 0,
  3624. "_fillRange": 0,
  3625. "_isTrimmedMode": true,
  3626. "_useGrayscale": false,
  3627. "_atlas": null,
  3628. "_id": ""
  3629. },
  3630. {
  3631. "__type__": "cc.UIOpacityComponent",
  3632. "_name": "Background<UIOpacityComponent>",
  3633. "_objFlags": 0,
  3634. "node": {
  3635. "__id__": 111
  3636. },
  3637. "_enabled": true,
  3638. "_opacity": 125,
  3639. "_id": ""
  3640. },
  3641. {
  3642. "__type__": "cc.PrefabInfo",
  3643. "root": {
  3644. "__id__": 1
  3645. },
  3646. "asset": {
  3647. "__id__": 0
  3648. },
  3649. "fileId": "07DeXKVktNg47ejSLweAl4",
  3650. "sync": false,
  3651. "_synced": {
  3652. "default": false,
  3653. "serializable": false
  3654. }
  3655. },
  3656. {
  3657. "__type__": "cc.Node",
  3658. "_name": "DiamondIcon",
  3659. "_objFlags": 0,
  3660. "_parent": {
  3661. "__id__": 110
  3662. },
  3663. "_children": [],
  3664. "_active": true,
  3665. "_components": [
  3666. {
  3667. "__id__": 117
  3668. },
  3669. {
  3670. "__id__": 118
  3671. }
  3672. ],
  3673. "_prefab": {
  3674. "__id__": 119
  3675. },
  3676. "_lpos": {
  3677. "__type__": "cc.Vec3",
  3678. "x": -60,
  3679. "y": -3,
  3680. "z": 0
  3681. },
  3682. "_lrot": {
  3683. "__type__": "cc.Quat",
  3684. "x": 0,
  3685. "y": 0,
  3686. "z": 0,
  3687. "w": 1
  3688. },
  3689. "_lscale": {
  3690. "__type__": "cc.Vec3",
  3691. "x": 1,
  3692. "y": 1,
  3693. "z": 1
  3694. },
  3695. "_layer": 33554432,
  3696. "_euler": {
  3697. "__type__": "cc.Vec3",
  3698. "x": 0,
  3699. "y": 0,
  3700. "z": 0
  3701. },
  3702. "_id": ""
  3703. },
  3704. {
  3705. "__type__": "cc.UITransformComponent",
  3706. "_name": "GlodIcon<UITransformComponent>",
  3707. "_objFlags": 0,
  3708. "node": {
  3709. "__id__": 116
  3710. },
  3711. "_enabled": true,
  3712. "_priority": 0,
  3713. "_contentSize": {
  3714. "__type__": "cc.Size",
  3715. "width": 55,
  3716. "height": 45
  3717. },
  3718. "_anchorPoint": {
  3719. "__type__": "cc.Vec2",
  3720. "x": 0.5,
  3721. "y": 0.5
  3722. },
  3723. "_id": ""
  3724. },
  3725. {
  3726. "__type__": "cc.SpriteComponent",
  3727. "_name": "GlodIcon<SpriteComponent>",
  3728. "_objFlags": 0,
  3729. "node": {
  3730. "__id__": 116
  3731. },
  3732. "_enabled": true,
  3733. "_srcBlendFactor": 2,
  3734. "_dstBlendFactor": 4,
  3735. "_color": {
  3736. "__type__": "cc.Color",
  3737. "r": 255,
  3738. "g": 255,
  3739. "b": 255,
  3740. "a": 255
  3741. },
  3742. "_sharedMaterial": null,
  3743. "_spriteFrame": {
  3744. "__uuid__": "7865e301-00a2-4137-8aa1-d46f75335e03@f9941"
  3745. },
  3746. "_type": 0,
  3747. "_fillType": 0,
  3748. "_sizeMode": 1,
  3749. "_fillCenter": {
  3750. "__type__": "cc.Vec2",
  3751. "x": 0,
  3752. "y": 0
  3753. },
  3754. "_fillStart": 0,
  3755. "_fillRange": 0,
  3756. "_isTrimmedMode": true,
  3757. "_useGrayscale": false,
  3758. "_atlas": null,
  3759. "_id": ""
  3760. },
  3761. {
  3762. "__type__": "cc.PrefabInfo",
  3763. "root": {
  3764. "__id__": 1
  3765. },
  3766. "asset": {
  3767. "__id__": 0
  3768. },
  3769. "fileId": "b8LNpi/tZAWqGHmsSCfpGG",
  3770. "sync": false,
  3771. "_synced": {
  3772. "default": false,
  3773. "serializable": false
  3774. }
  3775. },
  3776. {
  3777. "__type__": "cc.Node",
  3778. "_name": "DiamondNum",
  3779. "_objFlags": 0,
  3780. "_parent": {
  3781. "__id__": 110
  3782. },
  3783. "_children": [],
  3784. "_active": true,
  3785. "_components": [
  3786. {
  3787. "__id__": 121
  3788. },
  3789. {
  3790. "__id__": 122
  3791. }
  3792. ],
  3793. "_prefab": {
  3794. "__id__": 123
  3795. },
  3796. "_lpos": {
  3797. "__type__": "cc.Vec3",
  3798. "x": 3.073,
  3799. "y": -1,
  3800. "z": 0
  3801. },
  3802. "_lrot": {
  3803. "__type__": "cc.Quat",
  3804. "x": 0,
  3805. "y": 0,
  3806. "z": 0,
  3807. "w": 1
  3808. },
  3809. "_lscale": {
  3810. "__type__": "cc.Vec3",
  3811. "x": 1,
  3812. "y": 1,
  3813. "z": 1
  3814. },
  3815. "_layer": 33554432,
  3816. "_euler": {
  3817. "__type__": "cc.Vec3",
  3818. "x": 0,
  3819. "y": 0,
  3820. "z": 0
  3821. },
  3822. "_id": ""
  3823. },
  3824. {
  3825. "__type__": "cc.UITransformComponent",
  3826. "_name": "Label<UITransformComponent>",
  3827. "_objFlags": 0,
  3828. "node": {
  3829. "__id__": 120
  3830. },
  3831. "_enabled": true,
  3832. "_priority": 0,
  3833. "_contentSize": {
  3834. "__type__": "cc.Size",
  3835. "width": 16.68,
  3836. "height": 50.4
  3837. },
  3838. "_anchorPoint": {
  3839. "__type__": "cc.Vec2",
  3840. "x": 0,
  3841. "y": 0.5
  3842. },
  3843. "_id": ""
  3844. },
  3845. {
  3846. "__type__": "cc.LabelComponent",
  3847. "_name": "Label<LabelComponent>",
  3848. "_objFlags": 0,
  3849. "node": {
  3850. "__id__": 120
  3851. },
  3852. "_enabled": true,
  3853. "_srcBlendFactor": 2,
  3854. "_dstBlendFactor": 4,
  3855. "_color": {
  3856. "__type__": "cc.Color",
  3857. "r": 255,
  3858. "g": 237,
  3859. "b": 105,
  3860. "a": 255
  3861. },
  3862. "_sharedMaterial": null,
  3863. "_useOriginalSize": true,
  3864. "_string": "2",
  3865. "_horizontalAlign": 1,
  3866. "_verticalAlign": 1,
  3867. "_actualFontSize": 30,
  3868. "_fontSize": 30,
  3869. "_fontFamily": "Arial",
  3870. "_lineHeight": 40,
  3871. "_overflow": 0,
  3872. "_enableWrapText": true,
  3873. "_font": null,
  3874. "_isSystemFontUsed": true,
  3875. "_isItalic": false,
  3876. "_isBold": true,
  3877. "_isUnderline": false,
  3878. "_cacheMode": 0,
  3879. "_id": ""
  3880. },
  3881. {
  3882. "__type__": "cc.PrefabInfo",
  3883. "root": {
  3884. "__id__": 1
  3885. },
  3886. "asset": {
  3887. "__id__": 0
  3888. },
  3889. "fileId": "5fquFadStH/IPvjvpFjcDb",
  3890. "sync": false,
  3891. "_synced": {
  3892. "default": false,
  3893. "serializable": false
  3894. }
  3895. },
  3896. {
  3897. "__type__": "cc.UITransformComponent",
  3898. "_name": "DiamondView<UITransformComponent>",
  3899. "_objFlags": 0,
  3900. "node": {
  3901. "__id__": 110
  3902. },
  3903. "_enabled": true,
  3904. "_priority": 0,
  3905. "_contentSize": {
  3906. "__type__": "cc.Size",
  3907. "width": 100,
  3908. "height": 100
  3909. },
  3910. "_anchorPoint": {
  3911. "__type__": "cc.Vec2",
  3912. "x": 0.5,
  3913. "y": 0.5
  3914. },
  3915. "_id": ""
  3916. },
  3917. {
  3918. "__type__": "cc.WidgetComponent",
  3919. "_name": "DiamondView<WidgetComponent>",
  3920. "_objFlags": 0,
  3921. "node": {
  3922. "__id__": 110
  3923. },
  3924. "_enabled": true,
  3925. "_alignFlags": 9,
  3926. "_target": null,
  3927. "_left": 368,
  3928. "_right": 0,
  3929. "_top": 38.090000000000146,
  3930. "_bottom": 0,
  3931. "_horizontalCenter": 0,
  3932. "_verticalCenter": 0,
  3933. "_isAbsLeft": true,
  3934. "_isAbsRight": true,
  3935. "_isAbsTop": true,
  3936. "_isAbsBottom": true,
  3937. "_isAbsHorizontalCenter": true,
  3938. "_isAbsVerticalCenter": true,
  3939. "_originalWidth": 0,
  3940. "_originalHeight": 0,
  3941. "_alignMode": 2,
  3942. "_lockFlags": 0,
  3943. "_id": ""
  3944. },
  3945. {
  3946. "__type__": "cc.WidgetComponent",
  3947. "_name": "DiamondView<WidgetComponent>",
  3948. "_objFlags": 0,
  3949. "node": {
  3950. "__id__": 110
  3951. },
  3952. "_enabled": true,
  3953. "_alignFlags": 9,
  3954. "_target": null,
  3955. "_left": -2928.6429999999987,
  3956. "_right": 0,
  3957. "_top": 38.09000000000617,
  3958. "_bottom": 0,
  3959. "_horizontalCenter": 0,
  3960. "_verticalCenter": 0,
  3961. "_isAbsLeft": true,
  3962. "_isAbsRight": true,
  3963. "_isAbsTop": true,
  3964. "_isAbsBottom": true,
  3965. "_isAbsHorizontalCenter": true,
  3966. "_isAbsVerticalCenter": true,
  3967. "_originalWidth": 0,
  3968. "_originalHeight": 0,
  3969. "_alignMode": 2,
  3970. "_lockFlags": 0,
  3971. "_id": ""
  3972. },
  3973. {
  3974. "__type__": "cc.PrefabInfo",
  3975. "root": {
  3976. "__id__": 1
  3977. },
  3978. "asset": {
  3979. "__id__": 0
  3980. },
  3981. "fileId": "c0zbEb1DVMUbnBHVNP2gMX",
  3982. "sync": false,
  3983. "_synced": {
  3984. "default": false,
  3985. "serializable": false
  3986. }
  3987. },
  3988. {
  3989. "__type__": "cc.UITransformComponent",
  3990. "_name": "TopGroup<UITransformComponent>",
  3991. "_objFlags": 0,
  3992. "node": {
  3993. "__id__": 82
  3994. },
  3995. "_enabled": true,
  3996. "_priority": 0,
  3997. "_contentSize": {
  3998. "__type__": "cc.Size",
  3999. "width": 100,
  4000. "height": 100
  4001. },
  4002. "_anchorPoint": {
  4003. "__type__": "cc.Vec2",
  4004. "x": 0.5,
  4005. "y": 0.5
  4006. },
  4007. "_id": ""
  4008. },
  4009. {
  4010. "__type__": "cc.WidgetComponent",
  4011. "_name": "TopGroup<WidgetComponent>",
  4012. "_objFlags": 0,
  4013. "node": {
  4014. "__id__": 82
  4015. },
  4016. "_enabled": true,
  4017. "_alignFlags": 9,
  4018. "_target": null,
  4019. "_left": 0,
  4020. "_right": 0,
  4021. "_top": 17,
  4022. "_bottom": 0,
  4023. "_horizontalCenter": 0,
  4024. "_verticalCenter": 0,
  4025. "_isAbsLeft": true,
  4026. "_isAbsRight": true,
  4027. "_isAbsTop": true,
  4028. "_isAbsBottom": true,
  4029. "_isAbsHorizontalCenter": true,
  4030. "_isAbsVerticalCenter": true,
  4031. "_originalWidth": 0,
  4032. "_originalHeight": 0,
  4033. "_alignMode": 2,
  4034. "_lockFlags": 0,
  4035. "_id": ""
  4036. },
  4037. {
  4038. "__type__": "cc.PrefabInfo",
  4039. "root": {
  4040. "__id__": 1
  4041. },
  4042. "asset": {
  4043. "__id__": 0
  4044. },
  4045. "fileId": "6fgsIy069Bj6YMVP62Twt3",
  4046. "sync": false,
  4047. "_synced": {
  4048. "default": false,
  4049. "serializable": false
  4050. }
  4051. },
  4052. {
  4053. "__type__": "cc.Node",
  4054. "_name": "design",
  4055. "_objFlags": 0,
  4056. "_parent": {
  4057. "__id__": 1
  4058. },
  4059. "_children": [],
  4060. "_active": false,
  4061. "_components": [
  4062. {
  4063. "__id__": 132
  4064. },
  4065. {
  4066. "__id__": 133
  4067. },
  4068. {
  4069. "__id__": 134
  4070. }
  4071. ],
  4072. "_prefab": {
  4073. "__id__": 135
  4074. },
  4075. "_lpos": {
  4076. "__type__": "cc.Vec3",
  4077. "x": 0,
  4078. "y": 0,
  4079. "z": 0
  4080. },
  4081. "_lrot": {
  4082. "__type__": "cc.Quat",
  4083. "x": 0,
  4084. "y": 0,
  4085. "z": 0,
  4086. "w": 1
  4087. },
  4088. "_lscale": {
  4089. "__type__": "cc.Vec3",
  4090. "x": 1,
  4091. "y": 1,
  4092. "z": 1
  4093. },
  4094. "_layer": 33554432,
  4095. "_euler": {
  4096. "__type__": "cc.Vec3",
  4097. "x": 0,
  4098. "y": 0,
  4099. "z": 0
  4100. },
  4101. "_id": ""
  4102. },
  4103. {
  4104. "__type__": "cc.UITransformComponent",
  4105. "_name": "",
  4106. "_objFlags": 0,
  4107. "node": {
  4108. "__id__": 131
  4109. },
  4110. "_enabled": true,
  4111. "_priority": 0,
  4112. "_contentSize": {
  4113. "__type__": "cc.Size",
  4114. "width": 750,
  4115. "height": 1334
  4116. },
  4117. "_anchorPoint": {
  4118. "__type__": "cc.Vec2",
  4119. "x": 0.5,
  4120. "y": 0.5
  4121. },
  4122. "_id": ""
  4123. },
  4124. {
  4125. "__type__": "cc.SpriteComponent",
  4126. "_name": "",
  4127. "_objFlags": 0,
  4128. "node": {
  4129. "__id__": 131
  4130. },
  4131. "_enabled": true,
  4132. "_srcBlendFactor": 2,
  4133. "_dstBlendFactor": 4,
  4134. "_color": {
  4135. "__type__": "cc.Color",
  4136. "r": 255,
  4137. "g": 255,
  4138. "b": 255,
  4139. "a": 255
  4140. },
  4141. "_sharedMaterial": null,
  4142. "_spriteFrame": {
  4143. "__uuid__": "93c86176-13a7-40a8-9d9d-ddbf4436abe6@f9941"
  4144. },
  4145. "_type": 0,
  4146. "_fillType": 0,
  4147. "_sizeMode": 1,
  4148. "_fillCenter": {
  4149. "__type__": "cc.Vec2",
  4150. "x": 0,
  4151. "y": 0
  4152. },
  4153. "_fillStart": 0,
  4154. "_fillRange": 0,
  4155. "_isTrimmedMode": true,
  4156. "_useGrayscale": false,
  4157. "_atlas": null,
  4158. "_id": ""
  4159. },
  4160. {
  4161. "__type__": "cc.UIOpacityComponent",
  4162. "_name": "",
  4163. "_objFlags": 0,
  4164. "node": {
  4165. "__id__": 131
  4166. },
  4167. "_enabled": true,
  4168. "_opacity": 100,
  4169. "_id": ""
  4170. },
  4171. {
  4172. "__type__": "cc.PrefabInfo",
  4173. "root": {
  4174. "__id__": 1
  4175. },
  4176. "asset": {
  4177. "__id__": 0
  4178. },
  4179. "fileId": "f6yHYB8Z9FVYyxYNpnxNKK",
  4180. "sync": false,
  4181. "_synced": {
  4182. "default": false,
  4183. "serializable": false
  4184. }
  4185. },
  4186. {
  4187. "__type__": "cc.UITransformComponent",
  4188. "_name": "ShopUI<UITransformComponent>",
  4189. "_objFlags": 0,
  4190. "node": {
  4191. "__id__": 1
  4192. },
  4193. "_enabled": true,
  4194. "_priority": 0,
  4195. "_contentSize": {
  4196. "__type__": "cc.Size",
  4197. "width": 750,
  4198. "height": 1334
  4199. },
  4200. "_anchorPoint": {
  4201. "__type__": "cc.Vec2",
  4202. "x": 0.5,
  4203. "y": 0.5
  4204. },
  4205. "_id": ""
  4206. },
  4207. {
  4208. "__type__": "cc.WidgetComponent",
  4209. "_name": "ShopUI<WidgetComponent>",
  4210. "_objFlags": 0,
  4211. "node": {
  4212. "__id__": 1
  4213. },
  4214. "_enabled": true,
  4215. "_alignFlags": 45,
  4216. "_target": null,
  4217. "_left": 0,
  4218. "_right": 0,
  4219. "_top": 0,
  4220. "_bottom": 0,
  4221. "_horizontalCenter": 0,
  4222. "_verticalCenter": 0,
  4223. "_isAbsLeft": true,
  4224. "_isAbsRight": true,
  4225. "_isAbsTop": true,
  4226. "_isAbsBottom": true,
  4227. "_isAbsHorizontalCenter": true,
  4228. "_isAbsVerticalCenter": true,
  4229. "_originalWidth": 100,
  4230. "_originalHeight": 100,
  4231. "_alignMode": 2,
  4232. "_lockFlags": 0,
  4233. "_id": ""
  4234. },
  4235. {
  4236. "__type__": "37fe6LfvF5F0pkrzYdfUpH2",
  4237. "_name": "ShopUI<ShopMediator>",
  4238. "_objFlags": 0,
  4239. "node": {
  4240. "__id__": 1
  4241. },
  4242. "_enabled": true,
  4243. "glodLabel": {
  4244. "__id__": 100
  4245. },
  4246. "glodLabel1": {
  4247. "__id__": 104
  4248. },
  4249. "diamondLabel": {
  4250. "__id__": 122
  4251. },
  4252. "ListItemRenderPrefab": {
  4253. "__uuid__": "d9ffbd75-c8be-4aaa-aaef-3ccd42b04917"
  4254. },
  4255. "ListContext": {
  4256. "__id__": 71
  4257. },
  4258. "List": {
  4259. "__id__": 74
  4260. },
  4261. "_id": ""
  4262. },
  4263. {
  4264. "__type__": "cc.PrefabInfo",
  4265. "root": {
  4266. "__id__": 1
  4267. },
  4268. "asset": {
  4269. "__id__": 0
  4270. },
  4271. "fileId": "bblbsbKp1B1b/EQeit52L2",
  4272. "sync": false,
  4273. "_synced": {
  4274. "default": false,
  4275. "serializable": false
  4276. }
  4277. }
  4278. ]