ShopUI.prefab 75 KB

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