EquipOperate.prefab 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "EquipOperate",
  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": "EquipOperate",
  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__": 186
  35. },
  36. {
  37. "__id__": 188
  38. },
  39. {
  40. "__id__": 190
  41. },
  42. {
  43. "__id__": 192
  44. },
  45. {
  46. "__id__": 194
  47. }
  48. ],
  49. "_prefab": {
  50. "__id__": 196
  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": 1073741824,
  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__": 14
  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": "47UCA5479F5qcrF8yuiJmZ"
  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": "50fXHTzh9OPoEPD2HGCn2W"
  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": "f2Ft+0lBJEK5+VHKPfaWpu"
  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": "6e6hX5uNhH2KdheYHwUeok"
  270. },
  271. {
  272. "__type__": "cc.Button",
  273. "_name": "",
  274. "_objFlags": 0,
  275. "__editorExtras__": {},
  276. "node": {
  277. "__id__": 2
  278. },
  279. "_enabled": true,
  280. "__prefab": {
  281. "__id__": 12
  282. },
  283. "clickEvents": [
  284. {
  285. "__id__": 13
  286. }
  287. ],
  288. "_interactable": true,
  289. "_transition": 0,
  290. "_normalColor": {
  291. "__type__": "cc.Color",
  292. "r": 255,
  293. "g": 255,
  294. "b": 255,
  295. "a": 255
  296. },
  297. "_hoverColor": {
  298. "__type__": "cc.Color",
  299. "r": 211,
  300. "g": 211,
  301. "b": 211,
  302. "a": 255
  303. },
  304. "_pressedColor": {
  305. "__type__": "cc.Color",
  306. "r": 255,
  307. "g": 255,
  308. "b": 255,
  309. "a": 255
  310. },
  311. "_disabledColor": {
  312. "__type__": "cc.Color",
  313. "r": 124,
  314. "g": 124,
  315. "b": 124,
  316. "a": 255
  317. },
  318. "_normalSprite": null,
  319. "_hoverSprite": null,
  320. "_pressedSprite": null,
  321. "_disabledSprite": null,
  322. "_duration": 0.1,
  323. "_zoomScale": 1.2,
  324. "_target": null,
  325. "_id": ""
  326. },
  327. {
  328. "__type__": "cc.CompPrefabInfo",
  329. "fileId": "bbuWQrsWhK9YK4V/oaqp76"
  330. },
  331. {
  332. "__type__": "cc.ClickEvent",
  333. "target": {
  334. "__id__": 1
  335. },
  336. "component": "",
  337. "_componentId": "4223a0+Eo1D/atb7FG7q28T",
  338. "handler": "onTouchButton",
  339. "customEventData": ""
  340. },
  341. {
  342. "__type__": "cc.BlockInputEvents",
  343. "_name": "",
  344. "_objFlags": 0,
  345. "__editorExtras__": {},
  346. "node": {
  347. "__id__": 2
  348. },
  349. "_enabled": true,
  350. "__prefab": {
  351. "__id__": 15
  352. },
  353. "_id": ""
  354. },
  355. {
  356. "__type__": "cc.CompPrefabInfo",
  357. "fileId": "f1KjbBNBlJIqdF87SwpQ3p"
  358. },
  359. {
  360. "__type__": "cc.PrefabInfo",
  361. "root": {
  362. "__id__": 1
  363. },
  364. "asset": {
  365. "__id__": 0
  366. },
  367. "fileId": "81DDEjx0FHqKKwl99KhALW",
  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": "5emZhlTBJNopUyax8W9t62"
  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": "22rEyXUnBP27YcJCTTUmeF"
  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": "26xyeqMh9GaqyrYcfrFXmg"
  593. },
  594. {
  595. "__type__": "cc.PrefabInfo",
  596. "root": {
  597. "__id__": 1
  598. },
  599. "asset": {
  600. "__id__": 0
  601. },
  602. "fileId": "44SnTmRo9MGY20DfFm7KBI",
  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": "f1q5FmVR9NF6R35xk5ClxB"
  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": "468ulwlTJNfLHx6lvImrt/"
  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": "31HE6Y1uJKY6jkRRq0O/Mv"
  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": "0b7If7Wa1EnrlhnywGwZM4"
  760. },
  761. {
  762. "__type__": "cc.PrefabInfo",
  763. "root": {
  764. "__id__": 1
  765. },
  766. "asset": {
  767. "__id__": 0
  768. },
  769. "fileId": "9b33JD+4FOMI1mJLVQ3GC3",
  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__": 78
  791. },
  792. {
  793. "__id__": 94
  794. },
  795. {
  796. "__id__": 124
  797. }
  798. ],
  799. "_active": true,
  800. "_components": [
  801. {
  802. "__id__": 173
  803. },
  804. {
  805. "__id__": 175
  806. },
  807. {
  808. "__id__": 177
  809. },
  810. {
  811. "__id__": 179
  812. },
  813. {
  814. "__id__": 181
  815. },
  816. {
  817. "__id__": 183
  818. }
  819. ],
  820. "_prefab": {
  821. "__id__": 185
  822. },
  823. "_lpos": {
  824. "__type__": "cc.Vec3",
  825. "x": 0,
  826. "y": 0,
  827. "z": 0
  828. },
  829. "_lrot": {
  830. "__type__": "cc.Quat",
  831. "x": 0,
  832. "y": 0,
  833. "z": 0,
  834. "w": 1
  835. },
  836. "_lscale": {
  837. "__type__": "cc.Vec3",
  838. "x": 1,
  839. "y": 1,
  840. "z": 1
  841. },
  842. "_mobility": 0,
  843. "_layer": 33554432,
  844. "_euler": {
  845. "__type__": "cc.Vec3",
  846. "x": 0,
  847. "y": 0,
  848. "z": 0
  849. },
  850. "_id": ""
  851. },
  852. {
  853. "__type__": "cc.Node",
  854. "_name": "title_node",
  855. "_objFlags": 0,
  856. "__editorExtras__": {},
  857. "_parent": {
  858. "__id__": 35
  859. },
  860. "_children": [
  861. {
  862. "__id__": 37
  863. },
  864. {
  865. "__id__": 43
  866. }
  867. ],
  868. "_active": true,
  869. "_components": [
  870. {
  871. "__id__": 49
  872. }
  873. ],
  874. "_prefab": {
  875. "__id__": 51
  876. },
  877. "_lpos": {
  878. "__type__": "cc.Vec3",
  879. "x": 0,
  880. "y": 295,
  881. "z": 0
  882. },
  883. "_lrot": {
  884. "__type__": "cc.Quat",
  885. "x": 0,
  886. "y": 0,
  887. "z": 0,
  888. "w": 1
  889. },
  890. "_lscale": {
  891. "__type__": "cc.Vec3",
  892. "x": 1,
  893. "y": 1,
  894. "z": 1
  895. },
  896. "_mobility": 0,
  897. "_layer": 33554432,
  898. "_euler": {
  899. "__type__": "cc.Vec3",
  900. "x": 0,
  901. "y": 0,
  902. "z": 0
  903. },
  904. "_id": ""
  905. },
  906. {
  907. "__type__": "cc.Node",
  908. "_name": "title_tx",
  909. "_objFlags": 0,
  910. "__editorExtras__": {},
  911. "_parent": {
  912. "__id__": 36
  913. },
  914. "_children": [],
  915. "_active": true,
  916. "_components": [
  917. {
  918. "__id__": 38
  919. },
  920. {
  921. "__id__": 40
  922. }
  923. ],
  924. "_prefab": {
  925. "__id__": 42
  926. },
  927. "_lpos": {
  928. "__type__": "cc.Vec3",
  929. "x": 0,
  930. "y": 14,
  931. "z": 0
  932. },
  933. "_lrot": {
  934. "__type__": "cc.Quat",
  935. "x": 0,
  936. "y": 0,
  937. "z": 0,
  938. "w": 1
  939. },
  940. "_lscale": {
  941. "__type__": "cc.Vec3",
  942. "x": 1,
  943. "y": 1,
  944. "z": 1
  945. },
  946. "_mobility": 0,
  947. "_layer": 33554432,
  948. "_euler": {
  949. "__type__": "cc.Vec3",
  950. "x": 0,
  951. "y": 0,
  952. "z": 0
  953. },
  954. "_id": ""
  955. },
  956. {
  957. "__type__": "cc.UITransform",
  958. "_name": "",
  959. "_objFlags": 0,
  960. "__editorExtras__": {},
  961. "node": {
  962. "__id__": 37
  963. },
  964. "_enabled": true,
  965. "__prefab": {
  966. "__id__": 39
  967. },
  968. "_contentSize": {
  969. "__type__": "cc.Size",
  970. "width": 70.33984375,
  971. "height": 41.28
  972. },
  973. "_anchorPoint": {
  974. "__type__": "cc.Vec2",
  975. "x": 0.5,
  976. "y": 0.5
  977. },
  978. "_id": ""
  979. },
  980. {
  981. "__type__": "cc.CompPrefabInfo",
  982. "fileId": "b77iWSrx5N06tTNelYeEAu"
  983. },
  984. {
  985. "__type__": "cc.Label",
  986. "_name": "",
  987. "_objFlags": 0,
  988. "__editorExtras__": {},
  989. "node": {
  990. "__id__": 37
  991. },
  992. "_enabled": true,
  993. "__prefab": {
  994. "__id__": 41
  995. },
  996. "_customMaterial": null,
  997. "_srcBlendFactor": 2,
  998. "_dstBlendFactor": 4,
  999. "_color": {
  1000. "__type__": "cc.Color",
  1001. "r": 255,
  1002. "g": 239,
  1003. "b": 201,
  1004. "a": 255
  1005. },
  1006. "_string": "邮 件",
  1007. "_horizontalAlign": 1,
  1008. "_verticalAlign": 1,
  1009. "_actualFontSize": 28,
  1010. "_fontSize": 28,
  1011. "_fontFamily": "Arial",
  1012. "_lineHeight": 28,
  1013. "_overflow": 0,
  1014. "_enableWrapText": false,
  1015. "_font": {
  1016. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  1017. "__expectedType__": "cc.TTFFont"
  1018. },
  1019. "_isSystemFontUsed": false,
  1020. "_spacingX": 0,
  1021. "_isItalic": false,
  1022. "_isBold": true,
  1023. "_isUnderline": false,
  1024. "_underlineHeight": 2,
  1025. "_cacheMode": 0,
  1026. "_enableOutline": true,
  1027. "_outlineColor": {
  1028. "__type__": "cc.Color",
  1029. "r": 0,
  1030. "g": 0,
  1031. "b": 0,
  1032. "a": 255
  1033. },
  1034. "_outlineWidth": 3,
  1035. "_enableShadow": false,
  1036. "_shadowColor": {
  1037. "__type__": "cc.Color",
  1038. "r": 0,
  1039. "g": 0,
  1040. "b": 0,
  1041. "a": 255
  1042. },
  1043. "_shadowOffset": {
  1044. "__type__": "cc.Vec2",
  1045. "x": 2,
  1046. "y": 2
  1047. },
  1048. "_shadowBlur": 2,
  1049. "_id": ""
  1050. },
  1051. {
  1052. "__type__": "cc.CompPrefabInfo",
  1053. "fileId": "deYFMMGVRC8Kx9N+i479hp"
  1054. },
  1055. {
  1056. "__type__": "cc.PrefabInfo",
  1057. "root": {
  1058. "__id__": 1
  1059. },
  1060. "asset": {
  1061. "__id__": 0
  1062. },
  1063. "fileId": "adN1tkQChI2bC5HBhkI9lB",
  1064. "instance": null,
  1065. "targetOverrides": null,
  1066. "nestedPrefabInstanceRoots": null
  1067. },
  1068. {
  1069. "__type__": "cc.Node",
  1070. "_name": "line_img",
  1071. "_objFlags": 0,
  1072. "__editorExtras__": {},
  1073. "_parent": {
  1074. "__id__": 36
  1075. },
  1076. "_children": [],
  1077. "_active": true,
  1078. "_components": [
  1079. {
  1080. "__id__": 44
  1081. },
  1082. {
  1083. "__id__": 46
  1084. }
  1085. ],
  1086. "_prefab": {
  1087. "__id__": 48
  1088. },
  1089. "_lpos": {
  1090. "__type__": "cc.Vec3",
  1091. "x": 0,
  1092. "y": -38,
  1093. "z": 0
  1094. },
  1095. "_lrot": {
  1096. "__type__": "cc.Quat",
  1097. "x": 0,
  1098. "y": 0,
  1099. "z": 0,
  1100. "w": 1
  1101. },
  1102. "_lscale": {
  1103. "__type__": "cc.Vec3",
  1104. "x": 1,
  1105. "y": 1,
  1106. "z": 1
  1107. },
  1108. "_mobility": 0,
  1109. "_layer": 33554432,
  1110. "_euler": {
  1111. "__type__": "cc.Vec3",
  1112. "x": 0,
  1113. "y": 0,
  1114. "z": 0
  1115. },
  1116. "_id": ""
  1117. },
  1118. {
  1119. "__type__": "cc.UITransform",
  1120. "_name": "",
  1121. "_objFlags": 0,
  1122. "__editorExtras__": {},
  1123. "node": {
  1124. "__id__": 43
  1125. },
  1126. "_enabled": true,
  1127. "__prefab": {
  1128. "__id__": 45
  1129. },
  1130. "_contentSize": {
  1131. "__type__": "cc.Size",
  1132. "width": 658,
  1133. "height": 4
  1134. },
  1135. "_anchorPoint": {
  1136. "__type__": "cc.Vec2",
  1137. "x": 0.5,
  1138. "y": 0.5
  1139. },
  1140. "_id": ""
  1141. },
  1142. {
  1143. "__type__": "cc.CompPrefabInfo",
  1144. "fileId": "b0PzuDXrBNm5+LsTGdLaKp"
  1145. },
  1146. {
  1147. "__type__": "cc.Sprite",
  1148. "_name": "",
  1149. "_objFlags": 0,
  1150. "__editorExtras__": {},
  1151. "node": {
  1152. "__id__": 43
  1153. },
  1154. "_enabled": true,
  1155. "__prefab": {
  1156. "__id__": 47
  1157. },
  1158. "_customMaterial": null,
  1159. "_srcBlendFactor": 2,
  1160. "_dstBlendFactor": 4,
  1161. "_color": {
  1162. "__type__": "cc.Color",
  1163. "r": 255,
  1164. "g": 255,
  1165. "b": 255,
  1166. "a": 255
  1167. },
  1168. "_spriteFrame": {
  1169. "__uuid__": "3e3c9ff8-a39c-4a56-8ba3-e6914f2131cf@f9941",
  1170. "__expectedType__": "cc.SpriteFrame"
  1171. },
  1172. "_type": 1,
  1173. "_fillType": 0,
  1174. "_sizeMode": 0,
  1175. "_fillCenter": {
  1176. "__type__": "cc.Vec2",
  1177. "x": 0,
  1178. "y": 0
  1179. },
  1180. "_fillStart": 0,
  1181. "_fillRange": 0,
  1182. "_isTrimmedMode": true,
  1183. "_useGrayscale": false,
  1184. "_atlas": null,
  1185. "_id": ""
  1186. },
  1187. {
  1188. "__type__": "cc.CompPrefabInfo",
  1189. "fileId": "98HK24cGBAhJutxzU3efe+"
  1190. },
  1191. {
  1192. "__type__": "cc.PrefabInfo",
  1193. "root": {
  1194. "__id__": 1
  1195. },
  1196. "asset": {
  1197. "__id__": 0
  1198. },
  1199. "fileId": "bdD78QxNpGAoSRx5og5X0l",
  1200. "instance": null,
  1201. "targetOverrides": null,
  1202. "nestedPrefabInstanceRoots": null
  1203. },
  1204. {
  1205. "__type__": "cc.UITransform",
  1206. "_name": "",
  1207. "_objFlags": 0,
  1208. "__editorExtras__": {},
  1209. "node": {
  1210. "__id__": 36
  1211. },
  1212. "_enabled": true,
  1213. "__prefab": {
  1214. "__id__": 50
  1215. },
  1216. "_contentSize": {
  1217. "__type__": "cc.Size",
  1218. "width": 704,
  1219. "height": 80
  1220. },
  1221. "_anchorPoint": {
  1222. "__type__": "cc.Vec2",
  1223. "x": 0.5,
  1224. "y": 0.5
  1225. },
  1226. "_id": ""
  1227. },
  1228. {
  1229. "__type__": "cc.CompPrefabInfo",
  1230. "fileId": "9b3ZNLDyJIjIwUnfGgqi99"
  1231. },
  1232. {
  1233. "__type__": "cc.PrefabInfo",
  1234. "root": {
  1235. "__id__": 1
  1236. },
  1237. "asset": {
  1238. "__id__": 0
  1239. },
  1240. "fileId": "8bMvX7galH25LpHYrQ8Rrb",
  1241. "instance": null,
  1242. "targetOverrides": null,
  1243. "nestedPrefabInstanceRoots": null
  1244. },
  1245. {
  1246. "__type__": "cc.Node",
  1247. "_name": "msg_node",
  1248. "_objFlags": 0,
  1249. "__editorExtras__": {},
  1250. "_parent": {
  1251. "__id__": 35
  1252. },
  1253. "_children": [
  1254. {
  1255. "__id__": 53
  1256. },
  1257. {
  1258. "__id__": 57
  1259. },
  1260. {
  1261. "__id__": 63
  1262. },
  1263. {
  1264. "__id__": 69
  1265. }
  1266. ],
  1267. "_active": true,
  1268. "_components": [
  1269. {
  1270. "__id__": 75
  1271. }
  1272. ],
  1273. "_prefab": {
  1274. "__id__": 77
  1275. },
  1276. "_lpos": {
  1277. "__type__": "cc.Vec3",
  1278. "x": 0,
  1279. "y": 180,
  1280. "z": 0
  1281. },
  1282. "_lrot": {
  1283. "__type__": "cc.Quat",
  1284. "x": 0,
  1285. "y": 0,
  1286. "z": 0,
  1287. "w": 1
  1288. },
  1289. "_lscale": {
  1290. "__type__": "cc.Vec3",
  1291. "x": 1,
  1292. "y": 1,
  1293. "z": 1
  1294. },
  1295. "_mobility": 0,
  1296. "_layer": 33554432,
  1297. "_euler": {
  1298. "__type__": "cc.Vec3",
  1299. "x": 0,
  1300. "y": 0,
  1301. "z": 0
  1302. },
  1303. "_id": ""
  1304. },
  1305. {
  1306. "__type__": "cc.Node",
  1307. "_name": "item_node",
  1308. "_objFlags": 0,
  1309. "__editorExtras__": {},
  1310. "_parent": {
  1311. "__id__": 52
  1312. },
  1313. "_children": [],
  1314. "_active": true,
  1315. "_components": [
  1316. {
  1317. "__id__": 54
  1318. }
  1319. ],
  1320. "_prefab": {
  1321. "__id__": 56
  1322. },
  1323. "_lpos": {
  1324. "__type__": "cc.Vec3",
  1325. "x": -250,
  1326. "y": -10,
  1327. "z": 0
  1328. },
  1329. "_lrot": {
  1330. "__type__": "cc.Quat",
  1331. "x": 0,
  1332. "y": 0,
  1333. "z": 0,
  1334. "w": 1
  1335. },
  1336. "_lscale": {
  1337. "__type__": "cc.Vec3",
  1338. "x": 1,
  1339. "y": 1,
  1340. "z": 1
  1341. },
  1342. "_mobility": 0,
  1343. "_layer": 33554432,
  1344. "_euler": {
  1345. "__type__": "cc.Vec3",
  1346. "x": 0,
  1347. "y": 0,
  1348. "z": 0
  1349. },
  1350. "_id": ""
  1351. },
  1352. {
  1353. "__type__": "cc.UITransform",
  1354. "_name": "",
  1355. "_objFlags": 0,
  1356. "__editorExtras__": {},
  1357. "node": {
  1358. "__id__": 53
  1359. },
  1360. "_enabled": true,
  1361. "__prefab": {
  1362. "__id__": 55
  1363. },
  1364. "_contentSize": {
  1365. "__type__": "cc.Size",
  1366. "width": 100,
  1367. "height": 100
  1368. },
  1369. "_anchorPoint": {
  1370. "__type__": "cc.Vec2",
  1371. "x": 0.5,
  1372. "y": 0.5
  1373. },
  1374. "_id": ""
  1375. },
  1376. {
  1377. "__type__": "cc.CompPrefabInfo",
  1378. "fileId": "53QIk6xg5CLbk05ulOEjkw"
  1379. },
  1380. {
  1381. "__type__": "cc.PrefabInfo",
  1382. "root": {
  1383. "__id__": 1
  1384. },
  1385. "asset": {
  1386. "__id__": 0
  1387. },
  1388. "fileId": "2ffJxBCO1M9Kn18tz7LeRf",
  1389. "instance": null,
  1390. "targetOverrides": null,
  1391. "nestedPrefabInstanceRoots": null
  1392. },
  1393. {
  1394. "__type__": "cc.Node",
  1395. "_name": "name_tx",
  1396. "_objFlags": 0,
  1397. "__editorExtras__": {},
  1398. "_parent": {
  1399. "__id__": 52
  1400. },
  1401. "_children": [],
  1402. "_active": true,
  1403. "_components": [
  1404. {
  1405. "__id__": 58
  1406. },
  1407. {
  1408. "__id__": 60
  1409. }
  1410. ],
  1411. "_prefab": {
  1412. "__id__": 62
  1413. },
  1414. "_lpos": {
  1415. "__type__": "cc.Vec3",
  1416. "x": -160,
  1417. "y": 25,
  1418. "z": 0
  1419. },
  1420. "_lrot": {
  1421. "__type__": "cc.Quat",
  1422. "x": 0,
  1423. "y": 0,
  1424. "z": 0,
  1425. "w": 1
  1426. },
  1427. "_lscale": {
  1428. "__type__": "cc.Vec3",
  1429. "x": 1,
  1430. "y": 1,
  1431. "z": 1
  1432. },
  1433. "_mobility": 0,
  1434. "_layer": 33554432,
  1435. "_euler": {
  1436. "__type__": "cc.Vec3",
  1437. "x": 0,
  1438. "y": 0,
  1439. "z": 0
  1440. },
  1441. "_id": ""
  1442. },
  1443. {
  1444. "__type__": "cc.UITransform",
  1445. "_name": "",
  1446. "_objFlags": 0,
  1447. "__editorExtras__": {},
  1448. "node": {
  1449. "__id__": 57
  1450. },
  1451. "_enabled": true,
  1452. "__prefab": {
  1453. "__id__": 59
  1454. },
  1455. "_contentSize": {
  1456. "__type__": "cc.Size",
  1457. "width": 48,
  1458. "height": 30.240000000000002
  1459. },
  1460. "_anchorPoint": {
  1461. "__type__": "cc.Vec2",
  1462. "x": 0,
  1463. "y": 0.5
  1464. },
  1465. "_id": ""
  1466. },
  1467. {
  1468. "__type__": "cc.CompPrefabInfo",
  1469. "fileId": "c04osDVJ9JEbmOXFD6oix5"
  1470. },
  1471. {
  1472. "__type__": "cc.Label",
  1473. "_name": "",
  1474. "_objFlags": 0,
  1475. "__editorExtras__": {},
  1476. "node": {
  1477. "__id__": 57
  1478. },
  1479. "_enabled": true,
  1480. "__prefab": {
  1481. "__id__": 61
  1482. },
  1483. "_customMaterial": null,
  1484. "_srcBlendFactor": 2,
  1485. "_dstBlendFactor": 4,
  1486. "_color": {
  1487. "__type__": "cc.Color",
  1488. "r": 231,
  1489. "g": 183,
  1490. "b": 122,
  1491. "a": 255
  1492. },
  1493. "_string": "名字",
  1494. "_horizontalAlign": 0,
  1495. "_verticalAlign": 1,
  1496. "_actualFontSize": 24,
  1497. "_fontSize": 24,
  1498. "_fontFamily": "Arial",
  1499. "_lineHeight": 24,
  1500. "_overflow": 0,
  1501. "_enableWrapText": false,
  1502. "_font": {
  1503. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  1504. "__expectedType__": "cc.TTFFont"
  1505. },
  1506. "_isSystemFontUsed": false,
  1507. "_spacingX": 0,
  1508. "_isItalic": false,
  1509. "_isBold": true,
  1510. "_isUnderline": false,
  1511. "_underlineHeight": 2,
  1512. "_cacheMode": 0,
  1513. "_enableOutline": false,
  1514. "_outlineColor": {
  1515. "__type__": "cc.Color",
  1516. "r": 0,
  1517. "g": 0,
  1518. "b": 0,
  1519. "a": 255
  1520. },
  1521. "_outlineWidth": 3,
  1522. "_enableShadow": false,
  1523. "_shadowColor": {
  1524. "__type__": "cc.Color",
  1525. "r": 0,
  1526. "g": 0,
  1527. "b": 0,
  1528. "a": 255
  1529. },
  1530. "_shadowOffset": {
  1531. "__type__": "cc.Vec2",
  1532. "x": 2,
  1533. "y": 2
  1534. },
  1535. "_shadowBlur": 2,
  1536. "_id": ""
  1537. },
  1538. {
  1539. "__type__": "cc.CompPrefabInfo",
  1540. "fileId": "ae/pRcAk9IY4xixTq5YPet"
  1541. },
  1542. {
  1543. "__type__": "cc.PrefabInfo",
  1544. "root": {
  1545. "__id__": 1
  1546. },
  1547. "asset": {
  1548. "__id__": 0
  1549. },
  1550. "fileId": "95lRnBRDFIF7ueYI564QiK",
  1551. "instance": null,
  1552. "targetOverrides": null,
  1553. "nestedPrefabInstanceRoots": null
  1554. },
  1555. {
  1556. "__type__": "cc.Node",
  1557. "_name": "pos_tx",
  1558. "_objFlags": 0,
  1559. "__editorExtras__": {},
  1560. "_parent": {
  1561. "__id__": 52
  1562. },
  1563. "_children": [],
  1564. "_active": true,
  1565. "_components": [
  1566. {
  1567. "__id__": 64
  1568. },
  1569. {
  1570. "__id__": 66
  1571. }
  1572. ],
  1573. "_prefab": {
  1574. "__id__": 68
  1575. },
  1576. "_lpos": {
  1577. "__type__": "cc.Vec3",
  1578. "x": -160,
  1579. "y": -10,
  1580. "z": 0
  1581. },
  1582. "_lrot": {
  1583. "__type__": "cc.Quat",
  1584. "x": 0,
  1585. "y": 0,
  1586. "z": 0,
  1587. "w": 1
  1588. },
  1589. "_lscale": {
  1590. "__type__": "cc.Vec3",
  1591. "x": 1,
  1592. "y": 1,
  1593. "z": 1
  1594. },
  1595. "_mobility": 0,
  1596. "_layer": 33554432,
  1597. "_euler": {
  1598. "__type__": "cc.Vec3",
  1599. "x": 0,
  1600. "y": 0,
  1601. "z": 0
  1602. },
  1603. "_id": ""
  1604. },
  1605. {
  1606. "__type__": "cc.UITransform",
  1607. "_name": "",
  1608. "_objFlags": 0,
  1609. "__editorExtras__": {},
  1610. "node": {
  1611. "__id__": 63
  1612. },
  1613. "_enabled": true,
  1614. "__prefab": {
  1615. "__id__": 65
  1616. },
  1617. "_contentSize": {
  1618. "__type__": "cc.Size",
  1619. "width": 144,
  1620. "height": 30.240000000000002
  1621. },
  1622. "_anchorPoint": {
  1623. "__type__": "cc.Vec2",
  1624. "x": 0,
  1625. "y": 0.5
  1626. },
  1627. "_id": ""
  1628. },
  1629. {
  1630. "__type__": "cc.CompPrefabInfo",
  1631. "fileId": "afn8/8LuZM96k8oszPe8M8"
  1632. },
  1633. {
  1634. "__type__": "cc.Label",
  1635. "_name": "",
  1636. "_objFlags": 0,
  1637. "__editorExtras__": {},
  1638. "node": {
  1639. "__id__": 63
  1640. },
  1641. "_enabled": true,
  1642. "__prefab": {
  1643. "__id__": 67
  1644. },
  1645. "_customMaterial": null,
  1646. "_srcBlendFactor": 2,
  1647. "_dstBlendFactor": 4,
  1648. "_color": {
  1649. "__type__": "cc.Color",
  1650. "r": 231,
  1651. "g": 183,
  1652. "b": 122,
  1653. "a": 255
  1654. },
  1655. "_string": "部位(装备)",
  1656. "_horizontalAlign": 0,
  1657. "_verticalAlign": 1,
  1658. "_actualFontSize": 24,
  1659. "_fontSize": 24,
  1660. "_fontFamily": "Arial",
  1661. "_lineHeight": 24,
  1662. "_overflow": 0,
  1663. "_enableWrapText": false,
  1664. "_font": {
  1665. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  1666. "__expectedType__": "cc.TTFFont"
  1667. },
  1668. "_isSystemFontUsed": false,
  1669. "_spacingX": 0,
  1670. "_isItalic": false,
  1671. "_isBold": true,
  1672. "_isUnderline": false,
  1673. "_underlineHeight": 2,
  1674. "_cacheMode": 0,
  1675. "_enableOutline": false,
  1676. "_outlineColor": {
  1677. "__type__": "cc.Color",
  1678. "r": 0,
  1679. "g": 0,
  1680. "b": 0,
  1681. "a": 255
  1682. },
  1683. "_outlineWidth": 3,
  1684. "_enableShadow": false,
  1685. "_shadowColor": {
  1686. "__type__": "cc.Color",
  1687. "r": 0,
  1688. "g": 0,
  1689. "b": 0,
  1690. "a": 255
  1691. },
  1692. "_shadowOffset": {
  1693. "__type__": "cc.Vec2",
  1694. "x": 2,
  1695. "y": 2
  1696. },
  1697. "_shadowBlur": 2,
  1698. "_id": ""
  1699. },
  1700. {
  1701. "__type__": "cc.CompPrefabInfo",
  1702. "fileId": "24AObYGwhNJIEExb2bwZr3"
  1703. },
  1704. {
  1705. "__type__": "cc.PrefabInfo",
  1706. "root": {
  1707. "__id__": 1
  1708. },
  1709. "asset": {
  1710. "__id__": 0
  1711. },
  1712. "fileId": "3a4i9A0wdP8YOXHIBg8kkg",
  1713. "instance": null,
  1714. "targetOverrides": null,
  1715. "nestedPrefabInstanceRoots": null
  1716. },
  1717. {
  1718. "__type__": "cc.Node",
  1719. "_name": "slot_tx",
  1720. "_objFlags": 0,
  1721. "__editorExtras__": {},
  1722. "_parent": {
  1723. "__id__": 52
  1724. },
  1725. "_children": [],
  1726. "_active": true,
  1727. "_components": [
  1728. {
  1729. "__id__": 70
  1730. },
  1731. {
  1732. "__id__": 72
  1733. }
  1734. ],
  1735. "_prefab": {
  1736. "__id__": 74
  1737. },
  1738. "_lpos": {
  1739. "__type__": "cc.Vec3",
  1740. "x": -160,
  1741. "y": -45,
  1742. "z": 0
  1743. },
  1744. "_lrot": {
  1745. "__type__": "cc.Quat",
  1746. "x": 0,
  1747. "y": 0,
  1748. "z": 0,
  1749. "w": 1
  1750. },
  1751. "_lscale": {
  1752. "__type__": "cc.Vec3",
  1753. "x": 1,
  1754. "y": 1,
  1755. "z": 1
  1756. },
  1757. "_mobility": 0,
  1758. "_layer": 33554432,
  1759. "_euler": {
  1760. "__type__": "cc.Vec3",
  1761. "x": 0,
  1762. "y": 0,
  1763. "z": 0
  1764. },
  1765. "_id": ""
  1766. },
  1767. {
  1768. "__type__": "cc.UITransform",
  1769. "_name": "",
  1770. "_objFlags": 0,
  1771. "__editorExtras__": {},
  1772. "node": {
  1773. "__id__": 69
  1774. },
  1775. "_enabled": true,
  1776. "__prefab": {
  1777. "__id__": 71
  1778. },
  1779. "_contentSize": {
  1780. "__type__": "cc.Size",
  1781. "width": 144,
  1782. "height": 30.240000000000002
  1783. },
  1784. "_anchorPoint": {
  1785. "__type__": "cc.Vec2",
  1786. "x": 0,
  1787. "y": 0.5
  1788. },
  1789. "_id": ""
  1790. },
  1791. {
  1792. "__type__": "cc.CompPrefabInfo",
  1793. "fileId": "94QXHZ+3lMFYZY3gV2UU9B"
  1794. },
  1795. {
  1796. "__type__": "cc.Label",
  1797. "_name": "",
  1798. "_objFlags": 0,
  1799. "__editorExtras__": {},
  1800. "node": {
  1801. "__id__": 69
  1802. },
  1803. "_enabled": true,
  1804. "__prefab": {
  1805. "__id__": 73
  1806. },
  1807. "_customMaterial": null,
  1808. "_srcBlendFactor": 2,
  1809. "_dstBlendFactor": 4,
  1810. "_color": {
  1811. "__type__": "cc.Color",
  1812. "r": 231,
  1813. "g": 183,
  1814. "b": 122,
  1815. "a": 255
  1816. },
  1817. "_string": "装备(类型)",
  1818. "_horizontalAlign": 0,
  1819. "_verticalAlign": 1,
  1820. "_actualFontSize": 24,
  1821. "_fontSize": 24,
  1822. "_fontFamily": "Arial",
  1823. "_lineHeight": 24,
  1824. "_overflow": 0,
  1825. "_enableWrapText": false,
  1826. "_font": {
  1827. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  1828. "__expectedType__": "cc.TTFFont"
  1829. },
  1830. "_isSystemFontUsed": false,
  1831. "_spacingX": 0,
  1832. "_isItalic": false,
  1833. "_isBold": true,
  1834. "_isUnderline": false,
  1835. "_underlineHeight": 2,
  1836. "_cacheMode": 0,
  1837. "_enableOutline": false,
  1838. "_outlineColor": {
  1839. "__type__": "cc.Color",
  1840. "r": 0,
  1841. "g": 0,
  1842. "b": 0,
  1843. "a": 255
  1844. },
  1845. "_outlineWidth": 3,
  1846. "_enableShadow": false,
  1847. "_shadowColor": {
  1848. "__type__": "cc.Color",
  1849. "r": 0,
  1850. "g": 0,
  1851. "b": 0,
  1852. "a": 255
  1853. },
  1854. "_shadowOffset": {
  1855. "__type__": "cc.Vec2",
  1856. "x": 2,
  1857. "y": 2
  1858. },
  1859. "_shadowBlur": 2,
  1860. "_id": ""
  1861. },
  1862. {
  1863. "__type__": "cc.CompPrefabInfo",
  1864. "fileId": "9b4dvf5v1PS746TvedCuOn"
  1865. },
  1866. {
  1867. "__type__": "cc.PrefabInfo",
  1868. "root": {
  1869. "__id__": 1
  1870. },
  1871. "asset": {
  1872. "__id__": 0
  1873. },
  1874. "fileId": "97ZXaXO/FKKLwoN+OscRUO",
  1875. "instance": null,
  1876. "targetOverrides": null,
  1877. "nestedPrefabInstanceRoots": null
  1878. },
  1879. {
  1880. "__type__": "cc.UITransform",
  1881. "_name": "",
  1882. "_objFlags": 0,
  1883. "__editorExtras__": {},
  1884. "node": {
  1885. "__id__": 52
  1886. },
  1887. "_enabled": true,
  1888. "__prefab": {
  1889. "__id__": 76
  1890. },
  1891. "_contentSize": {
  1892. "__type__": "cc.Size",
  1893. "width": 704,
  1894. "height": 150
  1895. },
  1896. "_anchorPoint": {
  1897. "__type__": "cc.Vec2",
  1898. "x": 0.5,
  1899. "y": 0.5
  1900. },
  1901. "_id": ""
  1902. },
  1903. {
  1904. "__type__": "cc.CompPrefabInfo",
  1905. "fileId": "f5S4cUeO5O8IplH5bYavMk"
  1906. },
  1907. {
  1908. "__type__": "cc.PrefabInfo",
  1909. "root": {
  1910. "__id__": 1
  1911. },
  1912. "asset": {
  1913. "__id__": 0
  1914. },
  1915. "fileId": "aei7LXBTBGmbVKPAV8Wia4",
  1916. "instance": null,
  1917. "targetOverrides": null,
  1918. "nestedPrefabInstanceRoots": null
  1919. },
  1920. {
  1921. "__type__": "cc.Node",
  1922. "_name": "desc_node",
  1923. "_objFlags": 0,
  1924. "__editorExtras__": {},
  1925. "_parent": {
  1926. "__id__": 35
  1927. },
  1928. "_children": [
  1929. {
  1930. "__id__": 79
  1931. },
  1932. {
  1933. "__id__": 85
  1934. }
  1935. ],
  1936. "_active": true,
  1937. "_components": [
  1938. {
  1939. "__id__": 91
  1940. }
  1941. ],
  1942. "_prefab": {
  1943. "__id__": 93
  1944. },
  1945. "_lpos": {
  1946. "__type__": "cc.Vec3",
  1947. "x": 0,
  1948. "y": 20,
  1949. "z": 0
  1950. },
  1951. "_lrot": {
  1952. "__type__": "cc.Quat",
  1953. "x": 0,
  1954. "y": 0,
  1955. "z": 0,
  1956. "w": 1
  1957. },
  1958. "_lscale": {
  1959. "__type__": "cc.Vec3",
  1960. "x": 1,
  1961. "y": 1,
  1962. "z": 1
  1963. },
  1964. "_mobility": 0,
  1965. "_layer": 33554432,
  1966. "_euler": {
  1967. "__type__": "cc.Vec3",
  1968. "x": 0,
  1969. "y": 0,
  1970. "z": 0
  1971. },
  1972. "_id": ""
  1973. },
  1974. {
  1975. "__type__": "cc.Node",
  1976. "_name": "bg",
  1977. "_objFlags": 0,
  1978. "__editorExtras__": {},
  1979. "_parent": {
  1980. "__id__": 78
  1981. },
  1982. "_children": [],
  1983. "_active": true,
  1984. "_components": [
  1985. {
  1986. "__id__": 80
  1987. },
  1988. {
  1989. "__id__": 82
  1990. }
  1991. ],
  1992. "_prefab": {
  1993. "__id__": 84
  1994. },
  1995. "_lpos": {
  1996. "__type__": "cc.Vec3",
  1997. "x": 0,
  1998. "y": 0,
  1999. "z": 0
  2000. },
  2001. "_lrot": {
  2002. "__type__": "cc.Quat",
  2003. "x": 0,
  2004. "y": 0,
  2005. "z": 0,
  2006. "w": 1
  2007. },
  2008. "_lscale": {
  2009. "__type__": "cc.Vec3",
  2010. "x": 1,
  2011. "y": 1,
  2012. "z": 1
  2013. },
  2014. "_mobility": 0,
  2015. "_layer": 33554432,
  2016. "_euler": {
  2017. "__type__": "cc.Vec3",
  2018. "x": 0,
  2019. "y": 0,
  2020. "z": 0
  2021. },
  2022. "_id": ""
  2023. },
  2024. {
  2025. "__type__": "cc.UITransform",
  2026. "_name": "",
  2027. "_objFlags": 0,
  2028. "__editorExtras__": {},
  2029. "node": {
  2030. "__id__": 79
  2031. },
  2032. "_enabled": true,
  2033. "__prefab": {
  2034. "__id__": 81
  2035. },
  2036. "_contentSize": {
  2037. "__type__": "cc.Size",
  2038. "width": 658,
  2039. "height": 150
  2040. },
  2041. "_anchorPoint": {
  2042. "__type__": "cc.Vec2",
  2043. "x": 0.5,
  2044. "y": 0.5
  2045. },
  2046. "_id": ""
  2047. },
  2048. {
  2049. "__type__": "cc.CompPrefabInfo",
  2050. "fileId": "66ctrSDvVCXanZed7kaLHf"
  2051. },
  2052. {
  2053. "__type__": "cc.Sprite",
  2054. "_name": "",
  2055. "_objFlags": 0,
  2056. "__editorExtras__": {},
  2057. "node": {
  2058. "__id__": 79
  2059. },
  2060. "_enabled": true,
  2061. "__prefab": {
  2062. "__id__": 83
  2063. },
  2064. "_customMaterial": null,
  2065. "_srcBlendFactor": 2,
  2066. "_dstBlendFactor": 4,
  2067. "_color": {
  2068. "__type__": "cc.Color",
  2069. "r": 255,
  2070. "g": 255,
  2071. "b": 255,
  2072. "a": 255
  2073. },
  2074. "_spriteFrame": {
  2075. "__uuid__": "200bedcc-f037-4f83-8467-b379d97a5c2d@f9941",
  2076. "__expectedType__": "cc.SpriteFrame"
  2077. },
  2078. "_type": 1,
  2079. "_fillType": 0,
  2080. "_sizeMode": 0,
  2081. "_fillCenter": {
  2082. "__type__": "cc.Vec2",
  2083. "x": 0,
  2084. "y": 0
  2085. },
  2086. "_fillStart": 0,
  2087. "_fillRange": 0,
  2088. "_isTrimmedMode": true,
  2089. "_useGrayscale": false,
  2090. "_atlas": null,
  2091. "_id": ""
  2092. },
  2093. {
  2094. "__type__": "cc.CompPrefabInfo",
  2095. "fileId": "2dCVwp8vFBTaJZchCNi1DG"
  2096. },
  2097. {
  2098. "__type__": "cc.PrefabInfo",
  2099. "root": {
  2100. "__id__": 1
  2101. },
  2102. "asset": {
  2103. "__id__": 0
  2104. },
  2105. "fileId": "deA9hW4+RCaaVxA7tl+NA6",
  2106. "instance": null,
  2107. "targetOverrides": null,
  2108. "nestedPrefabInstanceRoots": null
  2109. },
  2110. {
  2111. "__type__": "cc.Node",
  2112. "_name": "desc_tx",
  2113. "_objFlags": 0,
  2114. "__editorExtras__": {},
  2115. "_parent": {
  2116. "__id__": 78
  2117. },
  2118. "_children": [],
  2119. "_active": true,
  2120. "_components": [
  2121. {
  2122. "__id__": 86
  2123. },
  2124. {
  2125. "__id__": 88
  2126. }
  2127. ],
  2128. "_prefab": {
  2129. "__id__": 90
  2130. },
  2131. "_lpos": {
  2132. "__type__": "cc.Vec3",
  2133. "x": 0,
  2134. "y": 0,
  2135. "z": 0
  2136. },
  2137. "_lrot": {
  2138. "__type__": "cc.Quat",
  2139. "x": 0,
  2140. "y": 0,
  2141. "z": 0,
  2142. "w": 1
  2143. },
  2144. "_lscale": {
  2145. "__type__": "cc.Vec3",
  2146. "x": 1,
  2147. "y": 1,
  2148. "z": 1
  2149. },
  2150. "_mobility": 0,
  2151. "_layer": 33554432,
  2152. "_euler": {
  2153. "__type__": "cc.Vec3",
  2154. "x": 0,
  2155. "y": 0,
  2156. "z": 0
  2157. },
  2158. "_id": ""
  2159. },
  2160. {
  2161. "__type__": "cc.UITransform",
  2162. "_name": "",
  2163. "_objFlags": 0,
  2164. "__editorExtras__": {},
  2165. "node": {
  2166. "__id__": 85
  2167. },
  2168. "_enabled": true,
  2169. "__prefab": {
  2170. "__id__": 87
  2171. },
  2172. "_contentSize": {
  2173. "__type__": "cc.Size",
  2174. "width": 620,
  2175. "height": 130
  2176. },
  2177. "_anchorPoint": {
  2178. "__type__": "cc.Vec2",
  2179. "x": 0.5,
  2180. "y": 0.5
  2181. },
  2182. "_id": ""
  2183. },
  2184. {
  2185. "__type__": "cc.CompPrefabInfo",
  2186. "fileId": "c0YgC47CZLVr+AFhdfY2jE"
  2187. },
  2188. {
  2189. "__type__": "cc.Label",
  2190. "_name": "",
  2191. "_objFlags": 0,
  2192. "__editorExtras__": {},
  2193. "node": {
  2194. "__id__": 85
  2195. },
  2196. "_enabled": true,
  2197. "__prefab": {
  2198. "__id__": 89
  2199. },
  2200. "_customMaterial": null,
  2201. "_srcBlendFactor": 2,
  2202. "_dstBlendFactor": 4,
  2203. "_color": {
  2204. "__type__": "cc.Color",
  2205. "r": 231,
  2206. "g": 183,
  2207. "b": 122,
  2208. "a": 255
  2209. },
  2210. "_string": "",
  2211. "_horizontalAlign": 0,
  2212. "_verticalAlign": 0,
  2213. "_actualFontSize": 25,
  2214. "_fontSize": 24,
  2215. "_fontFamily": "Arial",
  2216. "_lineHeight": 30,
  2217. "_overflow": 2,
  2218. "_enableWrapText": true,
  2219. "_font": {
  2220. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2221. "__expectedType__": "cc.TTFFont"
  2222. },
  2223. "_isSystemFontUsed": false,
  2224. "_spacingX": 0,
  2225. "_isItalic": false,
  2226. "_isBold": true,
  2227. "_isUnderline": false,
  2228. "_underlineHeight": 2,
  2229. "_cacheMode": 0,
  2230. "_enableOutline": false,
  2231. "_outlineColor": {
  2232. "__type__": "cc.Color",
  2233. "r": 0,
  2234. "g": 0,
  2235. "b": 0,
  2236. "a": 255
  2237. },
  2238. "_outlineWidth": 3,
  2239. "_enableShadow": false,
  2240. "_shadowColor": {
  2241. "__type__": "cc.Color",
  2242. "r": 0,
  2243. "g": 0,
  2244. "b": 0,
  2245. "a": 255
  2246. },
  2247. "_shadowOffset": {
  2248. "__type__": "cc.Vec2",
  2249. "x": 2,
  2250. "y": 2
  2251. },
  2252. "_shadowBlur": 2,
  2253. "_id": ""
  2254. },
  2255. {
  2256. "__type__": "cc.CompPrefabInfo",
  2257. "fileId": "fbz/I36rFDeaWIup60ajkE"
  2258. },
  2259. {
  2260. "__type__": "cc.PrefabInfo",
  2261. "root": {
  2262. "__id__": 1
  2263. },
  2264. "asset": {
  2265. "__id__": 0
  2266. },
  2267. "fileId": "ebjz0tttVOCpACE0Xmzu7s",
  2268. "instance": null,
  2269. "targetOverrides": null,
  2270. "nestedPrefabInstanceRoots": null
  2271. },
  2272. {
  2273. "__type__": "cc.UITransform",
  2274. "_name": "",
  2275. "_objFlags": 0,
  2276. "__editorExtras__": {},
  2277. "node": {
  2278. "__id__": 78
  2279. },
  2280. "_enabled": true,
  2281. "__prefab": {
  2282. "__id__": 92
  2283. },
  2284. "_contentSize": {
  2285. "__type__": "cc.Size",
  2286. "width": 704,
  2287. "height": 170
  2288. },
  2289. "_anchorPoint": {
  2290. "__type__": "cc.Vec2",
  2291. "x": 0.5,
  2292. "y": 0.5
  2293. },
  2294. "_id": ""
  2295. },
  2296. {
  2297. "__type__": "cc.CompPrefabInfo",
  2298. "fileId": "c6+3Z+wchCBJd8X2Lg3RTd"
  2299. },
  2300. {
  2301. "__type__": "cc.PrefabInfo",
  2302. "root": {
  2303. "__id__": 1
  2304. },
  2305. "asset": {
  2306. "__id__": 0
  2307. },
  2308. "fileId": "00io/kFQ5Hj6RWgb7S36mH",
  2309. "instance": null,
  2310. "targetOverrides": null,
  2311. "nestedPrefabInstanceRoots": null
  2312. },
  2313. {
  2314. "__type__": "cc.Node",
  2315. "_name": "attr_node",
  2316. "_objFlags": 0,
  2317. "__editorExtras__": {},
  2318. "_parent": {
  2319. "__id__": 35
  2320. },
  2321. "_children": [
  2322. {
  2323. "__id__": 95
  2324. },
  2325. {
  2326. "__id__": 101
  2327. },
  2328. {
  2329. "__id__": 115
  2330. }
  2331. ],
  2332. "_active": true,
  2333. "_components": [
  2334. {
  2335. "__id__": 121
  2336. }
  2337. ],
  2338. "_prefab": {
  2339. "__id__": 123
  2340. },
  2341. "_lpos": {
  2342. "__type__": "cc.Vec3",
  2343. "x": 0,
  2344. "y": -150,
  2345. "z": 0
  2346. },
  2347. "_lrot": {
  2348. "__type__": "cc.Quat",
  2349. "x": 0,
  2350. "y": 0,
  2351. "z": 0,
  2352. "w": 1
  2353. },
  2354. "_lscale": {
  2355. "__type__": "cc.Vec3",
  2356. "x": 1,
  2357. "y": 1,
  2358. "z": 1
  2359. },
  2360. "_mobility": 0,
  2361. "_layer": 33554432,
  2362. "_euler": {
  2363. "__type__": "cc.Vec3",
  2364. "x": 0,
  2365. "y": 0,
  2366. "z": 0
  2367. },
  2368. "_id": ""
  2369. },
  2370. {
  2371. "__type__": "cc.Node",
  2372. "_name": "bg",
  2373. "_objFlags": 0,
  2374. "__editorExtras__": {},
  2375. "_parent": {
  2376. "__id__": 94
  2377. },
  2378. "_children": [],
  2379. "_active": true,
  2380. "_components": [
  2381. {
  2382. "__id__": 96
  2383. },
  2384. {
  2385. "__id__": 98
  2386. }
  2387. ],
  2388. "_prefab": {
  2389. "__id__": 100
  2390. },
  2391. "_lpos": {
  2392. "__type__": "cc.Vec3",
  2393. "x": 0,
  2394. "y": 0,
  2395. "z": 0
  2396. },
  2397. "_lrot": {
  2398. "__type__": "cc.Quat",
  2399. "x": 0,
  2400. "y": 0,
  2401. "z": 0,
  2402. "w": 1
  2403. },
  2404. "_lscale": {
  2405. "__type__": "cc.Vec3",
  2406. "x": 1,
  2407. "y": 1,
  2408. "z": 1
  2409. },
  2410. "_mobility": 0,
  2411. "_layer": 33554432,
  2412. "_euler": {
  2413. "__type__": "cc.Vec3",
  2414. "x": 0,
  2415. "y": 0,
  2416. "z": 0
  2417. },
  2418. "_id": ""
  2419. },
  2420. {
  2421. "__type__": "cc.UITransform",
  2422. "_name": "",
  2423. "_objFlags": 0,
  2424. "__editorExtras__": {},
  2425. "node": {
  2426. "__id__": 95
  2427. },
  2428. "_enabled": true,
  2429. "__prefab": {
  2430. "__id__": 97
  2431. },
  2432. "_contentSize": {
  2433. "__type__": "cc.Size",
  2434. "width": 658,
  2435. "height": 150
  2436. },
  2437. "_anchorPoint": {
  2438. "__type__": "cc.Vec2",
  2439. "x": 0.5,
  2440. "y": 0.5
  2441. },
  2442. "_id": ""
  2443. },
  2444. {
  2445. "__type__": "cc.CompPrefabInfo",
  2446. "fileId": "abppN/jIBHh6D0lEGKKph5"
  2447. },
  2448. {
  2449. "__type__": "cc.Sprite",
  2450. "_name": "",
  2451. "_objFlags": 0,
  2452. "__editorExtras__": {},
  2453. "node": {
  2454. "__id__": 95
  2455. },
  2456. "_enabled": true,
  2457. "__prefab": {
  2458. "__id__": 99
  2459. },
  2460. "_customMaterial": null,
  2461. "_srcBlendFactor": 2,
  2462. "_dstBlendFactor": 4,
  2463. "_color": {
  2464. "__type__": "cc.Color",
  2465. "r": 255,
  2466. "g": 255,
  2467. "b": 255,
  2468. "a": 255
  2469. },
  2470. "_spriteFrame": {
  2471. "__uuid__": "200bedcc-f037-4f83-8467-b379d97a5c2d@f9941",
  2472. "__expectedType__": "cc.SpriteFrame"
  2473. },
  2474. "_type": 1,
  2475. "_fillType": 0,
  2476. "_sizeMode": 0,
  2477. "_fillCenter": {
  2478. "__type__": "cc.Vec2",
  2479. "x": 0,
  2480. "y": 0
  2481. },
  2482. "_fillStart": 0,
  2483. "_fillRange": 0,
  2484. "_isTrimmedMode": true,
  2485. "_useGrayscale": false,
  2486. "_atlas": null,
  2487. "_id": ""
  2488. },
  2489. {
  2490. "__type__": "cc.CompPrefabInfo",
  2491. "fileId": "82nOFNLzVCPK5hQlnhh50q"
  2492. },
  2493. {
  2494. "__type__": "cc.PrefabInfo",
  2495. "root": {
  2496. "__id__": 1
  2497. },
  2498. "asset": {
  2499. "__id__": 0
  2500. },
  2501. "fileId": "beGjhsWIZFLKWU0TsT8NRG",
  2502. "instance": null,
  2503. "targetOverrides": null,
  2504. "nestedPrefabInstanceRoots": null
  2505. },
  2506. {
  2507. "__type__": "cc.Node",
  2508. "_name": "title_bg",
  2509. "_objFlags": 0,
  2510. "__editorExtras__": {},
  2511. "_parent": {
  2512. "__id__": 94
  2513. },
  2514. "_children": [
  2515. {
  2516. "__id__": 102
  2517. }
  2518. ],
  2519. "_active": true,
  2520. "_components": [
  2521. {
  2522. "__id__": 108
  2523. },
  2524. {
  2525. "__id__": 110
  2526. },
  2527. {
  2528. "__id__": 112
  2529. }
  2530. ],
  2531. "_prefab": {
  2532. "__id__": 114
  2533. },
  2534. "_lpos": {
  2535. "__type__": "cc.Vec3",
  2536. "x": -320,
  2537. "y": 45,
  2538. "z": 0
  2539. },
  2540. "_lrot": {
  2541. "__type__": "cc.Quat",
  2542. "x": 0,
  2543. "y": 0,
  2544. "z": 0,
  2545. "w": 1
  2546. },
  2547. "_lscale": {
  2548. "__type__": "cc.Vec3",
  2549. "x": 1,
  2550. "y": 1,
  2551. "z": 1
  2552. },
  2553. "_mobility": 0,
  2554. "_layer": 33554432,
  2555. "_euler": {
  2556. "__type__": "cc.Vec3",
  2557. "x": 0,
  2558. "y": 0,
  2559. "z": 0
  2560. },
  2561. "_id": ""
  2562. },
  2563. {
  2564. "__type__": "cc.Node",
  2565. "_name": "title_tx",
  2566. "_objFlags": 0,
  2567. "__editorExtras__": {},
  2568. "_parent": {
  2569. "__id__": 101
  2570. },
  2571. "_children": [],
  2572. "_active": true,
  2573. "_components": [
  2574. {
  2575. "__id__": 103
  2576. },
  2577. {
  2578. "__id__": 105
  2579. }
  2580. ],
  2581. "_prefab": {
  2582. "__id__": 107
  2583. },
  2584. "_lpos": {
  2585. "__type__": "cc.Vec3",
  2586. "x": 60,
  2587. "y": 0,
  2588. "z": 0
  2589. },
  2590. "_lrot": {
  2591. "__type__": "cc.Quat",
  2592. "x": 0,
  2593. "y": 0,
  2594. "z": 0,
  2595. "w": 1
  2596. },
  2597. "_lscale": {
  2598. "__type__": "cc.Vec3",
  2599. "x": 1,
  2600. "y": 1,
  2601. "z": 1
  2602. },
  2603. "_mobility": 0,
  2604. "_layer": 33554432,
  2605. "_euler": {
  2606. "__type__": "cc.Vec3",
  2607. "x": 0,
  2608. "y": 0,
  2609. "z": 0
  2610. },
  2611. "_id": ""
  2612. },
  2613. {
  2614. "__type__": "cc.UITransform",
  2615. "_name": "",
  2616. "_objFlags": 0,
  2617. "__editorExtras__": {},
  2618. "node": {
  2619. "__id__": 102
  2620. },
  2621. "_enabled": true,
  2622. "__prefab": {
  2623. "__id__": 104
  2624. },
  2625. "_contentSize": {
  2626. "__type__": "cc.Size",
  2627. "width": 96,
  2628. "height": 30.240000000000002
  2629. },
  2630. "_anchorPoint": {
  2631. "__type__": "cc.Vec2",
  2632. "x": 0.5,
  2633. "y": 0.5
  2634. },
  2635. "_id": ""
  2636. },
  2637. {
  2638. "__type__": "cc.CompPrefabInfo",
  2639. "fileId": "e0zecwBPZKvYXtHqlasGZ7"
  2640. },
  2641. {
  2642. "__type__": "cc.Label",
  2643. "_name": "",
  2644. "_objFlags": 0,
  2645. "__editorExtras__": {},
  2646. "node": {
  2647. "__id__": 102
  2648. },
  2649. "_enabled": true,
  2650. "__prefab": {
  2651. "__id__": 106
  2652. },
  2653. "_customMaterial": null,
  2654. "_srcBlendFactor": 2,
  2655. "_dstBlendFactor": 4,
  2656. "_color": {
  2657. "__type__": "cc.Color",
  2658. "r": 231,
  2659. "g": 183,
  2660. "b": 122,
  2661. "a": 255
  2662. },
  2663. "_string": "基础属性",
  2664. "_horizontalAlign": 1,
  2665. "_verticalAlign": 1,
  2666. "_actualFontSize": 24,
  2667. "_fontSize": 24,
  2668. "_fontFamily": "Arial",
  2669. "_lineHeight": 24,
  2670. "_overflow": 0,
  2671. "_enableWrapText": false,
  2672. "_font": {
  2673. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2674. "__expectedType__": "cc.TTFFont"
  2675. },
  2676. "_isSystemFontUsed": false,
  2677. "_spacingX": 0,
  2678. "_isItalic": false,
  2679. "_isBold": true,
  2680. "_isUnderline": false,
  2681. "_underlineHeight": 2,
  2682. "_cacheMode": 0,
  2683. "_enableOutline": false,
  2684. "_outlineColor": {
  2685. "__type__": "cc.Color",
  2686. "r": 0,
  2687. "g": 0,
  2688. "b": 0,
  2689. "a": 255
  2690. },
  2691. "_outlineWidth": 3,
  2692. "_enableShadow": false,
  2693. "_shadowColor": {
  2694. "__type__": "cc.Color",
  2695. "r": 0,
  2696. "g": 0,
  2697. "b": 0,
  2698. "a": 255
  2699. },
  2700. "_shadowOffset": {
  2701. "__type__": "cc.Vec2",
  2702. "x": 2,
  2703. "y": 2
  2704. },
  2705. "_shadowBlur": 2,
  2706. "_id": ""
  2707. },
  2708. {
  2709. "__type__": "cc.CompPrefabInfo",
  2710. "fileId": "fc141hpIFHzoVPNTYLjMiz"
  2711. },
  2712. {
  2713. "__type__": "cc.PrefabInfo",
  2714. "root": {
  2715. "__id__": 1
  2716. },
  2717. "asset": {
  2718. "__id__": 0
  2719. },
  2720. "fileId": "2drmhHK6pDYIDlSz+IpGsa",
  2721. "instance": null,
  2722. "targetOverrides": null,
  2723. "nestedPrefabInstanceRoots": null
  2724. },
  2725. {
  2726. "__type__": "cc.UITransform",
  2727. "_name": "",
  2728. "_objFlags": 0,
  2729. "__editorExtras__": {},
  2730. "node": {
  2731. "__id__": 101
  2732. },
  2733. "_enabled": true,
  2734. "__prefab": {
  2735. "__id__": 109
  2736. },
  2737. "_contentSize": {
  2738. "__type__": "cc.Size",
  2739. "width": 120,
  2740. "height": 40
  2741. },
  2742. "_anchorPoint": {
  2743. "__type__": "cc.Vec2",
  2744. "x": 0,
  2745. "y": 0.5
  2746. },
  2747. "_id": ""
  2748. },
  2749. {
  2750. "__type__": "cc.CompPrefabInfo",
  2751. "fileId": "ccq0OClD1P640A3eOA6Hql"
  2752. },
  2753. {
  2754. "__type__": "cc.Sprite",
  2755. "_name": "",
  2756. "_objFlags": 0,
  2757. "__editorExtras__": {},
  2758. "node": {
  2759. "__id__": 101
  2760. },
  2761. "_enabled": true,
  2762. "__prefab": {
  2763. "__id__": 111
  2764. },
  2765. "_customMaterial": null,
  2766. "_srcBlendFactor": 2,
  2767. "_dstBlendFactor": 4,
  2768. "_color": {
  2769. "__type__": "cc.Color",
  2770. "r": 255,
  2771. "g": 255,
  2772. "b": 255,
  2773. "a": 255
  2774. },
  2775. "_spriteFrame": {
  2776. "__uuid__": "92fc44c7-1351-4fd2-8999-7aea7230a85c@f9941",
  2777. "__expectedType__": "cc.SpriteFrame"
  2778. },
  2779. "_type": 1,
  2780. "_fillType": 0,
  2781. "_sizeMode": 0,
  2782. "_fillCenter": {
  2783. "__type__": "cc.Vec2",
  2784. "x": 0,
  2785. "y": 0
  2786. },
  2787. "_fillStart": 0,
  2788. "_fillRange": 0,
  2789. "_isTrimmedMode": true,
  2790. "_useGrayscale": false,
  2791. "_atlas": null,
  2792. "_id": ""
  2793. },
  2794. {
  2795. "__type__": "cc.CompPrefabInfo",
  2796. "fileId": "1d6NLoAARH/49biEtB8KUu"
  2797. },
  2798. {
  2799. "__type__": "cc.Layout",
  2800. "_name": "",
  2801. "_objFlags": 0,
  2802. "__editorExtras__": {},
  2803. "node": {
  2804. "__id__": 101
  2805. },
  2806. "_enabled": true,
  2807. "__prefab": {
  2808. "__id__": 113
  2809. },
  2810. "_resizeMode": 1,
  2811. "_layoutType": 1,
  2812. "_cellSize": {
  2813. "__type__": "cc.Size",
  2814. "width": 40,
  2815. "height": 40
  2816. },
  2817. "_startAxis": 0,
  2818. "_paddingLeft": 12,
  2819. "_paddingRight": 12,
  2820. "_paddingTop": 0,
  2821. "_paddingBottom": 0,
  2822. "_spacingX": 0,
  2823. "_spacingY": 0,
  2824. "_verticalDirection": 1,
  2825. "_horizontalDirection": 0,
  2826. "_constraint": 0,
  2827. "_constraintNum": 2,
  2828. "_affectedByScale": false,
  2829. "_isAlign": false,
  2830. "_id": ""
  2831. },
  2832. {
  2833. "__type__": "cc.CompPrefabInfo",
  2834. "fileId": "dcG5qcSt5L6p1Jjn1ABsZG"
  2835. },
  2836. {
  2837. "__type__": "cc.PrefabInfo",
  2838. "root": {
  2839. "__id__": 1
  2840. },
  2841. "asset": {
  2842. "__id__": 0
  2843. },
  2844. "fileId": "ccuwDNsmNCjqFcKnfII86v",
  2845. "instance": null,
  2846. "targetOverrides": null,
  2847. "nestedPrefabInstanceRoots": null
  2848. },
  2849. {
  2850. "__type__": "cc.Node",
  2851. "_name": "attr_tx",
  2852. "_objFlags": 0,
  2853. "__editorExtras__": {},
  2854. "_parent": {
  2855. "__id__": 94
  2856. },
  2857. "_children": [],
  2858. "_active": true,
  2859. "_components": [
  2860. {
  2861. "__id__": 116
  2862. },
  2863. {
  2864. "__id__": 118
  2865. }
  2866. ],
  2867. "_prefab": {
  2868. "__id__": 120
  2869. },
  2870. "_lpos": {
  2871. "__type__": "cc.Vec3",
  2872. "x": 0,
  2873. "y": -24,
  2874. "z": 0
  2875. },
  2876. "_lrot": {
  2877. "__type__": "cc.Quat",
  2878. "x": 0,
  2879. "y": 0,
  2880. "z": 0,
  2881. "w": 1
  2882. },
  2883. "_lscale": {
  2884. "__type__": "cc.Vec3",
  2885. "x": 1,
  2886. "y": 1,
  2887. "z": 1
  2888. },
  2889. "_mobility": 0,
  2890. "_layer": 33554432,
  2891. "_euler": {
  2892. "__type__": "cc.Vec3",
  2893. "x": 0,
  2894. "y": 0,
  2895. "z": 0
  2896. },
  2897. "_id": ""
  2898. },
  2899. {
  2900. "__type__": "cc.UITransform",
  2901. "_name": "",
  2902. "_objFlags": 0,
  2903. "__editorExtras__": {},
  2904. "node": {
  2905. "__id__": 115
  2906. },
  2907. "_enabled": true,
  2908. "__prefab": {
  2909. "__id__": 117
  2910. },
  2911. "_contentSize": {
  2912. "__type__": "cc.Size",
  2913. "width": 620,
  2914. "height": 82
  2915. },
  2916. "_anchorPoint": {
  2917. "__type__": "cc.Vec2",
  2918. "x": 0.5,
  2919. "y": 0.5
  2920. },
  2921. "_id": ""
  2922. },
  2923. {
  2924. "__type__": "cc.CompPrefabInfo",
  2925. "fileId": "96Xd89jxNAJZ4eA8P4e5ad"
  2926. },
  2927. {
  2928. "__type__": "cc.Label",
  2929. "_name": "",
  2930. "_objFlags": 0,
  2931. "__editorExtras__": {},
  2932. "node": {
  2933. "__id__": 115
  2934. },
  2935. "_enabled": true,
  2936. "__prefab": {
  2937. "__id__": 119
  2938. },
  2939. "_customMaterial": null,
  2940. "_srcBlendFactor": 2,
  2941. "_dstBlendFactor": 4,
  2942. "_color": {
  2943. "__type__": "cc.Color",
  2944. "r": 231,
  2945. "g": 183,
  2946. "b": 122,
  2947. "a": 255
  2948. },
  2949. "_string": "",
  2950. "_horizontalAlign": 0,
  2951. "_verticalAlign": 0,
  2952. "_actualFontSize": 25,
  2953. "_fontSize": 24,
  2954. "_fontFamily": "Arial",
  2955. "_lineHeight": 30,
  2956. "_overflow": 2,
  2957. "_enableWrapText": true,
  2958. "_font": {
  2959. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2960. "__expectedType__": "cc.TTFFont"
  2961. },
  2962. "_isSystemFontUsed": false,
  2963. "_spacingX": 0,
  2964. "_isItalic": false,
  2965. "_isBold": true,
  2966. "_isUnderline": false,
  2967. "_underlineHeight": 2,
  2968. "_cacheMode": 0,
  2969. "_enableOutline": false,
  2970. "_outlineColor": {
  2971. "__type__": "cc.Color",
  2972. "r": 0,
  2973. "g": 0,
  2974. "b": 0,
  2975. "a": 255
  2976. },
  2977. "_outlineWidth": 3,
  2978. "_enableShadow": false,
  2979. "_shadowColor": {
  2980. "__type__": "cc.Color",
  2981. "r": 0,
  2982. "g": 0,
  2983. "b": 0,
  2984. "a": 255
  2985. },
  2986. "_shadowOffset": {
  2987. "__type__": "cc.Vec2",
  2988. "x": 2,
  2989. "y": 2
  2990. },
  2991. "_shadowBlur": 2,
  2992. "_id": ""
  2993. },
  2994. {
  2995. "__type__": "cc.CompPrefabInfo",
  2996. "fileId": "7avA2P1gxHEaNZr+LEriog"
  2997. },
  2998. {
  2999. "__type__": "cc.PrefabInfo",
  3000. "root": {
  3001. "__id__": 1
  3002. },
  3003. "asset": {
  3004. "__id__": 0
  3005. },
  3006. "fileId": "6bgBXaJ/BKMLsxjibx1K0d",
  3007. "instance": null,
  3008. "targetOverrides": null,
  3009. "nestedPrefabInstanceRoots": null
  3010. },
  3011. {
  3012. "__type__": "cc.UITransform",
  3013. "_name": "",
  3014. "_objFlags": 0,
  3015. "__editorExtras__": {},
  3016. "node": {
  3017. "__id__": 94
  3018. },
  3019. "_enabled": true,
  3020. "__prefab": {
  3021. "__id__": 122
  3022. },
  3023. "_contentSize": {
  3024. "__type__": "cc.Size",
  3025. "width": 704,
  3026. "height": 170
  3027. },
  3028. "_anchorPoint": {
  3029. "__type__": "cc.Vec2",
  3030. "x": 0.5,
  3031. "y": 0.5
  3032. },
  3033. "_id": ""
  3034. },
  3035. {
  3036. "__type__": "cc.CompPrefabInfo",
  3037. "fileId": "7b4//zQTlDjKgM5izowHUy"
  3038. },
  3039. {
  3040. "__type__": "cc.PrefabInfo",
  3041. "root": {
  3042. "__id__": 1
  3043. },
  3044. "asset": {
  3045. "__id__": 0
  3046. },
  3047. "fileId": "aeoqFFJmRBgqmQCXZX7OnA",
  3048. "instance": null,
  3049. "targetOverrides": null,
  3050. "nestedPrefabInstanceRoots": null
  3051. },
  3052. {
  3053. "__type__": "cc.Node",
  3054. "_name": "operate_node",
  3055. "_objFlags": 0,
  3056. "__editorExtras__": {},
  3057. "_parent": {
  3058. "__id__": 35
  3059. },
  3060. "_children": [
  3061. {
  3062. "__id__": 125
  3063. },
  3064. {
  3065. "__id__": 140
  3066. },
  3067. {
  3068. "__id__": 155
  3069. }
  3070. ],
  3071. "_active": true,
  3072. "_components": [
  3073. {
  3074. "__id__": 170
  3075. }
  3076. ],
  3077. "_prefab": {
  3078. "__id__": 172
  3079. },
  3080. "_lpos": {
  3081. "__type__": "cc.Vec3",
  3082. "x": 0,
  3083. "y": -285,
  3084. "z": 0
  3085. },
  3086. "_lrot": {
  3087. "__type__": "cc.Quat",
  3088. "x": 0,
  3089. "y": 0,
  3090. "z": 0,
  3091. "w": 1
  3092. },
  3093. "_lscale": {
  3094. "__type__": "cc.Vec3",
  3095. "x": 1,
  3096. "y": 1,
  3097. "z": 1
  3098. },
  3099. "_mobility": 0,
  3100. "_layer": 33554432,
  3101. "_euler": {
  3102. "__type__": "cc.Vec3",
  3103. "x": 0,
  3104. "y": 0,
  3105. "z": 0
  3106. },
  3107. "_id": ""
  3108. },
  3109. {
  3110. "__type__": "cc.Node",
  3111. "_name": "wear_btn",
  3112. "_objFlags": 0,
  3113. "__editorExtras__": {},
  3114. "_parent": {
  3115. "__id__": 124
  3116. },
  3117. "_children": [
  3118. {
  3119. "__id__": 126
  3120. }
  3121. ],
  3122. "_active": true,
  3123. "_components": [
  3124. {
  3125. "__id__": 132
  3126. },
  3127. {
  3128. "__id__": 134
  3129. },
  3130. {
  3131. "__id__": 136
  3132. }
  3133. ],
  3134. "_prefab": {
  3135. "__id__": 139
  3136. },
  3137. "_lpos": {
  3138. "__type__": "cc.Vec3",
  3139. "x": 200,
  3140. "y": 0,
  3141. "z": 0
  3142. },
  3143. "_lrot": {
  3144. "__type__": "cc.Quat",
  3145. "x": 0,
  3146. "y": 0,
  3147. "z": 0,
  3148. "w": 1
  3149. },
  3150. "_lscale": {
  3151. "__type__": "cc.Vec3",
  3152. "x": 0.75,
  3153. "y": 0.75,
  3154. "z": 1
  3155. },
  3156. "_mobility": 0,
  3157. "_layer": 33554432,
  3158. "_euler": {
  3159. "__type__": "cc.Vec3",
  3160. "x": 0,
  3161. "y": 0,
  3162. "z": 0
  3163. },
  3164. "_id": ""
  3165. },
  3166. {
  3167. "__type__": "cc.Node",
  3168. "_name": "btn_tx",
  3169. "_objFlags": 0,
  3170. "__editorExtras__": {},
  3171. "_parent": {
  3172. "__id__": 125
  3173. },
  3174. "_children": [],
  3175. "_active": true,
  3176. "_components": [
  3177. {
  3178. "__id__": 127
  3179. },
  3180. {
  3181. "__id__": 129
  3182. }
  3183. ],
  3184. "_prefab": {
  3185. "__id__": 131
  3186. },
  3187. "_lpos": {
  3188. "__type__": "cc.Vec3",
  3189. "x": 0,
  3190. "y": 0,
  3191. "z": 0
  3192. },
  3193. "_lrot": {
  3194. "__type__": "cc.Quat",
  3195. "x": 0,
  3196. "y": 0,
  3197. "z": 0,
  3198. "w": 1
  3199. },
  3200. "_lscale": {
  3201. "__type__": "cc.Vec3",
  3202. "x": 1,
  3203. "y": 1,
  3204. "z": 1
  3205. },
  3206. "_mobility": 0,
  3207. "_layer": 33554432,
  3208. "_euler": {
  3209. "__type__": "cc.Vec3",
  3210. "x": 0,
  3211. "y": 0,
  3212. "z": 0
  3213. },
  3214. "_id": ""
  3215. },
  3216. {
  3217. "__type__": "cc.UITransform",
  3218. "_name": "",
  3219. "_objFlags": 0,
  3220. "__editorExtras__": {},
  3221. "node": {
  3222. "__id__": 126
  3223. },
  3224. "_enabled": true,
  3225. "__prefab": {
  3226. "__id__": 128
  3227. },
  3228. "_contentSize": {
  3229. "__type__": "cc.Size",
  3230. "width": 62,
  3231. "height": 41.28
  3232. },
  3233. "_anchorPoint": {
  3234. "__type__": "cc.Vec2",
  3235. "x": 0.5,
  3236. "y": 0.5
  3237. },
  3238. "_id": ""
  3239. },
  3240. {
  3241. "__type__": "cc.CompPrefabInfo",
  3242. "fileId": "99gImpL/5Pxbq9a7oEREpo"
  3243. },
  3244. {
  3245. "__type__": "cc.Label",
  3246. "_name": "",
  3247. "_objFlags": 0,
  3248. "__editorExtras__": {},
  3249. "node": {
  3250. "__id__": 126
  3251. },
  3252. "_enabled": true,
  3253. "__prefab": {
  3254. "__id__": 130
  3255. },
  3256. "_customMaterial": null,
  3257. "_srcBlendFactor": 2,
  3258. "_dstBlendFactor": 4,
  3259. "_color": {
  3260. "__type__": "cc.Color",
  3261. "r": 255,
  3262. "g": 255,
  3263. "b": 255,
  3264. "a": 255
  3265. },
  3266. "_string": "取消",
  3267. "_horizontalAlign": 1,
  3268. "_verticalAlign": 1,
  3269. "_actualFontSize": 28,
  3270. "_fontSize": 28,
  3271. "_fontFamily": "Arial",
  3272. "_lineHeight": 28,
  3273. "_overflow": 0,
  3274. "_enableWrapText": false,
  3275. "_font": {
  3276. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  3277. "__expectedType__": "cc.TTFFont"
  3278. },
  3279. "_isSystemFontUsed": false,
  3280. "_spacingX": 0,
  3281. "_isItalic": false,
  3282. "_isBold": true,
  3283. "_isUnderline": false,
  3284. "_underlineHeight": 2,
  3285. "_cacheMode": 0,
  3286. "_enableOutline": true,
  3287. "_outlineColor": {
  3288. "__type__": "cc.Color",
  3289. "r": 117,
  3290. "g": 71,
  3291. "b": 16,
  3292. "a": 255
  3293. },
  3294. "_outlineWidth": 3,
  3295. "_enableShadow": false,
  3296. "_shadowColor": {
  3297. "__type__": "cc.Color",
  3298. "r": 0,
  3299. "g": 0,
  3300. "b": 0,
  3301. "a": 255
  3302. },
  3303. "_shadowOffset": {
  3304. "__type__": "cc.Vec2",
  3305. "x": 2,
  3306. "y": 2
  3307. },
  3308. "_shadowBlur": 2,
  3309. "_id": ""
  3310. },
  3311. {
  3312. "__type__": "cc.CompPrefabInfo",
  3313. "fileId": "4bqCRl1rxBVKNU4HLT05rg"
  3314. },
  3315. {
  3316. "__type__": "cc.PrefabInfo",
  3317. "root": {
  3318. "__id__": 1
  3319. },
  3320. "asset": {
  3321. "__id__": 0
  3322. },
  3323. "fileId": "7cB9tQXH9I/Z+80xNbjdIQ",
  3324. "instance": null,
  3325. "targetOverrides": null,
  3326. "nestedPrefabInstanceRoots": null
  3327. },
  3328. {
  3329. "__type__": "cc.UITransform",
  3330. "_name": "",
  3331. "_objFlags": 0,
  3332. "__editorExtras__": {},
  3333. "node": {
  3334. "__id__": 125
  3335. },
  3336. "_enabled": true,
  3337. "__prefab": {
  3338. "__id__": 133
  3339. },
  3340. "_contentSize": {
  3341. "__type__": "cc.Size",
  3342. "width": 182,
  3343. "height": 90
  3344. },
  3345. "_anchorPoint": {
  3346. "__type__": "cc.Vec2",
  3347. "x": 0.5,
  3348. "y": 0.5
  3349. },
  3350. "_id": ""
  3351. },
  3352. {
  3353. "__type__": "cc.CompPrefabInfo",
  3354. "fileId": "a6WcCeEOxF3LJ6JVcNTpRy"
  3355. },
  3356. {
  3357. "__type__": "cc.Sprite",
  3358. "_name": "",
  3359. "_objFlags": 0,
  3360. "__editorExtras__": {},
  3361. "node": {
  3362. "__id__": 125
  3363. },
  3364. "_enabled": true,
  3365. "__prefab": {
  3366. "__id__": 135
  3367. },
  3368. "_customMaterial": null,
  3369. "_srcBlendFactor": 2,
  3370. "_dstBlendFactor": 4,
  3371. "_color": {
  3372. "__type__": "cc.Color",
  3373. "r": 255,
  3374. "g": 255,
  3375. "b": 255,
  3376. "a": 255
  3377. },
  3378. "_spriteFrame": {
  3379. "__uuid__": "97842c44-989e-43cd-9558-4c7583ef0b0b@f9941",
  3380. "__expectedType__": "cc.SpriteFrame"
  3381. },
  3382. "_type": 0,
  3383. "_fillType": 0,
  3384. "_sizeMode": 1,
  3385. "_fillCenter": {
  3386. "__type__": "cc.Vec2",
  3387. "x": 0,
  3388. "y": 0
  3389. },
  3390. "_fillStart": 0,
  3391. "_fillRange": 0,
  3392. "_isTrimmedMode": true,
  3393. "_useGrayscale": false,
  3394. "_atlas": null,
  3395. "_id": ""
  3396. },
  3397. {
  3398. "__type__": "cc.CompPrefabInfo",
  3399. "fileId": "efW1sEOW9FnaPnFYsfujH0"
  3400. },
  3401. {
  3402. "__type__": "cc.Button",
  3403. "_name": "",
  3404. "_objFlags": 0,
  3405. "__editorExtras__": {},
  3406. "node": {
  3407. "__id__": 125
  3408. },
  3409. "_enabled": true,
  3410. "__prefab": {
  3411. "__id__": 137
  3412. },
  3413. "clickEvents": [
  3414. {
  3415. "__id__": 138
  3416. }
  3417. ],
  3418. "_interactable": true,
  3419. "_transition": 3,
  3420. "_normalColor": {
  3421. "__type__": "cc.Color",
  3422. "r": 214,
  3423. "g": 214,
  3424. "b": 214,
  3425. "a": 255
  3426. },
  3427. "_hoverColor": {
  3428. "__type__": "cc.Color",
  3429. "r": 211,
  3430. "g": 211,
  3431. "b": 211,
  3432. "a": 255
  3433. },
  3434. "_pressedColor": {
  3435. "__type__": "cc.Color",
  3436. "r": 255,
  3437. "g": 255,
  3438. "b": 255,
  3439. "a": 255
  3440. },
  3441. "_disabledColor": {
  3442. "__type__": "cc.Color",
  3443. "r": 124,
  3444. "g": 124,
  3445. "b": 124,
  3446. "a": 255
  3447. },
  3448. "_normalSprite": null,
  3449. "_hoverSprite": null,
  3450. "_pressedSprite": null,
  3451. "_disabledSprite": null,
  3452. "_duration": 0.1,
  3453. "_zoomScale": 0.8,
  3454. "_target": {
  3455. "__id__": 125
  3456. },
  3457. "_id": ""
  3458. },
  3459. {
  3460. "__type__": "cc.CompPrefabInfo",
  3461. "fileId": "e9t9MDao9LMpr7Lmatoy9J"
  3462. },
  3463. {
  3464. "__type__": "cc.ClickEvent",
  3465. "target": {
  3466. "__id__": 1
  3467. },
  3468. "component": "",
  3469. "_componentId": "4223a0+Eo1D/atb7FG7q28T",
  3470. "handler": "onTouchButton",
  3471. "customEventData": ""
  3472. },
  3473. {
  3474. "__type__": "cc.PrefabInfo",
  3475. "root": {
  3476. "__id__": 1
  3477. },
  3478. "asset": {
  3479. "__id__": 0
  3480. },
  3481. "fileId": "988wYrw7FI1qmMBAxy37e2",
  3482. "instance": null,
  3483. "targetOverrides": null,
  3484. "nestedPrefabInstanceRoots": null
  3485. },
  3486. {
  3487. "__type__": "cc.Node",
  3488. "_name": "update_btn",
  3489. "_objFlags": 0,
  3490. "__editorExtras__": {},
  3491. "_parent": {
  3492. "__id__": 124
  3493. },
  3494. "_children": [
  3495. {
  3496. "__id__": 141
  3497. }
  3498. ],
  3499. "_active": true,
  3500. "_components": [
  3501. {
  3502. "__id__": 147
  3503. },
  3504. {
  3505. "__id__": 149
  3506. },
  3507. {
  3508. "__id__": 151
  3509. }
  3510. ],
  3511. "_prefab": {
  3512. "__id__": 154
  3513. },
  3514. "_lpos": {
  3515. "__type__": "cc.Vec3",
  3516. "x": -200,
  3517. "y": 0,
  3518. "z": 0
  3519. },
  3520. "_lrot": {
  3521. "__type__": "cc.Quat",
  3522. "x": 0,
  3523. "y": 0,
  3524. "z": 0,
  3525. "w": 1
  3526. },
  3527. "_lscale": {
  3528. "__type__": "cc.Vec3",
  3529. "x": 0.75,
  3530. "y": 0.75,
  3531. "z": 1
  3532. },
  3533. "_mobility": 0,
  3534. "_layer": 33554432,
  3535. "_euler": {
  3536. "__type__": "cc.Vec3",
  3537. "x": 0,
  3538. "y": 0,
  3539. "z": 0
  3540. },
  3541. "_id": ""
  3542. },
  3543. {
  3544. "__type__": "cc.Node",
  3545. "_name": "btn_tx",
  3546. "_objFlags": 0,
  3547. "__editorExtras__": {},
  3548. "_parent": {
  3549. "__id__": 140
  3550. },
  3551. "_children": [],
  3552. "_active": true,
  3553. "_components": [
  3554. {
  3555. "__id__": 142
  3556. },
  3557. {
  3558. "__id__": 144
  3559. }
  3560. ],
  3561. "_prefab": {
  3562. "__id__": 146
  3563. },
  3564. "_lpos": {
  3565. "__type__": "cc.Vec3",
  3566. "x": 0,
  3567. "y": 0,
  3568. "z": 0
  3569. },
  3570. "_lrot": {
  3571. "__type__": "cc.Quat",
  3572. "x": 0,
  3573. "y": 0,
  3574. "z": 0,
  3575. "w": 1
  3576. },
  3577. "_lscale": {
  3578. "__type__": "cc.Vec3",
  3579. "x": 1,
  3580. "y": 1,
  3581. "z": 1
  3582. },
  3583. "_mobility": 0,
  3584. "_layer": 33554432,
  3585. "_euler": {
  3586. "__type__": "cc.Vec3",
  3587. "x": 0,
  3588. "y": 0,
  3589. "z": 0
  3590. },
  3591. "_id": ""
  3592. },
  3593. {
  3594. "__type__": "cc.UITransform",
  3595. "_name": "",
  3596. "_objFlags": 0,
  3597. "__editorExtras__": {},
  3598. "node": {
  3599. "__id__": 141
  3600. },
  3601. "_enabled": true,
  3602. "__prefab": {
  3603. "__id__": 143
  3604. },
  3605. "_contentSize": {
  3606. "__type__": "cc.Size",
  3607. "width": 116,
  3608. "height": 39.28
  3609. },
  3610. "_anchorPoint": {
  3611. "__type__": "cc.Vec2",
  3612. "x": 0.5,
  3613. "y": 0.5
  3614. },
  3615. "_id": ""
  3616. },
  3617. {
  3618. "__type__": "cc.CompPrefabInfo",
  3619. "fileId": "60JH9P4hZIJbEhDo/feitk"
  3620. },
  3621. {
  3622. "__type__": "cc.Label",
  3623. "_name": "",
  3624. "_objFlags": 0,
  3625. "__editorExtras__": {},
  3626. "node": {
  3627. "__id__": 141
  3628. },
  3629. "_enabled": true,
  3630. "__prefab": {
  3631. "__id__": 145
  3632. },
  3633. "_customMaterial": null,
  3634. "_srcBlendFactor": 2,
  3635. "_dstBlendFactor": 4,
  3636. "_color": {
  3637. "__type__": "cc.Color",
  3638. "r": 255,
  3639. "g": 255,
  3640. "b": 255,
  3641. "a": 255
  3642. },
  3643. "_string": "确定",
  3644. "_horizontalAlign": 1,
  3645. "_verticalAlign": 1,
  3646. "_actualFontSize": 28,
  3647. "_fontSize": 28,
  3648. "_fontFamily": "Arial",
  3649. "_lineHeight": 28,
  3650. "_overflow": 2,
  3651. "_enableWrapText": false,
  3652. "_font": {
  3653. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  3654. "__expectedType__": "cc.TTFFont"
  3655. },
  3656. "_isSystemFontUsed": false,
  3657. "_spacingX": 0,
  3658. "_isItalic": false,
  3659. "_isBold": true,
  3660. "_isUnderline": false,
  3661. "_underlineHeight": 2,
  3662. "_cacheMode": 0,
  3663. "_enableOutline": true,
  3664. "_outlineColor": {
  3665. "__type__": "cc.Color",
  3666. "r": 117,
  3667. "g": 71,
  3668. "b": 16,
  3669. "a": 255
  3670. },
  3671. "_outlineWidth": 3,
  3672. "_enableShadow": false,
  3673. "_shadowColor": {
  3674. "__type__": "cc.Color",
  3675. "r": 0,
  3676. "g": 0,
  3677. "b": 0,
  3678. "a": 255
  3679. },
  3680. "_shadowOffset": {
  3681. "__type__": "cc.Vec2",
  3682. "x": 2,
  3683. "y": 2
  3684. },
  3685. "_shadowBlur": 2,
  3686. "_id": ""
  3687. },
  3688. {
  3689. "__type__": "cc.CompPrefabInfo",
  3690. "fileId": "4eXeY9MUpJKpM62K5Yc8Ia"
  3691. },
  3692. {
  3693. "__type__": "cc.PrefabInfo",
  3694. "root": {
  3695. "__id__": 1
  3696. },
  3697. "asset": {
  3698. "__id__": 0
  3699. },
  3700. "fileId": "3c8RSRq2NMr7jK7Ik4Rkr0",
  3701. "instance": null,
  3702. "targetOverrides": null,
  3703. "nestedPrefabInstanceRoots": null
  3704. },
  3705. {
  3706. "__type__": "cc.UITransform",
  3707. "_name": "",
  3708. "_objFlags": 0,
  3709. "__editorExtras__": {},
  3710. "node": {
  3711. "__id__": 140
  3712. },
  3713. "_enabled": true,
  3714. "__prefab": {
  3715. "__id__": 148
  3716. },
  3717. "_contentSize": {
  3718. "__type__": "cc.Size",
  3719. "width": 182,
  3720. "height": 90
  3721. },
  3722. "_anchorPoint": {
  3723. "__type__": "cc.Vec2",
  3724. "x": 0.5,
  3725. "y": 0.5
  3726. },
  3727. "_id": ""
  3728. },
  3729. {
  3730. "__type__": "cc.CompPrefabInfo",
  3731. "fileId": "9au8iN155JQZI7OaC2fd1W"
  3732. },
  3733. {
  3734. "__type__": "cc.Sprite",
  3735. "_name": "",
  3736. "_objFlags": 0,
  3737. "__editorExtras__": {},
  3738. "node": {
  3739. "__id__": 140
  3740. },
  3741. "_enabled": true,
  3742. "__prefab": {
  3743. "__id__": 150
  3744. },
  3745. "_customMaterial": null,
  3746. "_srcBlendFactor": 2,
  3747. "_dstBlendFactor": 4,
  3748. "_color": {
  3749. "__type__": "cc.Color",
  3750. "r": 255,
  3751. "g": 255,
  3752. "b": 255,
  3753. "a": 255
  3754. },
  3755. "_spriteFrame": {
  3756. "__uuid__": "34877f34-75e1-4cbb-8ec9-f1eda8f303fc@f9941",
  3757. "__expectedType__": "cc.SpriteFrame"
  3758. },
  3759. "_type": 0,
  3760. "_fillType": 0,
  3761. "_sizeMode": 1,
  3762. "_fillCenter": {
  3763. "__type__": "cc.Vec2",
  3764. "x": 0,
  3765. "y": 0
  3766. },
  3767. "_fillStart": 0,
  3768. "_fillRange": 0,
  3769. "_isTrimmedMode": true,
  3770. "_useGrayscale": false,
  3771. "_atlas": null,
  3772. "_id": ""
  3773. },
  3774. {
  3775. "__type__": "cc.CompPrefabInfo",
  3776. "fileId": "daFQ5fcOxDmJozTgJTKO6d"
  3777. },
  3778. {
  3779. "__type__": "cc.Button",
  3780. "_name": "",
  3781. "_objFlags": 0,
  3782. "__editorExtras__": {},
  3783. "node": {
  3784. "__id__": 140
  3785. },
  3786. "_enabled": true,
  3787. "__prefab": {
  3788. "__id__": 152
  3789. },
  3790. "clickEvents": [
  3791. {
  3792. "__id__": 153
  3793. }
  3794. ],
  3795. "_interactable": true,
  3796. "_transition": 3,
  3797. "_normalColor": {
  3798. "__type__": "cc.Color",
  3799. "r": 214,
  3800. "g": 214,
  3801. "b": 214,
  3802. "a": 255
  3803. },
  3804. "_hoverColor": {
  3805. "__type__": "cc.Color",
  3806. "r": 211,
  3807. "g": 211,
  3808. "b": 211,
  3809. "a": 255
  3810. },
  3811. "_pressedColor": {
  3812. "__type__": "cc.Color",
  3813. "r": 255,
  3814. "g": 255,
  3815. "b": 255,
  3816. "a": 255
  3817. },
  3818. "_disabledColor": {
  3819. "__type__": "cc.Color",
  3820. "r": 124,
  3821. "g": 124,
  3822. "b": 124,
  3823. "a": 255
  3824. },
  3825. "_normalSprite": null,
  3826. "_hoverSprite": null,
  3827. "_pressedSprite": null,
  3828. "_disabledSprite": null,
  3829. "_duration": 0.1,
  3830. "_zoomScale": 0.8,
  3831. "_target": {
  3832. "__id__": 140
  3833. },
  3834. "_id": ""
  3835. },
  3836. {
  3837. "__type__": "cc.CompPrefabInfo",
  3838. "fileId": "83rdorhXtLh6ZmHmBGypPf"
  3839. },
  3840. {
  3841. "__type__": "cc.ClickEvent",
  3842. "target": {
  3843. "__id__": 1
  3844. },
  3845. "component": "",
  3846. "_componentId": "4223a0+Eo1D/atb7FG7q28T",
  3847. "handler": "onTouchButton",
  3848. "customEventData": ""
  3849. },
  3850. {
  3851. "__type__": "cc.PrefabInfo",
  3852. "root": {
  3853. "__id__": 1
  3854. },
  3855. "asset": {
  3856. "__id__": 0
  3857. },
  3858. "fileId": "5fE0804F5F/JIdbt1NGOW3",
  3859. "instance": null,
  3860. "targetOverrides": null,
  3861. "nestedPrefabInstanceRoots": null
  3862. },
  3863. {
  3864. "__type__": "cc.Node",
  3865. "_name": "strong_btn",
  3866. "_objFlags": 0,
  3867. "__editorExtras__": {},
  3868. "_parent": {
  3869. "__id__": 124
  3870. },
  3871. "_children": [
  3872. {
  3873. "__id__": 156
  3874. }
  3875. ],
  3876. "_active": true,
  3877. "_components": [
  3878. {
  3879. "__id__": 162
  3880. },
  3881. {
  3882. "__id__": 164
  3883. },
  3884. {
  3885. "__id__": 166
  3886. }
  3887. ],
  3888. "_prefab": {
  3889. "__id__": 169
  3890. },
  3891. "_lpos": {
  3892. "__type__": "cc.Vec3",
  3893. "x": 0,
  3894. "y": 0,
  3895. "z": 0
  3896. },
  3897. "_lrot": {
  3898. "__type__": "cc.Quat",
  3899. "x": 0,
  3900. "y": 0,
  3901. "z": 0,
  3902. "w": 1
  3903. },
  3904. "_lscale": {
  3905. "__type__": "cc.Vec3",
  3906. "x": 0.75,
  3907. "y": 0.75,
  3908. "z": 1
  3909. },
  3910. "_mobility": 0,
  3911. "_layer": 33554432,
  3912. "_euler": {
  3913. "__type__": "cc.Vec3",
  3914. "x": 0,
  3915. "y": 0,
  3916. "z": 0
  3917. },
  3918. "_id": ""
  3919. },
  3920. {
  3921. "__type__": "cc.Node",
  3922. "_name": "btn_tx",
  3923. "_objFlags": 0,
  3924. "__editorExtras__": {},
  3925. "_parent": {
  3926. "__id__": 155
  3927. },
  3928. "_children": [],
  3929. "_active": true,
  3930. "_components": [
  3931. {
  3932. "__id__": 157
  3933. },
  3934. {
  3935. "__id__": 159
  3936. }
  3937. ],
  3938. "_prefab": {
  3939. "__id__": 161
  3940. },
  3941. "_lpos": {
  3942. "__type__": "cc.Vec3",
  3943. "x": 0,
  3944. "y": 0,
  3945. "z": 0
  3946. },
  3947. "_lrot": {
  3948. "__type__": "cc.Quat",
  3949. "x": 0,
  3950. "y": 0,
  3951. "z": 0,
  3952. "w": 1
  3953. },
  3954. "_lscale": {
  3955. "__type__": "cc.Vec3",
  3956. "x": 1,
  3957. "y": 1,
  3958. "z": 1
  3959. },
  3960. "_mobility": 0,
  3961. "_layer": 33554432,
  3962. "_euler": {
  3963. "__type__": "cc.Vec3",
  3964. "x": 0,
  3965. "y": 0,
  3966. "z": 0
  3967. },
  3968. "_id": ""
  3969. },
  3970. {
  3971. "__type__": "cc.UITransform",
  3972. "_name": "",
  3973. "_objFlags": 0,
  3974. "__editorExtras__": {},
  3975. "node": {
  3976. "__id__": 156
  3977. },
  3978. "_enabled": true,
  3979. "__prefab": {
  3980. "__id__": 158
  3981. },
  3982. "_contentSize": {
  3983. "__type__": "cc.Size",
  3984. "width": 62,
  3985. "height": 41.28
  3986. },
  3987. "_anchorPoint": {
  3988. "__type__": "cc.Vec2",
  3989. "x": 0.5,
  3990. "y": 0.5
  3991. },
  3992. "_id": ""
  3993. },
  3994. {
  3995. "__type__": "cc.CompPrefabInfo",
  3996. "fileId": "06T/tqEqFGiLWDEqB/laio"
  3997. },
  3998. {
  3999. "__type__": "cc.Label",
  4000. "_name": "",
  4001. "_objFlags": 0,
  4002. "__editorExtras__": {},
  4003. "node": {
  4004. "__id__": 156
  4005. },
  4006. "_enabled": true,
  4007. "__prefab": {
  4008. "__id__": 160
  4009. },
  4010. "_customMaterial": null,
  4011. "_srcBlendFactor": 2,
  4012. "_dstBlendFactor": 4,
  4013. "_color": {
  4014. "__type__": "cc.Color",
  4015. "r": 255,
  4016. "g": 255,
  4017. "b": 255,
  4018. "a": 255
  4019. },
  4020. "_string": "取消",
  4021. "_horizontalAlign": 1,
  4022. "_verticalAlign": 1,
  4023. "_actualFontSize": 28,
  4024. "_fontSize": 28,
  4025. "_fontFamily": "Arial",
  4026. "_lineHeight": 28,
  4027. "_overflow": 0,
  4028. "_enableWrapText": false,
  4029. "_font": {
  4030. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  4031. "__expectedType__": "cc.TTFFont"
  4032. },
  4033. "_isSystemFontUsed": false,
  4034. "_spacingX": 0,
  4035. "_isItalic": false,
  4036. "_isBold": true,
  4037. "_isUnderline": false,
  4038. "_underlineHeight": 2,
  4039. "_cacheMode": 0,
  4040. "_enableOutline": true,
  4041. "_outlineColor": {
  4042. "__type__": "cc.Color",
  4043. "r": 40,
  4044. "g": 86,
  4045. "b": 115,
  4046. "a": 255
  4047. },
  4048. "_outlineWidth": 3,
  4049. "_enableShadow": false,
  4050. "_shadowColor": {
  4051. "__type__": "cc.Color",
  4052. "r": 0,
  4053. "g": 0,
  4054. "b": 0,
  4055. "a": 255
  4056. },
  4057. "_shadowOffset": {
  4058. "__type__": "cc.Vec2",
  4059. "x": 2,
  4060. "y": 2
  4061. },
  4062. "_shadowBlur": 2,
  4063. "_id": ""
  4064. },
  4065. {
  4066. "__type__": "cc.CompPrefabInfo",
  4067. "fileId": "d420oVkplGzookPZaYpUR5"
  4068. },
  4069. {
  4070. "__type__": "cc.PrefabInfo",
  4071. "root": {
  4072. "__id__": 1
  4073. },
  4074. "asset": {
  4075. "__id__": 0
  4076. },
  4077. "fileId": "56eNsC4A5ES7TQK3Jtq5sj",
  4078. "instance": null,
  4079. "targetOverrides": null,
  4080. "nestedPrefabInstanceRoots": null
  4081. },
  4082. {
  4083. "__type__": "cc.UITransform",
  4084. "_name": "",
  4085. "_objFlags": 0,
  4086. "__editorExtras__": {},
  4087. "node": {
  4088. "__id__": 155
  4089. },
  4090. "_enabled": true,
  4091. "__prefab": {
  4092. "__id__": 163
  4093. },
  4094. "_contentSize": {
  4095. "__type__": "cc.Size",
  4096. "width": 182,
  4097. "height": 90
  4098. },
  4099. "_anchorPoint": {
  4100. "__type__": "cc.Vec2",
  4101. "x": 0.5,
  4102. "y": 0.5
  4103. },
  4104. "_id": ""
  4105. },
  4106. {
  4107. "__type__": "cc.CompPrefabInfo",
  4108. "fileId": "78Lek5o5hHErp7CjrPBM6W"
  4109. },
  4110. {
  4111. "__type__": "cc.Sprite",
  4112. "_name": "",
  4113. "_objFlags": 0,
  4114. "__editorExtras__": {},
  4115. "node": {
  4116. "__id__": 155
  4117. },
  4118. "_enabled": true,
  4119. "__prefab": {
  4120. "__id__": 165
  4121. },
  4122. "_customMaterial": null,
  4123. "_srcBlendFactor": 2,
  4124. "_dstBlendFactor": 4,
  4125. "_color": {
  4126. "__type__": "cc.Color",
  4127. "r": 255,
  4128. "g": 255,
  4129. "b": 255,
  4130. "a": 255
  4131. },
  4132. "_spriteFrame": {
  4133. "__uuid__": "a08bf7db-92e5-4606-b525-0487cd0c3154@f9941",
  4134. "__expectedType__": "cc.SpriteFrame"
  4135. },
  4136. "_type": 0,
  4137. "_fillType": 0,
  4138. "_sizeMode": 1,
  4139. "_fillCenter": {
  4140. "__type__": "cc.Vec2",
  4141. "x": 0,
  4142. "y": 0
  4143. },
  4144. "_fillStart": 0,
  4145. "_fillRange": 0,
  4146. "_isTrimmedMode": true,
  4147. "_useGrayscale": false,
  4148. "_atlas": null,
  4149. "_id": ""
  4150. },
  4151. {
  4152. "__type__": "cc.CompPrefabInfo",
  4153. "fileId": "78j0pMQ2NFSLOf6DwT1GQs"
  4154. },
  4155. {
  4156. "__type__": "cc.Button",
  4157. "_name": "",
  4158. "_objFlags": 0,
  4159. "__editorExtras__": {},
  4160. "node": {
  4161. "__id__": 155
  4162. },
  4163. "_enabled": true,
  4164. "__prefab": {
  4165. "__id__": 167
  4166. },
  4167. "clickEvents": [
  4168. {
  4169. "__id__": 168
  4170. }
  4171. ],
  4172. "_interactable": true,
  4173. "_transition": 3,
  4174. "_normalColor": {
  4175. "__type__": "cc.Color",
  4176. "r": 214,
  4177. "g": 214,
  4178. "b": 214,
  4179. "a": 255
  4180. },
  4181. "_hoverColor": {
  4182. "__type__": "cc.Color",
  4183. "r": 211,
  4184. "g": 211,
  4185. "b": 211,
  4186. "a": 255
  4187. },
  4188. "_pressedColor": {
  4189. "__type__": "cc.Color",
  4190. "r": 255,
  4191. "g": 255,
  4192. "b": 255,
  4193. "a": 255
  4194. },
  4195. "_disabledColor": {
  4196. "__type__": "cc.Color",
  4197. "r": 124,
  4198. "g": 124,
  4199. "b": 124,
  4200. "a": 255
  4201. },
  4202. "_normalSprite": null,
  4203. "_hoverSprite": null,
  4204. "_pressedSprite": null,
  4205. "_disabledSprite": null,
  4206. "_duration": 0.1,
  4207. "_zoomScale": 0.8,
  4208. "_target": {
  4209. "__id__": 155
  4210. },
  4211. "_id": ""
  4212. },
  4213. {
  4214. "__type__": "cc.CompPrefabInfo",
  4215. "fileId": "61NWMHiY5K56qQFim9+pA/"
  4216. },
  4217. {
  4218. "__type__": "cc.ClickEvent",
  4219. "target": {
  4220. "__id__": 1
  4221. },
  4222. "component": "",
  4223. "_componentId": "4223a0+Eo1D/atb7FG7q28T",
  4224. "handler": "onTouchButton",
  4225. "customEventData": ""
  4226. },
  4227. {
  4228. "__type__": "cc.PrefabInfo",
  4229. "root": {
  4230. "__id__": 1
  4231. },
  4232. "asset": {
  4233. "__id__": 0
  4234. },
  4235. "fileId": "fcRnJb2JJIM6AutaucbwwL",
  4236. "instance": null,
  4237. "targetOverrides": null,
  4238. "nestedPrefabInstanceRoots": null
  4239. },
  4240. {
  4241. "__type__": "cc.UITransform",
  4242. "_name": "",
  4243. "_objFlags": 0,
  4244. "__editorExtras__": {},
  4245. "node": {
  4246. "__id__": 124
  4247. },
  4248. "_enabled": true,
  4249. "__prefab": {
  4250. "__id__": 171
  4251. },
  4252. "_contentSize": {
  4253. "__type__": "cc.Size",
  4254. "width": 704,
  4255. "height": 100
  4256. },
  4257. "_anchorPoint": {
  4258. "__type__": "cc.Vec2",
  4259. "x": 0.5,
  4260. "y": 0.5
  4261. },
  4262. "_id": ""
  4263. },
  4264. {
  4265. "__type__": "cc.CompPrefabInfo",
  4266. "fileId": "58V7qmEm5ASY8b3oaznHlU"
  4267. },
  4268. {
  4269. "__type__": "cc.PrefabInfo",
  4270. "root": {
  4271. "__id__": 1
  4272. },
  4273. "asset": {
  4274. "__id__": 0
  4275. },
  4276. "fileId": "94fJ0mHy1GQIuZyIH4oKxE",
  4277. "instance": null,
  4278. "targetOverrides": null,
  4279. "nestedPrefabInstanceRoots": null
  4280. },
  4281. {
  4282. "__type__": "cc.UITransform",
  4283. "_name": "",
  4284. "_objFlags": 0,
  4285. "__editorExtras__": {},
  4286. "node": {
  4287. "__id__": 35
  4288. },
  4289. "_enabled": true,
  4290. "__prefab": {
  4291. "__id__": 174
  4292. },
  4293. "_contentSize": {
  4294. "__type__": "cc.Size",
  4295. "width": 704,
  4296. "height": 718
  4297. },
  4298. "_anchorPoint": {
  4299. "__type__": "cc.Vec2",
  4300. "x": 0.5,
  4301. "y": 0.5
  4302. },
  4303. "_id": ""
  4304. },
  4305. {
  4306. "__type__": "cc.CompPrefabInfo",
  4307. "fileId": "e780H0SLVJYYdk5WfeqE9T"
  4308. },
  4309. {
  4310. "__type__": "cc.Sprite",
  4311. "_name": "",
  4312. "_objFlags": 0,
  4313. "__editorExtras__": {},
  4314. "node": {
  4315. "__id__": 35
  4316. },
  4317. "_enabled": true,
  4318. "__prefab": {
  4319. "__id__": 176
  4320. },
  4321. "_customMaterial": null,
  4322. "_srcBlendFactor": 2,
  4323. "_dstBlendFactor": 4,
  4324. "_color": {
  4325. "__type__": "cc.Color",
  4326. "r": 255,
  4327. "g": 255,
  4328. "b": 255,
  4329. "a": 255
  4330. },
  4331. "_spriteFrame": {
  4332. "__uuid__": "d474eb83-d7df-426f-bc6a-c3132e070fc2@f9941",
  4333. "__expectedType__": "cc.SpriteFrame"
  4334. },
  4335. "_type": 1,
  4336. "_fillType": 0,
  4337. "_sizeMode": 0,
  4338. "_fillCenter": {
  4339. "__type__": "cc.Vec2",
  4340. "x": 0,
  4341. "y": 0
  4342. },
  4343. "_fillStart": 0,
  4344. "_fillRange": 0,
  4345. "_isTrimmedMode": true,
  4346. "_useGrayscale": false,
  4347. "_atlas": null,
  4348. "_id": ""
  4349. },
  4350. {
  4351. "__type__": "cc.CompPrefabInfo",
  4352. "fileId": "48DfVoJ7NCGqJjcVXKWLl9"
  4353. },
  4354. {
  4355. "__type__": "cc.Widget",
  4356. "_name": "",
  4357. "_objFlags": 0,
  4358. "__editorExtras__": {},
  4359. "node": {
  4360. "__id__": 35
  4361. },
  4362. "_enabled": true,
  4363. "__prefab": {
  4364. "__id__": 178
  4365. },
  4366. "_alignFlags": 18,
  4367. "_target": null,
  4368. "_left": 0,
  4369. "_right": 0,
  4370. "_top": 0,
  4371. "_bottom": 0,
  4372. "_horizontalCenter": 0,
  4373. "_verticalCenter": 0,
  4374. "_isAbsLeft": true,
  4375. "_isAbsRight": true,
  4376. "_isAbsTop": true,
  4377. "_isAbsBottom": true,
  4378. "_isAbsHorizontalCenter": true,
  4379. "_isAbsVerticalCenter": true,
  4380. "_originalWidth": 0,
  4381. "_originalHeight": 0,
  4382. "_alignMode": 2,
  4383. "_lockFlags": 0,
  4384. "_id": ""
  4385. },
  4386. {
  4387. "__type__": "cc.CompPrefabInfo",
  4388. "fileId": "01J9yng7FLdIEW0Hjf0Rid"
  4389. },
  4390. {
  4391. "__type__": "cc.BlockInputEvents",
  4392. "_name": "",
  4393. "_objFlags": 0,
  4394. "__editorExtras__": {},
  4395. "node": {
  4396. "__id__": 35
  4397. },
  4398. "_enabled": true,
  4399. "__prefab": {
  4400. "__id__": 180
  4401. },
  4402. "_id": ""
  4403. },
  4404. {
  4405. "__type__": "cc.CompPrefabInfo",
  4406. "fileId": "ffPFUCHq1NhKYI6khSpj68"
  4407. },
  4408. {
  4409. "__type__": "cc.UIOpacity",
  4410. "_name": "",
  4411. "_objFlags": 0,
  4412. "__editorExtras__": {},
  4413. "node": {
  4414. "__id__": 35
  4415. },
  4416. "_enabled": true,
  4417. "__prefab": {
  4418. "__id__": 182
  4419. },
  4420. "_opacity": 255,
  4421. "_id": ""
  4422. },
  4423. {
  4424. "__type__": "cc.CompPrefabInfo",
  4425. "fileId": "31UTzZ+hxEl7YBfApDGInx"
  4426. },
  4427. {
  4428. "__type__": "cc.Layout",
  4429. "_name": "",
  4430. "_objFlags": 0,
  4431. "__editorExtras__": {},
  4432. "node": {
  4433. "__id__": 35
  4434. },
  4435. "_enabled": true,
  4436. "__prefab": {
  4437. "__id__": 184
  4438. },
  4439. "_resizeMode": 1,
  4440. "_layoutType": 2,
  4441. "_cellSize": {
  4442. "__type__": "cc.Size",
  4443. "width": 40,
  4444. "height": 40
  4445. },
  4446. "_startAxis": 0,
  4447. "_paddingLeft": 0,
  4448. "_paddingRight": 0,
  4449. "_paddingTop": 24,
  4450. "_paddingBottom": 24,
  4451. "_spacingX": 0,
  4452. "_spacingY": 0,
  4453. "_verticalDirection": 1,
  4454. "_horizontalDirection": 0,
  4455. "_constraint": 0,
  4456. "_constraintNum": 2,
  4457. "_affectedByScale": false,
  4458. "_isAlign": false,
  4459. "_id": ""
  4460. },
  4461. {
  4462. "__type__": "cc.CompPrefabInfo",
  4463. "fileId": "53+cKxb5NIyqgHlSvikXS8"
  4464. },
  4465. {
  4466. "__type__": "cc.PrefabInfo",
  4467. "root": {
  4468. "__id__": 1
  4469. },
  4470. "asset": {
  4471. "__id__": 0
  4472. },
  4473. "fileId": "c48rFuyeFDaJibQS8aTORn",
  4474. "instance": null,
  4475. "targetOverrides": null,
  4476. "nestedPrefabInstanceRoots": null
  4477. },
  4478. {
  4479. "__type__": "cc.UITransform",
  4480. "_name": "",
  4481. "_objFlags": 0,
  4482. "__editorExtras__": {},
  4483. "node": {
  4484. "__id__": 1
  4485. },
  4486. "_enabled": true,
  4487. "__prefab": {
  4488. "__id__": 187
  4489. },
  4490. "_contentSize": {
  4491. "__type__": "cc.Size",
  4492. "width": 750,
  4493. "height": 1334
  4494. },
  4495. "_anchorPoint": {
  4496. "__type__": "cc.Vec2",
  4497. "x": 0.5,
  4498. "y": 0.5
  4499. },
  4500. "_id": ""
  4501. },
  4502. {
  4503. "__type__": "cc.CompPrefabInfo",
  4504. "fileId": "feykIaL+FO2Jn6H5WT8vmc"
  4505. },
  4506. {
  4507. "__type__": "cc.Widget",
  4508. "_name": "",
  4509. "_objFlags": 0,
  4510. "__editorExtras__": {},
  4511. "node": {
  4512. "__id__": 1
  4513. },
  4514. "_enabled": true,
  4515. "__prefab": {
  4516. "__id__": 189
  4517. },
  4518. "_alignFlags": 45,
  4519. "_target": null,
  4520. "_left": 0,
  4521. "_right": 0,
  4522. "_top": 0,
  4523. "_bottom": 0,
  4524. "_horizontalCenter": 0,
  4525. "_verticalCenter": 0,
  4526. "_isAbsLeft": true,
  4527. "_isAbsRight": true,
  4528. "_isAbsTop": true,
  4529. "_isAbsBottom": true,
  4530. "_isAbsHorizontalCenter": true,
  4531. "_isAbsVerticalCenter": true,
  4532. "_originalWidth": 100,
  4533. "_originalHeight": 100,
  4534. "_alignMode": 2,
  4535. "_lockFlags": 0,
  4536. "_id": ""
  4537. },
  4538. {
  4539. "__type__": "cc.CompPrefabInfo",
  4540. "fileId": "4egpx98SpMHrZYZourch0s"
  4541. },
  4542. {
  4543. "__type__": "cc.Animation",
  4544. "_name": "",
  4545. "_objFlags": 0,
  4546. "__editorExtras__": {},
  4547. "node": {
  4548. "__id__": 1
  4549. },
  4550. "_enabled": true,
  4551. "__prefab": {
  4552. "__id__": 191
  4553. },
  4554. "playOnLoad": false,
  4555. "_clips": [
  4556. {
  4557. "__uuid__": "89470c00-b399-43af-90c8-f03a38385103",
  4558. "__expectedType__": "cc.AnimationClip"
  4559. },
  4560. {
  4561. "__uuid__": "e0837eb3-8f98-4446-ae76-8a15cc5efaf1",
  4562. "__expectedType__": "cc.AnimationClip"
  4563. }
  4564. ],
  4565. "_defaultClip": null,
  4566. "_id": ""
  4567. },
  4568. {
  4569. "__type__": "cc.CompPrefabInfo",
  4570. "fileId": "51BOn0cb9A1JPY69QSxiHJ"
  4571. },
  4572. {
  4573. "__type__": "cc.UIOpacity",
  4574. "_name": "",
  4575. "_objFlags": 0,
  4576. "__editorExtras__": {},
  4577. "node": {
  4578. "__id__": 1
  4579. },
  4580. "_enabled": true,
  4581. "__prefab": {
  4582. "__id__": 193
  4583. },
  4584. "_opacity": 255,
  4585. "_id": ""
  4586. },
  4587. {
  4588. "__type__": "cc.CompPrefabInfo",
  4589. "fileId": "belxa8icBMT5e9LVvKCHBT"
  4590. },
  4591. {
  4592. "__type__": "4223a0+Eo1D/atb7FG7q28T",
  4593. "_name": "",
  4594. "_objFlags": 0,
  4595. "__editorExtras__": {},
  4596. "node": {
  4597. "__id__": 1
  4598. },
  4599. "_enabled": true,
  4600. "__prefab": {
  4601. "__id__": 195
  4602. },
  4603. "frame_load": false,
  4604. "load_priority": 0,
  4605. "ui_type": 0,
  4606. "_base_view_full": false,
  4607. "_base_view_block": false,
  4608. "_base_quick_close": false,
  4609. "_base_quick_close_exclude_node": [],
  4610. "_base_quick_close_destroy": true,
  4611. "closeTips": {
  4612. "__id__": 28
  4613. },
  4614. "titieTx": {
  4615. "__id__": 40
  4616. },
  4617. "itemNode": {
  4618. "__id__": 53
  4619. },
  4620. "nameTx": {
  4621. "__id__": 60
  4622. },
  4623. "posTx": {
  4624. "__id__": 66
  4625. },
  4626. "slotTx": {
  4627. "__id__": 72
  4628. },
  4629. "descTx": {
  4630. "__id__": 88
  4631. },
  4632. "attrTitieTx": {
  4633. "__id__": 105
  4634. },
  4635. "attrTx": {
  4636. "__id__": 118
  4637. },
  4638. "wearBtnSp": {
  4639. "__id__": 134
  4640. },
  4641. "wearBtnTx": {
  4642. "__id__": 129
  4643. },
  4644. "updateBtnTx": {
  4645. "__id__": 144
  4646. },
  4647. "strongBtn": {
  4648. "__id__": 155
  4649. },
  4650. "strongBtnTx": {
  4651. "__id__": 159
  4652. },
  4653. "_id": ""
  4654. },
  4655. {
  4656. "__type__": "cc.CompPrefabInfo",
  4657. "fileId": "428cz8EcRPGqEOJm6pAi0G"
  4658. },
  4659. {
  4660. "__type__": "cc.PrefabInfo",
  4661. "root": {
  4662. "__id__": 1
  4663. },
  4664. "asset": {
  4665. "__id__": 0
  4666. },
  4667. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  4668. "instance": null,
  4669. "targetOverrides": null
  4670. }
  4671. ]