barracksGradeUp.prefab 71 KB

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