EquipChoose.prefab 78 KB

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