heroSlot_common.prefab 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129
  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": "heroSlot_common",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 8
  24. },
  25. {
  26. "__id__": 19
  27. },
  28. {
  29. "__id__": 85
  30. }
  31. ],
  32. "_active": true,
  33. "_components": [
  34. {
  35. "__id__": 146
  36. },
  37. {
  38. "__id__": 148
  39. }
  40. ],
  41. "_prefab": {
  42. "__id__": 150
  43. },
  44. "_lpos": {
  45. "__type__": "cc.Vec3",
  46. "x": 0,
  47. "y": 2.851,
  48. "z": 0
  49. },
  50. "_lrot": {
  51. "__type__": "cc.Quat",
  52. "x": 0,
  53. "y": 0,
  54. "z": 0,
  55. "w": 1
  56. },
  57. "_lscale": {
  58. "__type__": "cc.Vec3",
  59. "x": 1,
  60. "y": 1,
  61. "z": 1
  62. },
  63. "_layer": 1073741824,
  64. "_euler": {
  65. "__type__": "cc.Vec3",
  66. "x": 0,
  67. "y": 0,
  68. "z": 0
  69. },
  70. "_id": ""
  71. },
  72. {
  73. "__type__": "cc.Node",
  74. "_name": "底座",
  75. "_objFlags": 0,
  76. "_parent": {
  77. "__id__": 1
  78. },
  79. "_children": [],
  80. "_active": true,
  81. "_components": [
  82. {
  83. "__id__": 3
  84. },
  85. {
  86. "__id__": 5
  87. }
  88. ],
  89. "_prefab": {
  90. "__id__": 7
  91. },
  92. "_lpos": {
  93. "__type__": "cc.Vec3",
  94. "x": 0,
  95. "y": -65,
  96. "z": 0
  97. },
  98. "_lrot": {
  99. "__type__": "cc.Quat",
  100. "x": 0,
  101. "y": 0,
  102. "z": 0,
  103. "w": 1
  104. },
  105. "_lscale": {
  106. "__type__": "cc.Vec3",
  107. "x": 1,
  108. "y": 1,
  109. "z": 1
  110. },
  111. "_layer": 1073741824,
  112. "_euler": {
  113. "__type__": "cc.Vec3",
  114. "x": 0,
  115. "y": 0,
  116. "z": 0
  117. },
  118. "_id": ""
  119. },
  120. {
  121. "__type__": "cc.UITransform",
  122. "_name": "",
  123. "_objFlags": 0,
  124. "node": {
  125. "__id__": 2
  126. },
  127. "_enabled": true,
  128. "__prefab": {
  129. "__id__": 4
  130. },
  131. "_contentSize": {
  132. "__type__": "cc.Size",
  133. "width": 92,
  134. "height": 52
  135. },
  136. "_anchorPoint": {
  137. "__type__": "cc.Vec2",
  138. "x": 0.5,
  139. "y": 0.5
  140. },
  141. "_id": ""
  142. },
  143. {
  144. "__type__": "cc.CompPrefabInfo",
  145. "fileId": "a7ifup2fBJYKvXfrTeAB6+"
  146. },
  147. {
  148. "__type__": "cc.Sprite",
  149. "_name": "",
  150. "_objFlags": 0,
  151. "node": {
  152. "__id__": 2
  153. },
  154. "_enabled": true,
  155. "__prefab": {
  156. "__id__": 6
  157. },
  158. "_visFlags": 0,
  159. "_customMaterial": null,
  160. "_srcBlendFactor": 2,
  161. "_dstBlendFactor": 4,
  162. "_color": {
  163. "__type__": "cc.Color",
  164. "r": 255,
  165. "g": 255,
  166. "b": 255,
  167. "a": 255
  168. },
  169. "_spriteFrame": {
  170. "__uuid__": "2bfd5855-a7dd-4c40-9785-b2efb3cfc978@f9941",
  171. "__expectedType__": "cc.SpriteFrame"
  172. },
  173. "_type": 0,
  174. "_fillType": 0,
  175. "_sizeMode": 1,
  176. "_fillCenter": {
  177. "__type__": "cc.Vec2",
  178. "x": 0,
  179. "y": 0
  180. },
  181. "_fillStart": 0,
  182. "_fillRange": 0,
  183. "_isTrimmedMode": true,
  184. "_useGrayscale": false,
  185. "_atlas": null,
  186. "_id": ""
  187. },
  188. {
  189. "__type__": "cc.CompPrefabInfo",
  190. "fileId": "ceV7m4Sh1IU4WH4gJBxTqA"
  191. },
  192. {
  193. "__type__": "cc.PrefabInfo",
  194. "root": {
  195. "__id__": 1
  196. },
  197. "asset": {
  198. "__id__": 0
  199. },
  200. "fileId": "95R6nfLdNIKb7HovkgX7qN"
  201. },
  202. {
  203. "__type__": "cc.Node",
  204. "_name": "上层结构",
  205. "_objFlags": 0,
  206. "_parent": {
  207. "__id__": 1
  208. },
  209. "_children": [
  210. {
  211. "__id__": 9
  212. },
  213. {
  214. "__id__": 97
  215. },
  216. {
  217. "__id__": 115
  218. }
  219. ],
  220. "_active": true,
  221. "_components": [
  222. {
  223. "__id__": 143
  224. }
  225. ],
  226. "_prefab": {
  227. "__id__": 145
  228. },
  229. "_lpos": {
  230. "__type__": "cc.Vec3",
  231. "x": 0,
  232. "y": 0,
  233. "z": 0
  234. },
  235. "_lrot": {
  236. "__type__": "cc.Quat",
  237. "x": 0,
  238. "y": 0,
  239. "z": 0,
  240. "w": 1
  241. },
  242. "_lscale": {
  243. "__type__": "cc.Vec3",
  244. "x": 1,
  245. "y": 1,
  246. "z": 1
  247. },
  248. "_layer": 1073741824,
  249. "_euler": {
  250. "__type__": "cc.Vec3",
  251. "x": 0,
  252. "y": 0,
  253. "z": 0
  254. },
  255. "_id": ""
  256. },
  257. {
  258. "__type__": "cc.Node",
  259. "_name": "满状态",
  260. "_objFlags": 0,
  261. "_parent": {
  262. "__id__": 8
  263. },
  264. "_children": [
  265. {
  266. "__id__": 10
  267. }
  268. ],
  269. "_active": true,
  270. "_components": [
  271. {
  272. "__id__": 94
  273. }
  274. ],
  275. "_prefab": {
  276. "__id__": 96
  277. },
  278. "_lpos": {
  279. "__type__": "cc.Vec3",
  280. "x": 0,
  281. "y": 0,
  282. "z": 0
  283. },
  284. "_lrot": {
  285. "__type__": "cc.Quat",
  286. "x": 0,
  287. "y": 0,
  288. "z": 0,
  289. "w": 1
  290. },
  291. "_lscale": {
  292. "__type__": "cc.Vec3",
  293. "x": 0.5,
  294. "y": 0.5,
  295. "z": 1
  296. },
  297. "_layer": 1073741824,
  298. "_euler": {
  299. "__type__": "cc.Vec3",
  300. "x": 0,
  301. "y": 0,
  302. "z": 0
  303. },
  304. "_id": ""
  305. },
  306. {
  307. "__type__": "cc.Node",
  308. "_name": "英雄",
  309. "_objFlags": 0,
  310. "_parent": {
  311. "__id__": 9
  312. },
  313. "_children": [],
  314. "_active": true,
  315. "_components": [
  316. {
  317. "__id__": 11
  318. },
  319. {
  320. "__id__": 13
  321. },
  322. {
  323. "__id__": 15
  324. },
  325. {
  326. "__id__": 89
  327. },
  328. {
  329. "__id__": 83
  330. },
  331. {
  332. "__id__": 91
  333. }
  334. ],
  335. "_prefab": {
  336. "__id__": 93
  337. },
  338. "_lpos": {
  339. "__type__": "cc.Vec3",
  340. "x": 0,
  341. "y": -110,
  342. "z": 0
  343. },
  344. "_lrot": {
  345. "__type__": "cc.Quat",
  346. "x": 0,
  347. "y": 0,
  348. "z": 0,
  349. "w": 1
  350. },
  351. "_lscale": {
  352. "__type__": "cc.Vec3",
  353. "x": 1,
  354. "y": 1,
  355. "z": 1
  356. },
  357. "_layer": 1073741824,
  358. "_euler": {
  359. "__type__": "cc.Vec3",
  360. "x": 0,
  361. "y": 0,
  362. "z": 0
  363. },
  364. "_id": ""
  365. },
  366. {
  367. "__type__": "cc.UITransform",
  368. "_name": "",
  369. "_objFlags": 0,
  370. "node": {
  371. "__id__": 10
  372. },
  373. "_enabled": true,
  374. "__prefab": {
  375. "__id__": 12
  376. },
  377. "_contentSize": {
  378. "__type__": "cc.Size",
  379. "width": 168,
  380. "height": 205
  381. },
  382. "_anchorPoint": {
  383. "__type__": "cc.Vec2",
  384. "x": 0.5,
  385. "y": 0
  386. },
  387. "_id": ""
  388. },
  389. {
  390. "__type__": "cc.CompPrefabInfo",
  391. "fileId": "d0CT1b9VJF2YyUa/sgNRc8"
  392. },
  393. {
  394. "__type__": "f38e3ZUeKVBRpbMR2E76T4g",
  395. "_name": "",
  396. "_objFlags": 0,
  397. "node": {
  398. "__id__": 10
  399. },
  400. "_enabled": true,
  401. "__prefab": {
  402. "__id__": 14
  403. },
  404. "_id": ""
  405. },
  406. {
  407. "__type__": "cc.CompPrefabInfo",
  408. "fileId": "afxmIa4BlGG6GFDG6vfWQu"
  409. },
  410. {
  411. "__type__": "13761JuZJNGFLzJSgoq6hx7",
  412. "_name": "",
  413. "_objFlags": 0,
  414. "node": {
  415. "__id__": 10
  416. },
  417. "_enabled": true,
  418. "__prefab": {
  419. "__id__": 16
  420. },
  421. "slotID": 0,
  422. "res": {
  423. "__id__": 13
  424. },
  425. "camp": {
  426. "__id__": 17
  427. },
  428. "starLabel": {
  429. "__id__": 31
  430. },
  431. "lvLabel": {
  432. "__id__": 66
  433. },
  434. "lvProgress": {
  435. "__id__": 54
  436. },
  437. "uiGroup": {
  438. "__id__": 19
  439. },
  440. "open": {
  441. "__id__": 83
  442. },
  443. "layer": {
  444. "__id__": 85
  445. },
  446. "_id": ""
  447. },
  448. {
  449. "__type__": "cc.CompPrefabInfo",
  450. "fileId": "f0He3AvC9BKIOjm0PKZU7y"
  451. },
  452. {
  453. "__type__": "cc.Sprite",
  454. "_name": "",
  455. "_objFlags": 0,
  456. "node": {
  457. "__id__": 18
  458. },
  459. "_enabled": true,
  460. "__prefab": {
  461. "__id__": 82
  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__": "427dbdd5-7dbd-4bf5-a197-194041655d65@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.Node",
  495. "_name": "阵营图标",
  496. "_objFlags": 0,
  497. "_parent": {
  498. "__id__": 19
  499. },
  500. "_children": [],
  501. "_active": true,
  502. "_components": [
  503. {
  504. "__id__": 79
  505. },
  506. {
  507. "__id__": 17
  508. }
  509. ],
  510. "_prefab": {
  511. "__id__": 81
  512. },
  513. "_lpos": {
  514. "__type__": "cc.Vec3",
  515. "x": -100,
  516. "y": -100,
  517. "z": 0
  518. },
  519. "_lrot": {
  520. "__type__": "cc.Quat",
  521. "x": 0,
  522. "y": 0,
  523. "z": 0,
  524. "w": 1
  525. },
  526. "_lscale": {
  527. "__type__": "cc.Vec3",
  528. "x": 1,
  529. "y": 1,
  530. "z": 1
  531. },
  532. "_layer": 1073741824,
  533. "_euler": {
  534. "__type__": "cc.Vec3",
  535. "x": 0,
  536. "y": 0,
  537. "z": 0
  538. },
  539. "_id": ""
  540. },
  541. {
  542. "__type__": "cc.Node",
  543. "_name": "UI",
  544. "_objFlags": 0,
  545. "_parent": {
  546. "__id__": 1
  547. },
  548. "_children": [
  549. {
  550. "__id__": 18
  551. },
  552. {
  553. "__id__": 20
  554. },
  555. {
  556. "__id__": 48
  557. },
  558. {
  559. "__id__": 62
  560. }
  561. ],
  562. "_active": false,
  563. "_components": [
  564. {
  565. "__id__": 76
  566. }
  567. ],
  568. "_prefab": {
  569. "__id__": 78
  570. },
  571. "_lpos": {
  572. "__type__": "cc.Vec3",
  573. "x": -8.583500000000015,
  574. "y": -6.399000000000001,
  575. "z": 0
  576. },
  577. "_lrot": {
  578. "__type__": "cc.Quat",
  579. "x": 0,
  580. "y": 0,
  581. "z": 0,
  582. "w": 1
  583. },
  584. "_lscale": {
  585. "__type__": "cc.Vec3",
  586. "x": 0.5,
  587. "y": 0.5,
  588. "z": 1
  589. },
  590. "_layer": 1073741824,
  591. "_euler": {
  592. "__type__": "cc.Vec3",
  593. "x": 0,
  594. "y": 0,
  595. "z": 0
  596. },
  597. "_id": ""
  598. },
  599. {
  600. "__type__": "cc.Node",
  601. "_name": "星级组",
  602. "_objFlags": 0,
  603. "_parent": {
  604. "__id__": 19
  605. },
  606. "_children": [
  607. {
  608. "__id__": 21
  609. }
  610. ],
  611. "_active": true,
  612. "_components": [
  613. {
  614. "__id__": 43
  615. },
  616. {
  617. "__id__": 45
  618. }
  619. ],
  620. "_prefab": {
  621. "__id__": 47
  622. },
  623. "_lpos": {
  624. "__type__": "cc.Vec3",
  625. "x": 12.339,
  626. "y": -128.322,
  627. "z": 0
  628. },
  629. "_lrot": {
  630. "__type__": "cc.Quat",
  631. "x": 0,
  632. "y": 0,
  633. "z": 0,
  634. "w": 1
  635. },
  636. "_lscale": {
  637. "__type__": "cc.Vec3",
  638. "x": 1.5,
  639. "y": 1.5,
  640. "z": 1
  641. },
  642. "_layer": 1073741824,
  643. "_euler": {
  644. "__type__": "cc.Vec3",
  645. "x": 0,
  646. "y": 0,
  647. "z": 0
  648. },
  649. "_id": ""
  650. },
  651. {
  652. "__type__": "cc.Node",
  653. "_name": "布局",
  654. "_objFlags": 0,
  655. "_parent": {
  656. "__id__": 20
  657. },
  658. "_children": [
  659. {
  660. "__id__": 22
  661. },
  662. {
  663. "__id__": 28
  664. }
  665. ],
  666. "_active": true,
  667. "_components": [
  668. {
  669. "__id__": 36
  670. },
  671. {
  672. "__id__": 38
  673. },
  674. {
  675. "__id__": 40
  676. }
  677. ],
  678. "_prefab": {
  679. "__id__": 42
  680. },
  681. "_lpos": {
  682. "__type__": "cc.Vec3",
  683. "x": 0,
  684. "y": 0,
  685. "z": 0
  686. },
  687. "_lrot": {
  688. "__type__": "cc.Quat",
  689. "x": 0,
  690. "y": 0,
  691. "z": 0,
  692. "w": 1
  693. },
  694. "_lscale": {
  695. "__type__": "cc.Vec3",
  696. "x": 1,
  697. "y": 1,
  698. "z": 1
  699. },
  700. "_layer": 1073741824,
  701. "_euler": {
  702. "__type__": "cc.Vec3",
  703. "x": 0,
  704. "y": 0,
  705. "z": 0
  706. },
  707. "_id": ""
  708. },
  709. {
  710. "__type__": "cc.Node",
  711. "_name": "星",
  712. "_objFlags": 0,
  713. "_parent": {
  714. "__id__": 21
  715. },
  716. "_children": [],
  717. "_active": true,
  718. "_components": [
  719. {
  720. "__id__": 23
  721. },
  722. {
  723. "__id__": 25
  724. }
  725. ],
  726. "_prefab": {
  727. "__id__": 27
  728. },
  729. "_lpos": {
  730. "__type__": "cc.Vec3",
  731. "x": -9.059999999999999,
  732. "y": 0,
  733. "z": 0
  734. },
  735. "_lrot": {
  736. "__type__": "cc.Quat",
  737. "x": 0,
  738. "y": 0,
  739. "z": 0,
  740. "w": 1
  741. },
  742. "_lscale": {
  743. "__type__": "cc.Vec3",
  744. "x": 1,
  745. "y": 1,
  746. "z": 1
  747. },
  748. "_layer": 1073741824,
  749. "_euler": {
  750. "__type__": "cc.Vec3",
  751. "x": 0,
  752. "y": 0,
  753. "z": 0
  754. },
  755. "_id": ""
  756. },
  757. {
  758. "__type__": "cc.UITransform",
  759. "_name": "",
  760. "_objFlags": 0,
  761. "node": {
  762. "__id__": 22
  763. },
  764. "_enabled": true,
  765. "__prefab": {
  766. "__id__": 24
  767. },
  768. "_contentSize": {
  769. "__type__": "cc.Size",
  770. "width": 15,
  771. "height": 15
  772. },
  773. "_anchorPoint": {
  774. "__type__": "cc.Vec2",
  775. "x": 0.5,
  776. "y": 0.5
  777. },
  778. "_id": ""
  779. },
  780. {
  781. "__type__": "cc.CompPrefabInfo",
  782. "fileId": "8824PFRuRIka+fAPgmLTpM"
  783. },
  784. {
  785. "__type__": "cc.Sprite",
  786. "_name": "",
  787. "_objFlags": 0,
  788. "node": {
  789. "__id__": 22
  790. },
  791. "_enabled": true,
  792. "__prefab": {
  793. "__id__": 26
  794. },
  795. "_visFlags": 0,
  796. "_customMaterial": null,
  797. "_srcBlendFactor": 2,
  798. "_dstBlendFactor": 4,
  799. "_color": {
  800. "__type__": "cc.Color",
  801. "r": 255,
  802. "g": 255,
  803. "b": 255,
  804. "a": 255
  805. },
  806. "_spriteFrame": {
  807. "__uuid__": "a11b635f-9835-4958-8baa-de90fe02c787@f9941",
  808. "__expectedType__": "cc.SpriteFrame"
  809. },
  810. "_type": 0,
  811. "_fillType": 0,
  812. "_sizeMode": 1,
  813. "_fillCenter": {
  814. "__type__": "cc.Vec2",
  815. "x": 0,
  816. "y": 0
  817. },
  818. "_fillStart": 0,
  819. "_fillRange": 0,
  820. "_isTrimmedMode": true,
  821. "_useGrayscale": false,
  822. "_atlas": null,
  823. "_id": ""
  824. },
  825. {
  826. "__type__": "cc.CompPrefabInfo",
  827. "fileId": "b4hUYykSJBqptoxJ1Hk+PW"
  828. },
  829. {
  830. "__type__": "cc.PrefabInfo",
  831. "root": {
  832. "__id__": 1
  833. },
  834. "asset": {
  835. "__id__": 0
  836. },
  837. "fileId": "661Cli0HdMdKdvkt4kJtCR"
  838. },
  839. {
  840. "__type__": "cc.Node",
  841. "_name": "星级文本",
  842. "_objFlags": 0,
  843. "_parent": {
  844. "__id__": 21
  845. },
  846. "_children": [],
  847. "_active": true,
  848. "_components": [
  849. {
  850. "__id__": 29
  851. },
  852. {
  853. "__id__": 31
  854. },
  855. {
  856. "__id__": 33
  857. }
  858. ],
  859. "_prefab": {
  860. "__id__": 35
  861. },
  862. "_lpos": {
  863. "__type__": "cc.Vec3",
  864. "x": 10,
  865. "y": 0,
  866. "z": 0
  867. },
  868. "_lrot": {
  869. "__type__": "cc.Quat",
  870. "x": 0,
  871. "y": 0,
  872. "z": 0,
  873. "w": 1
  874. },
  875. "_lscale": {
  876. "__type__": "cc.Vec3",
  877. "x": 1,
  878. "y": 1,
  879. "z": 1
  880. },
  881. "_layer": 33554432,
  882. "_euler": {
  883. "__type__": "cc.Vec3",
  884. "x": 0,
  885. "y": 0,
  886. "z": 0
  887. },
  888. "_id": ""
  889. },
  890. {
  891. "__type__": "cc.UITransform",
  892. "_name": "",
  893. "_objFlags": 0,
  894. "node": {
  895. "__id__": 28
  896. },
  897. "_enabled": true,
  898. "__prefab": {
  899. "__id__": 30
  900. },
  901. "_contentSize": {
  902. "__type__": "cc.Size",
  903. "width": 13.12,
  904. "height": 27.2
  905. },
  906. "_anchorPoint": {
  907. "__type__": "cc.Vec2",
  908. "x": 0.5,
  909. "y": 0.5
  910. },
  911. "_id": ""
  912. },
  913. {
  914. "__type__": "cc.CompPrefabInfo",
  915. "fileId": "c68UOAlNhN171Umca6yVvF"
  916. },
  917. {
  918. "__type__": "cc.Label",
  919. "_name": "",
  920. "_objFlags": 0,
  921. "node": {
  922. "__id__": 28
  923. },
  924. "_enabled": true,
  925. "__prefab": {
  926. "__id__": 32
  927. },
  928. "_visFlags": 0,
  929. "_customMaterial": null,
  930. "_srcBlendFactor": 2,
  931. "_dstBlendFactor": 4,
  932. "_color": {
  933. "__type__": "cc.Color",
  934. "r": 255,
  935. "g": 235,
  936. "b": 60,
  937. "a": 255
  938. },
  939. "_string": "1",
  940. "_horizontalAlign": 1,
  941. "_verticalAlign": 1,
  942. "_actualFontSize": 20,
  943. "_fontSize": 20,
  944. "_fontFamily": "Arial",
  945. "_lineHeight": 20,
  946. "_overflow": 0,
  947. "_enableWrapText": true,
  948. "_font": null,
  949. "_isSystemFontUsed": true,
  950. "_isItalic": false,
  951. "_isBold": false,
  952. "_isUnderline": false,
  953. "_underlineHeight": 2,
  954. "_cacheMode": 0,
  955. "_id": ""
  956. },
  957. {
  958. "__type__": "cc.CompPrefabInfo",
  959. "fileId": "2frm37uaJHQr0AEEaYyM82"
  960. },
  961. {
  962. "__type__": "cc.LabelOutline",
  963. "_name": "",
  964. "_objFlags": 0,
  965. "node": {
  966. "__id__": 28
  967. },
  968. "_enabled": true,
  969. "__prefab": {
  970. "__id__": 34
  971. },
  972. "_color": {
  973. "__type__": "cc.Color",
  974. "r": 128,
  975. "g": 11,
  976. "b": 11,
  977. "a": 255
  978. },
  979. "_width": 1,
  980. "_id": ""
  981. },
  982. {
  983. "__type__": "cc.CompPrefabInfo",
  984. "fileId": "4flCre/o5IDqSYN3SXM9T1"
  985. },
  986. {
  987. "__type__": "cc.PrefabInfo",
  988. "root": {
  989. "__id__": 1
  990. },
  991. "asset": {
  992. "__id__": 0
  993. },
  994. "fileId": "72nGBZOYxBKoWfDB8bY2x7"
  995. },
  996. {
  997. "__type__": "cc.UITransform",
  998. "_name": "",
  999. "_objFlags": 0,
  1000. "node": {
  1001. "__id__": 21
  1002. },
  1003. "_enabled": true,
  1004. "__prefab": {
  1005. "__id__": 37
  1006. },
  1007. "_contentSize": {
  1008. "__type__": "cc.Size",
  1009. "width": 33.12,
  1010. "height": 20
  1011. },
  1012. "_anchorPoint": {
  1013. "__type__": "cc.Vec2",
  1014. "x": 0.5,
  1015. "y": 0.5
  1016. },
  1017. "_id": ""
  1018. },
  1019. {
  1020. "__type__": "cc.CompPrefabInfo",
  1021. "fileId": "1c44HZ+kBDyo8o/E5IfT+a"
  1022. },
  1023. {
  1024. "__type__": "cc.Layout",
  1025. "_name": "",
  1026. "_objFlags": 0,
  1027. "node": {
  1028. "__id__": 21
  1029. },
  1030. "_enabled": true,
  1031. "__prefab": {
  1032. "__id__": 39
  1033. },
  1034. "_resizeMode": 1,
  1035. "_layoutType": 1,
  1036. "_cellSize": {
  1037. "__type__": "cc.Size",
  1038. "width": 40,
  1039. "height": 40
  1040. },
  1041. "_startAxis": 0,
  1042. "_paddingLeft": 0,
  1043. "_paddingRight": 0,
  1044. "_paddingTop": 0,
  1045. "_paddingBottom": 0,
  1046. "_spacingX": 5,
  1047. "_spacingY": 0,
  1048. "_verticalDirection": 1,
  1049. "_horizontalDirection": 0,
  1050. "_constraint": 0,
  1051. "_constraintNum": 2,
  1052. "_affectedByScale": false,
  1053. "_isAlign": true,
  1054. "_id": ""
  1055. },
  1056. {
  1057. "__type__": "cc.CompPrefabInfo",
  1058. "fileId": "1euNlRGEFESpKpmTOB+h4S"
  1059. },
  1060. {
  1061. "__type__": "cc.Widget",
  1062. "_name": "",
  1063. "_objFlags": 0,
  1064. "node": {
  1065. "__id__": 21
  1066. },
  1067. "_enabled": true,
  1068. "__prefab": {
  1069. "__id__": 41
  1070. },
  1071. "_alignFlags": 16,
  1072. "_target": null,
  1073. "_left": 0,
  1074. "_right": 0,
  1075. "_top": 0,
  1076. "_bottom": 0,
  1077. "_horizontalCenter": 0,
  1078. "_verticalCenter": 0,
  1079. "_isAbsLeft": true,
  1080. "_isAbsRight": true,
  1081. "_isAbsTop": true,
  1082. "_isAbsBottom": true,
  1083. "_isAbsHorizontalCenter": true,
  1084. "_isAbsVerticalCenter": true,
  1085. "_originalWidth": 0,
  1086. "_originalHeight": 0,
  1087. "_alignMode": 2,
  1088. "_lockFlags": 0,
  1089. "_id": ""
  1090. },
  1091. {
  1092. "__type__": "cc.CompPrefabInfo",
  1093. "fileId": "645UdyYJRN/pimNyMeMmQ0"
  1094. },
  1095. {
  1096. "__type__": "cc.PrefabInfo",
  1097. "root": {
  1098. "__id__": 1
  1099. },
  1100. "asset": {
  1101. "__id__": 0
  1102. },
  1103. "fileId": "07ygr29l5EzbzYqyWMXqH0"
  1104. },
  1105. {
  1106. "__type__": "cc.UITransform",
  1107. "_name": "",
  1108. "_objFlags": 0,
  1109. "node": {
  1110. "__id__": 20
  1111. },
  1112. "_enabled": true,
  1113. "__prefab": {
  1114. "__id__": 44
  1115. },
  1116. "_contentSize": {
  1117. "__type__": "cc.Size",
  1118. "width": 80,
  1119. "height": 25
  1120. },
  1121. "_anchorPoint": {
  1122. "__type__": "cc.Vec2",
  1123. "x": 0.5,
  1124. "y": 0.5
  1125. },
  1126. "_id": ""
  1127. },
  1128. {
  1129. "__type__": "cc.CompPrefabInfo",
  1130. "fileId": "cdf0w009FFraajn8sN/II2"
  1131. },
  1132. {
  1133. "__type__": "cc.Sprite",
  1134. "_name": "",
  1135. "_objFlags": 0,
  1136. "node": {
  1137. "__id__": 20
  1138. },
  1139. "_enabled": true,
  1140. "__prefab": {
  1141. "__id__": 46
  1142. },
  1143. "_visFlags": 0,
  1144. "_customMaterial": null,
  1145. "_srcBlendFactor": 2,
  1146. "_dstBlendFactor": 4,
  1147. "_color": {
  1148. "__type__": "cc.Color",
  1149. "r": 255,
  1150. "g": 255,
  1151. "b": 255,
  1152. "a": 255
  1153. },
  1154. "_spriteFrame": {
  1155. "__uuid__": "6d215561-a088-4469-b9ab-508c310018f2@f9941",
  1156. "__expectedType__": "cc.SpriteFrame"
  1157. },
  1158. "_type": 2,
  1159. "_fillType": 0,
  1160. "_sizeMode": 0,
  1161. "_fillCenter": {
  1162. "__type__": "cc.Vec2",
  1163. "x": 0,
  1164. "y": 0
  1165. },
  1166. "_fillStart": 0,
  1167. "_fillRange": 0,
  1168. "_isTrimmedMode": true,
  1169. "_useGrayscale": false,
  1170. "_atlas": null,
  1171. "_id": ""
  1172. },
  1173. {
  1174. "__type__": "cc.CompPrefabInfo",
  1175. "fileId": "a1KH4o5IRN9pUw1JhkksDn"
  1176. },
  1177. {
  1178. "__type__": "cc.PrefabInfo",
  1179. "root": {
  1180. "__id__": 1
  1181. },
  1182. "asset": {
  1183. "__id__": 0
  1184. },
  1185. "fileId": "88wOOkFEdDrJxdzdol4/cX"
  1186. },
  1187. {
  1188. "__type__": "cc.Node",
  1189. "_name": "经验进度",
  1190. "_objFlags": 0,
  1191. "_parent": {
  1192. "__id__": 19
  1193. },
  1194. "_children": [
  1195. {
  1196. "__id__": 49
  1197. }
  1198. ],
  1199. "_active": true,
  1200. "_components": [
  1201. {
  1202. "__id__": 57
  1203. },
  1204. {
  1205. "__id__": 59
  1206. }
  1207. ],
  1208. "_prefab": {
  1209. "__id__": 61
  1210. },
  1211. "_lpos": {
  1212. "__type__": "cc.Vec3",
  1213. "x": 31.287,
  1214. "y": 114.162,
  1215. "z": 0
  1216. },
  1217. "_lrot": {
  1218. "__type__": "cc.Quat",
  1219. "x": 0,
  1220. "y": 0,
  1221. "z": 0,
  1222. "w": 1
  1223. },
  1224. "_lscale": {
  1225. "__type__": "cc.Vec3",
  1226. "x": 1.5,
  1227. "y": 1.5,
  1228. "z": 1
  1229. },
  1230. "_layer": 1073741824,
  1231. "_euler": {
  1232. "__type__": "cc.Vec3",
  1233. "x": 0,
  1234. "y": 0,
  1235. "z": 0
  1236. },
  1237. "_id": ""
  1238. },
  1239. {
  1240. "__type__": "cc.Node",
  1241. "_name": "经验进度条",
  1242. "_objFlags": 0,
  1243. "_parent": {
  1244. "__id__": 48
  1245. },
  1246. "_children": [],
  1247. "_active": true,
  1248. "_components": [
  1249. {
  1250. "__id__": 50
  1251. },
  1252. {
  1253. "__id__": 52
  1254. },
  1255. {
  1256. "__id__": 54
  1257. }
  1258. ],
  1259. "_prefab": {
  1260. "__id__": 56
  1261. },
  1262. "_lpos": {
  1263. "__type__": "cc.Vec3",
  1264. "x": 0,
  1265. "y": 0,
  1266. "z": 0
  1267. },
  1268. "_lrot": {
  1269. "__type__": "cc.Quat",
  1270. "x": 0,
  1271. "y": 0,
  1272. "z": 0,
  1273. "w": 1
  1274. },
  1275. "_lscale": {
  1276. "__type__": "cc.Vec3",
  1277. "x": 1,
  1278. "y": 1,
  1279. "z": 1
  1280. },
  1281. "_layer": 1073741824,
  1282. "_euler": {
  1283. "__type__": "cc.Vec3",
  1284. "x": 0,
  1285. "y": 0,
  1286. "z": 0
  1287. },
  1288. "_id": ""
  1289. },
  1290. {
  1291. "__type__": "cc.UITransform",
  1292. "_name": "",
  1293. "_objFlags": 0,
  1294. "node": {
  1295. "__id__": 49
  1296. },
  1297. "_enabled": true,
  1298. "__prefab": {
  1299. "__id__": 51
  1300. },
  1301. "_contentSize": {
  1302. "__type__": "cc.Size",
  1303. "width": 98,
  1304. "height": 14
  1305. },
  1306. "_anchorPoint": {
  1307. "__type__": "cc.Vec2",
  1308. "x": 0.5,
  1309. "y": 0.5
  1310. },
  1311. "_id": ""
  1312. },
  1313. {
  1314. "__type__": "cc.CompPrefabInfo",
  1315. "fileId": "1cajzljhpDFppDLsYsPmDf"
  1316. },
  1317. {
  1318. "__type__": "cc.Sprite",
  1319. "_name": "",
  1320. "_objFlags": 0,
  1321. "node": {
  1322. "__id__": 49
  1323. },
  1324. "_enabled": true,
  1325. "__prefab": {
  1326. "__id__": 53
  1327. },
  1328. "_visFlags": 0,
  1329. "_customMaterial": null,
  1330. "_srcBlendFactor": 2,
  1331. "_dstBlendFactor": 4,
  1332. "_color": {
  1333. "__type__": "cc.Color",
  1334. "r": 255,
  1335. "g": 255,
  1336. "b": 255,
  1337. "a": 255
  1338. },
  1339. "_spriteFrame": {
  1340. "__uuid__": "ea4b6ef3-1c0b-4aeb-b78d-a856d0fc955f@f9941",
  1341. "__expectedType__": "cc.SpriteFrame"
  1342. },
  1343. "_type": 3,
  1344. "_fillType": 0,
  1345. "_sizeMode": 1,
  1346. "_fillCenter": {
  1347. "__type__": "cc.Vec2",
  1348. "x": 0,
  1349. "y": 0
  1350. },
  1351. "_fillStart": 0,
  1352. "_fillRange": 0,
  1353. "_isTrimmedMode": true,
  1354. "_useGrayscale": false,
  1355. "_atlas": null,
  1356. "_id": ""
  1357. },
  1358. {
  1359. "__type__": "cc.CompPrefabInfo",
  1360. "fileId": "fajZYIRuVHZ6fx0zzprLkP"
  1361. },
  1362. {
  1363. "__type__": "cc.ProgressBar",
  1364. "_name": "",
  1365. "_objFlags": 0,
  1366. "node": {
  1367. "__id__": 49
  1368. },
  1369. "_enabled": true,
  1370. "__prefab": {
  1371. "__id__": 55
  1372. },
  1373. "_barSprite": {
  1374. "__id__": 52
  1375. },
  1376. "_mode": 2,
  1377. "_totalLength": 1,
  1378. "_progress": 0,
  1379. "_reverse": false,
  1380. "_id": ""
  1381. },
  1382. {
  1383. "__type__": "cc.CompPrefabInfo",
  1384. "fileId": "aboPsb7nJNiIOk2nJxiU+f"
  1385. },
  1386. {
  1387. "__type__": "cc.PrefabInfo",
  1388. "root": {
  1389. "__id__": 1
  1390. },
  1391. "asset": {
  1392. "__id__": 0
  1393. },
  1394. "fileId": "2dajFnfVVFfbsiRR82MzeW"
  1395. },
  1396. {
  1397. "__type__": "cc.UITransform",
  1398. "_name": "",
  1399. "_objFlags": 0,
  1400. "node": {
  1401. "__id__": 48
  1402. },
  1403. "_enabled": true,
  1404. "__prefab": {
  1405. "__id__": 58
  1406. },
  1407. "_contentSize": {
  1408. "__type__": "cc.Size",
  1409. "width": 102,
  1410. "height": 18
  1411. },
  1412. "_anchorPoint": {
  1413. "__type__": "cc.Vec2",
  1414. "x": 0.5,
  1415. "y": 0.5
  1416. },
  1417. "_id": ""
  1418. },
  1419. {
  1420. "__type__": "cc.CompPrefabInfo",
  1421. "fileId": "8fvQMtM0NEnIM7Ks3OvcYU"
  1422. },
  1423. {
  1424. "__type__": "cc.Sprite",
  1425. "_name": "",
  1426. "_objFlags": 0,
  1427. "node": {
  1428. "__id__": 48
  1429. },
  1430. "_enabled": true,
  1431. "__prefab": {
  1432. "__id__": 60
  1433. },
  1434. "_visFlags": 0,
  1435. "_customMaterial": null,
  1436. "_srcBlendFactor": 2,
  1437. "_dstBlendFactor": 4,
  1438. "_color": {
  1439. "__type__": "cc.Color",
  1440. "r": 255,
  1441. "g": 255,
  1442. "b": 255,
  1443. "a": 255
  1444. },
  1445. "_spriteFrame": {
  1446. "__uuid__": "adda1001-4db0-46bc-8345-7d23d5a20657@f9941",
  1447. "__expectedType__": "cc.SpriteFrame"
  1448. },
  1449. "_type": 0,
  1450. "_fillType": 0,
  1451. "_sizeMode": 1,
  1452. "_fillCenter": {
  1453. "__type__": "cc.Vec2",
  1454. "x": 0,
  1455. "y": 0
  1456. },
  1457. "_fillStart": 0,
  1458. "_fillRange": 0,
  1459. "_isTrimmedMode": true,
  1460. "_useGrayscale": false,
  1461. "_atlas": null,
  1462. "_id": ""
  1463. },
  1464. {
  1465. "__type__": "cc.CompPrefabInfo",
  1466. "fileId": "dbsE4DHGlBZrK1XnNMUHRc"
  1467. },
  1468. {
  1469. "__type__": "cc.PrefabInfo",
  1470. "root": {
  1471. "__id__": 1
  1472. },
  1473. "asset": {
  1474. "__id__": 0
  1475. },
  1476. "fileId": "a9LZ1jOTBDProy+01JXH7v"
  1477. },
  1478. {
  1479. "__type__": "cc.Node",
  1480. "_name": "等级",
  1481. "_objFlags": 0,
  1482. "_parent": {
  1483. "__id__": 19
  1484. },
  1485. "_children": [
  1486. {
  1487. "__id__": 63
  1488. }
  1489. ],
  1490. "_active": true,
  1491. "_components": [
  1492. {
  1493. "__id__": 71
  1494. },
  1495. {
  1496. "__id__": 73
  1497. }
  1498. ],
  1499. "_prefab": {
  1500. "__id__": 75
  1501. },
  1502. "_lpos": {
  1503. "__type__": "cc.Vec3",
  1504. "x": -61.141,
  1505. "y": 114.162,
  1506. "z": 0
  1507. },
  1508. "_lrot": {
  1509. "__type__": "cc.Quat",
  1510. "x": 0,
  1511. "y": 0,
  1512. "z": 0,
  1513. "w": 1
  1514. },
  1515. "_lscale": {
  1516. "__type__": "cc.Vec3",
  1517. "x": 1.5,
  1518. "y": 1.5,
  1519. "z": 1
  1520. },
  1521. "_layer": 1073741824,
  1522. "_euler": {
  1523. "__type__": "cc.Vec3",
  1524. "x": 0,
  1525. "y": 0,
  1526. "z": 0
  1527. },
  1528. "_id": ""
  1529. },
  1530. {
  1531. "__type__": "cc.Node",
  1532. "_name": "等级文本",
  1533. "_objFlags": 0,
  1534. "_parent": {
  1535. "__id__": 62
  1536. },
  1537. "_children": [],
  1538. "_active": true,
  1539. "_components": [
  1540. {
  1541. "__id__": 64
  1542. },
  1543. {
  1544. "__id__": 66
  1545. },
  1546. {
  1547. "__id__": 68
  1548. }
  1549. ],
  1550. "_prefab": {
  1551. "__id__": 70
  1552. },
  1553. "_lpos": {
  1554. "__type__": "cc.Vec3",
  1555. "x": 0,
  1556. "y": 0,
  1557. "z": 0
  1558. },
  1559. "_lrot": {
  1560. "__type__": "cc.Quat",
  1561. "x": 0,
  1562. "y": 0,
  1563. "z": 0,
  1564. "w": 1
  1565. },
  1566. "_lscale": {
  1567. "__type__": "cc.Vec3",
  1568. "x": 1,
  1569. "y": 1,
  1570. "z": 1
  1571. },
  1572. "_layer": 33554432,
  1573. "_euler": {
  1574. "__type__": "cc.Vec3",
  1575. "x": 0,
  1576. "y": 0,
  1577. "z": 0
  1578. },
  1579. "_id": ""
  1580. },
  1581. {
  1582. "__type__": "cc.UITransform",
  1583. "_name": "",
  1584. "_objFlags": 0,
  1585. "node": {
  1586. "__id__": 63
  1587. },
  1588. "_enabled": true,
  1589. "__prefab": {
  1590. "__id__": 65
  1591. },
  1592. "_contentSize": {
  1593. "__type__": "cc.Size",
  1594. "width": 12.01,
  1595. "height": 52.4
  1596. },
  1597. "_anchorPoint": {
  1598. "__type__": "cc.Vec2",
  1599. "x": 0.5,
  1600. "y": 0.5
  1601. },
  1602. "_id": ""
  1603. },
  1604. {
  1605. "__type__": "cc.CompPrefabInfo",
  1606. "fileId": "c68UOAlNhN171Umca6yVvF"
  1607. },
  1608. {
  1609. "__type__": "cc.Label",
  1610. "_name": "",
  1611. "_objFlags": 0,
  1612. "node": {
  1613. "__id__": 63
  1614. },
  1615. "_enabled": true,
  1616. "__prefab": {
  1617. "__id__": 67
  1618. },
  1619. "_visFlags": 0,
  1620. "_customMaterial": null,
  1621. "_srcBlendFactor": 2,
  1622. "_dstBlendFactor": 4,
  1623. "_color": {
  1624. "__type__": "cc.Color",
  1625. "r": 255,
  1626. "g": 255,
  1627. "b": 255,
  1628. "a": 255
  1629. },
  1630. "_string": "0",
  1631. "_horizontalAlign": 1,
  1632. "_verticalAlign": 1,
  1633. "_actualFontSize": 18,
  1634. "_fontSize": 18,
  1635. "_fontFamily": "Arial",
  1636. "_lineHeight": 40,
  1637. "_overflow": 0,
  1638. "_enableWrapText": true,
  1639. "_font": null,
  1640. "_isSystemFontUsed": true,
  1641. "_isItalic": false,
  1642. "_isBold": false,
  1643. "_isUnderline": false,
  1644. "_underlineHeight": 2,
  1645. "_cacheMode": 0,
  1646. "_id": ""
  1647. },
  1648. {
  1649. "__type__": "cc.CompPrefabInfo",
  1650. "fileId": "2frm37uaJHQr0AEEaYyM82"
  1651. },
  1652. {
  1653. "__type__": "cc.LabelOutline",
  1654. "_name": "",
  1655. "_objFlags": 0,
  1656. "node": {
  1657. "__id__": 63
  1658. },
  1659. "_enabled": true,
  1660. "__prefab": {
  1661. "__id__": 69
  1662. },
  1663. "_color": {
  1664. "__type__": "cc.Color",
  1665. "r": 0,
  1666. "g": 0,
  1667. "b": 0,
  1668. "a": 255
  1669. },
  1670. "_width": 1,
  1671. "_id": ""
  1672. },
  1673. {
  1674. "__type__": "cc.CompPrefabInfo",
  1675. "fileId": "f3g1Wpzv1LXp5IKoM949oF"
  1676. },
  1677. {
  1678. "__type__": "cc.PrefabInfo",
  1679. "root": {
  1680. "__id__": 1
  1681. },
  1682. "asset": {
  1683. "__id__": 0
  1684. },
  1685. "fileId": "4dM3m26PpLNYnJpQIvAvIb"
  1686. },
  1687. {
  1688. "__type__": "cc.UITransform",
  1689. "_name": "",
  1690. "_objFlags": 0,
  1691. "node": {
  1692. "__id__": 62
  1693. },
  1694. "_enabled": true,
  1695. "__prefab": {
  1696. "__id__": 72
  1697. },
  1698. "_contentSize": {
  1699. "__type__": "cc.Size",
  1700. "width": 30,
  1701. "height": 30
  1702. },
  1703. "_anchorPoint": {
  1704. "__type__": "cc.Vec2",
  1705. "x": 0.5,
  1706. "y": 0.5
  1707. },
  1708. "_id": ""
  1709. },
  1710. {
  1711. "__type__": "cc.CompPrefabInfo",
  1712. "fileId": "7b6cjQ1Y5D7Y0T40PVzfTV"
  1713. },
  1714. {
  1715. "__type__": "cc.Sprite",
  1716. "_name": "",
  1717. "_objFlags": 0,
  1718. "node": {
  1719. "__id__": 62
  1720. },
  1721. "_enabled": true,
  1722. "__prefab": {
  1723. "__id__": 74
  1724. },
  1725. "_visFlags": 0,
  1726. "_customMaterial": null,
  1727. "_srcBlendFactor": 2,
  1728. "_dstBlendFactor": 4,
  1729. "_color": {
  1730. "__type__": "cc.Color",
  1731. "r": 255,
  1732. "g": 255,
  1733. "b": 255,
  1734. "a": 255
  1735. },
  1736. "_spriteFrame": {
  1737. "__uuid__": "f1faadf1-c1a7-42e7-8278-fac49ebc67b4@f9941",
  1738. "__expectedType__": "cc.SpriteFrame"
  1739. },
  1740. "_type": 0,
  1741. "_fillType": 0,
  1742. "_sizeMode": 0,
  1743. "_fillCenter": {
  1744. "__type__": "cc.Vec2",
  1745. "x": 0,
  1746. "y": 0
  1747. },
  1748. "_fillStart": 0,
  1749. "_fillRange": 0,
  1750. "_isTrimmedMode": true,
  1751. "_useGrayscale": false,
  1752. "_atlas": null,
  1753. "_id": ""
  1754. },
  1755. {
  1756. "__type__": "cc.CompPrefabInfo",
  1757. "fileId": "6b/Dt48ghO+aVAlKZZJdGi"
  1758. },
  1759. {
  1760. "__type__": "cc.PrefabInfo",
  1761. "root": {
  1762. "__id__": 1
  1763. },
  1764. "asset": {
  1765. "__id__": 0
  1766. },
  1767. "fileId": "37jYqE7ZtPsLjIf+BwzA2P"
  1768. },
  1769. {
  1770. "__type__": "cc.UITransform",
  1771. "_name": "",
  1772. "_objFlags": 0,
  1773. "node": {
  1774. "__id__": 19
  1775. },
  1776. "_enabled": true,
  1777. "__prefab": {
  1778. "__id__": 77
  1779. },
  1780. "_contentSize": {
  1781. "__type__": "cc.Size",
  1782. "width": 70.25,
  1783. "height": 44.33
  1784. },
  1785. "_anchorPoint": {
  1786. "__type__": "cc.Vec2",
  1787. "x": 0.5,
  1788. "y": 0.5
  1789. },
  1790. "_id": ""
  1791. },
  1792. {
  1793. "__type__": "cc.CompPrefabInfo",
  1794. "fileId": "fbIOYpUBlOs6XqFvY6+IgX"
  1795. },
  1796. {
  1797. "__type__": "cc.PrefabInfo",
  1798. "root": {
  1799. "__id__": 1
  1800. },
  1801. "asset": {
  1802. "__id__": 0
  1803. },
  1804. "fileId": "1cHxanQJtC55h0Q+fzDI9U"
  1805. },
  1806. {
  1807. "__type__": "cc.UITransform",
  1808. "_name": "",
  1809. "_objFlags": 0,
  1810. "node": {
  1811. "__id__": 18
  1812. },
  1813. "_enabled": true,
  1814. "__prefab": {
  1815. "__id__": 80
  1816. },
  1817. "_contentSize": {
  1818. "__type__": "cc.Size",
  1819. "width": 75,
  1820. "height": 83
  1821. },
  1822. "_anchorPoint": {
  1823. "__type__": "cc.Vec2",
  1824. "x": 0.5,
  1825. "y": 0.5
  1826. },
  1827. "_id": ""
  1828. },
  1829. {
  1830. "__type__": "cc.CompPrefabInfo",
  1831. "fileId": "3e6gMCViNAsopGgNsoaPkt"
  1832. },
  1833. {
  1834. "__type__": "cc.PrefabInfo",
  1835. "root": {
  1836. "__id__": 1
  1837. },
  1838. "asset": {
  1839. "__id__": 0
  1840. },
  1841. "fileId": "ebxNU0cMZBWo9+cycWq9Lg"
  1842. },
  1843. {
  1844. "__type__": "cc.CompPrefabInfo",
  1845. "fileId": "17Qeq5lfZGdJmrzjigZLe9"
  1846. },
  1847. {
  1848. "__type__": "f41c1KNmaFKaKYBRN0V88Jz",
  1849. "_name": "",
  1850. "_objFlags": 0,
  1851. "node": {
  1852. "__id__": 10
  1853. },
  1854. "_enabled": true,
  1855. "__prefab": {
  1856. "__id__": 84
  1857. },
  1858. "prefabPath": "prefabs/ui/hero/heroUI",
  1859. "openMode": 1,
  1860. "params": [
  1861. "1",
  1862. "1"
  1863. ],
  1864. "openFroms": [],
  1865. "onOpening": [],
  1866. "onClosing": [],
  1867. "_id": ""
  1868. },
  1869. {
  1870. "__type__": "cc.CompPrefabInfo",
  1871. "fileId": "7cvFHwoOZOq762CLfR84Xu"
  1872. },
  1873. {
  1874. "__type__": "cc.Node",
  1875. "_name": "buff特效层",
  1876. "_objFlags": 0,
  1877. "_parent": {
  1878. "__id__": 1
  1879. },
  1880. "_children": [],
  1881. "_active": true,
  1882. "_components": [
  1883. {
  1884. "__id__": 86
  1885. }
  1886. ],
  1887. "_prefab": {
  1888. "__id__": 88
  1889. },
  1890. "_lpos": {
  1891. "__type__": "cc.Vec3",
  1892. "x": 0,
  1893. "y": -62.678,
  1894. "z": 0
  1895. },
  1896. "_lrot": {
  1897. "__type__": "cc.Quat",
  1898. "x": 0,
  1899. "y": 0,
  1900. "z": 0,
  1901. "w": 1
  1902. },
  1903. "_lscale": {
  1904. "__type__": "cc.Vec3",
  1905. "x": 0.5,
  1906. "y": 0.5,
  1907. "z": 1
  1908. },
  1909. "_layer": 1073741824,
  1910. "_euler": {
  1911. "__type__": "cc.Vec3",
  1912. "x": 0,
  1913. "y": 0,
  1914. "z": 0
  1915. },
  1916. "_id": ""
  1917. },
  1918. {
  1919. "__type__": "cc.UITransform",
  1920. "_name": "",
  1921. "_objFlags": 0,
  1922. "node": {
  1923. "__id__": 85
  1924. },
  1925. "_enabled": true,
  1926. "__prefab": {
  1927. "__id__": 87
  1928. },
  1929. "_contentSize": {
  1930. "__type__": "cc.Size",
  1931. "width": 100,
  1932. "height": 100
  1933. },
  1934. "_anchorPoint": {
  1935. "__type__": "cc.Vec2",
  1936. "x": 0.5,
  1937. "y": 0.5
  1938. },
  1939. "_id": ""
  1940. },
  1941. {
  1942. "__type__": "cc.CompPrefabInfo",
  1943. "fileId": "11WAqGxUhBgKE/kb7bHFwK"
  1944. },
  1945. {
  1946. "__type__": "cc.PrefabInfo",
  1947. "root": {
  1948. "__id__": 1
  1949. },
  1950. "asset": {
  1951. "__id__": 0
  1952. },
  1953. "fileId": "3dIlXHInBHWaYM5VAasAEL"
  1954. },
  1955. {
  1956. "__type__": "d2994bMgKdDHYdXDpd6oNOB",
  1957. "_name": "",
  1958. "_objFlags": 0,
  1959. "node": {
  1960. "__id__": 10
  1961. },
  1962. "_enabled": true,
  1963. "__prefab": {
  1964. "__id__": 90
  1965. },
  1966. "layer": {
  1967. "__id__": 85
  1968. },
  1969. "_id": ""
  1970. },
  1971. {
  1972. "__type__": "cc.CompPrefabInfo",
  1973. "fileId": "22XpKgA5tGxJONcfZPk7sr"
  1974. },
  1975. {
  1976. "__type__": "e2211H+GvNPBLN0psbiSpVH",
  1977. "_name": "",
  1978. "_objFlags": 0,
  1979. "node": {
  1980. "__id__": 10
  1981. },
  1982. "_enabled": true,
  1983. "__prefab": {
  1984. "__id__": 92
  1985. },
  1986. "soundName": "",
  1987. "clips": [
  1988. {
  1989. "__uuid__": "a993e965-6317-4f9e-a149-c9b88180ad45",
  1990. "__expectedType__": "cc.AudioClip"
  1991. },
  1992. {
  1993. "__uuid__": "1dbe58e9-8e70-4423-a437-0d48cbe7f566",
  1994. "__expectedType__": "cc.AudioClip"
  1995. },
  1996. {
  1997. "__uuid__": "83f02a00-987f-4dbe-856c-d99b9c28da60",
  1998. "__expectedType__": "cc.AudioClip"
  1999. },
  2000. {
  2001. "__uuid__": "4c361154-2bf1-4dc7-a343-679edaad23fa",
  2002. "__expectedType__": "cc.AudioClip"
  2003. }
  2004. ],
  2005. "_volume": 1,
  2006. "playOnLoad": false,
  2007. "playOnTouch": false,
  2008. "oneShot": true,
  2009. "loop": false,
  2010. "_id": ""
  2011. },
  2012. {
  2013. "__type__": "cc.CompPrefabInfo",
  2014. "fileId": "85yEpxPuBN5qLslbJchf7N"
  2015. },
  2016. {
  2017. "__type__": "cc.PrefabInfo",
  2018. "root": {
  2019. "__id__": 1
  2020. },
  2021. "asset": {
  2022. "__id__": 0
  2023. },
  2024. "fileId": "22nyZcXhJLUrEb8t6/DsKO"
  2025. },
  2026. {
  2027. "__type__": "cc.UITransform",
  2028. "_name": "",
  2029. "_objFlags": 0,
  2030. "node": {
  2031. "__id__": 9
  2032. },
  2033. "_enabled": true,
  2034. "__prefab": {
  2035. "__id__": 95
  2036. },
  2037. "_contentSize": {
  2038. "__type__": "cc.Size",
  2039. "width": 146,
  2040. "height": 219.14
  2041. },
  2042. "_anchorPoint": {
  2043. "__type__": "cc.Vec2",
  2044. "x": 0.5,
  2045. "y": 0.5
  2046. },
  2047. "_id": ""
  2048. },
  2049. {
  2050. "__type__": "cc.CompPrefabInfo",
  2051. "fileId": "c5iZomFRhFF6wIAPbvba7R"
  2052. },
  2053. {
  2054. "__type__": "cc.PrefabInfo",
  2055. "root": {
  2056. "__id__": 1
  2057. },
  2058. "asset": {
  2059. "__id__": 0
  2060. },
  2061. "fileId": "1fE7LHAU1PNIABmDcNYtIz"
  2062. },
  2063. {
  2064. "__type__": "cc.Node",
  2065. "_name": "空状态",
  2066. "_objFlags": 0,
  2067. "_parent": {
  2068. "__id__": 8
  2069. },
  2070. "_children": [
  2071. {
  2072. "__id__": 98
  2073. },
  2074. {
  2075. "__id__": 104
  2076. }
  2077. ],
  2078. "_active": false,
  2079. "_components": [
  2080. {
  2081. "__id__": 112
  2082. }
  2083. ],
  2084. "_prefab": {
  2085. "__id__": 114
  2086. },
  2087. "_lpos": {
  2088. "__type__": "cc.Vec3",
  2089. "x": 0,
  2090. "y": 0,
  2091. "z": 0
  2092. },
  2093. "_lrot": {
  2094. "__type__": "cc.Quat",
  2095. "x": 0,
  2096. "y": 0,
  2097. "z": 0,
  2098. "w": 1
  2099. },
  2100. "_lscale": {
  2101. "__type__": "cc.Vec3",
  2102. "x": 1,
  2103. "y": 1,
  2104. "z": 1
  2105. },
  2106. "_layer": 1073741824,
  2107. "_euler": {
  2108. "__type__": "cc.Vec3",
  2109. "x": 0,
  2110. "y": 0,
  2111. "z": 0
  2112. },
  2113. "_id": ""
  2114. },
  2115. {
  2116. "__type__": "cc.Node",
  2117. "_name": "英雄阴影",
  2118. "_objFlags": 0,
  2119. "_parent": {
  2120. "__id__": 97
  2121. },
  2122. "_children": [],
  2123. "_active": true,
  2124. "_components": [
  2125. {
  2126. "__id__": 99
  2127. },
  2128. {
  2129. "__id__": 101
  2130. }
  2131. ],
  2132. "_prefab": {
  2133. "__id__": 103
  2134. },
  2135. "_lpos": {
  2136. "__type__": "cc.Vec3",
  2137. "x": 0,
  2138. "y": 0,
  2139. "z": 0
  2140. },
  2141. "_lrot": {
  2142. "__type__": "cc.Quat",
  2143. "x": 0,
  2144. "y": 0,
  2145. "z": 0,
  2146. "w": 1
  2147. },
  2148. "_lscale": {
  2149. "__type__": "cc.Vec3",
  2150. "x": 1,
  2151. "y": 1,
  2152. "z": 1
  2153. },
  2154. "_layer": 1073741824,
  2155. "_euler": {
  2156. "__type__": "cc.Vec3",
  2157. "x": 0,
  2158. "y": 0,
  2159. "z": 0
  2160. },
  2161. "_id": ""
  2162. },
  2163. {
  2164. "__type__": "cc.UITransform",
  2165. "_name": "",
  2166. "_objFlags": 0,
  2167. "node": {
  2168. "__id__": 98
  2169. },
  2170. "_enabled": true,
  2171. "__prefab": {
  2172. "__id__": 100
  2173. },
  2174. "_contentSize": {
  2175. "__type__": "cc.Size",
  2176. "width": 88,
  2177. "height": 118
  2178. },
  2179. "_anchorPoint": {
  2180. "__type__": "cc.Vec2",
  2181. "x": 0.5,
  2182. "y": 0.5
  2183. },
  2184. "_id": ""
  2185. },
  2186. {
  2187. "__type__": "cc.CompPrefabInfo",
  2188. "fileId": "3d2QI06V1C56pVJDQVWnx7"
  2189. },
  2190. {
  2191. "__type__": "cc.Sprite",
  2192. "_name": "",
  2193. "_objFlags": 0,
  2194. "node": {
  2195. "__id__": 98
  2196. },
  2197. "_enabled": true,
  2198. "__prefab": {
  2199. "__id__": 102
  2200. },
  2201. "_visFlags": 0,
  2202. "_customMaterial": null,
  2203. "_srcBlendFactor": 2,
  2204. "_dstBlendFactor": 4,
  2205. "_color": {
  2206. "__type__": "cc.Color",
  2207. "r": 255,
  2208. "g": 255,
  2209. "b": 255,
  2210. "a": 255
  2211. },
  2212. "_spriteFrame": {
  2213. "__uuid__": "c2f39217-be4a-4ec5-9839-27749fc05f0e@f9941",
  2214. "__expectedType__": "cc.SpriteFrame"
  2215. },
  2216. "_type": 0,
  2217. "_fillType": 0,
  2218. "_sizeMode": 1,
  2219. "_fillCenter": {
  2220. "__type__": "cc.Vec2",
  2221. "x": 0,
  2222. "y": 0
  2223. },
  2224. "_fillStart": 0,
  2225. "_fillRange": 0,
  2226. "_isTrimmedMode": true,
  2227. "_useGrayscale": false,
  2228. "_atlas": null,
  2229. "_id": ""
  2230. },
  2231. {
  2232. "__type__": "cc.CompPrefabInfo",
  2233. "fileId": "d3ojSOB/lIUKjmPItWaQMo"
  2234. },
  2235. {
  2236. "__type__": "cc.PrefabInfo",
  2237. "root": {
  2238. "__id__": 1
  2239. },
  2240. "asset": {
  2241. "__id__": 0
  2242. },
  2243. "fileId": "99eMC/An9Dv7jrJULwMJoV"
  2244. },
  2245. {
  2246. "__type__": "cc.Node",
  2247. "_name": "加",
  2248. "_objFlags": 0,
  2249. "_parent": {
  2250. "__id__": 97
  2251. },
  2252. "_children": [],
  2253. "_active": true,
  2254. "_components": [
  2255. {
  2256. "__id__": 105
  2257. },
  2258. {
  2259. "__id__": 107
  2260. },
  2261. {
  2262. "__id__": 109
  2263. }
  2264. ],
  2265. "_prefab": {
  2266. "__id__": 111
  2267. },
  2268. "_lpos": {
  2269. "__type__": "cc.Vec3",
  2270. "x": 0,
  2271. "y": -10.341000000000008,
  2272. "z": 0
  2273. },
  2274. "_lrot": {
  2275. "__type__": "cc.Quat",
  2276. "x": 0,
  2277. "y": 0,
  2278. "z": 0,
  2279. "w": 1
  2280. },
  2281. "_lscale": {
  2282. "__type__": "cc.Vec3",
  2283. "x": 1,
  2284. "y": 1,
  2285. "z": 1
  2286. },
  2287. "_layer": 1073741824,
  2288. "_euler": {
  2289. "__type__": "cc.Vec3",
  2290. "x": 0,
  2291. "y": 0,
  2292. "z": 0
  2293. },
  2294. "_id": ""
  2295. },
  2296. {
  2297. "__type__": "cc.UITransform",
  2298. "_name": "",
  2299. "_objFlags": 0,
  2300. "node": {
  2301. "__id__": 104
  2302. },
  2303. "_enabled": true,
  2304. "__prefab": {
  2305. "__id__": 106
  2306. },
  2307. "_contentSize": {
  2308. "__type__": "cc.Size",
  2309. "width": 47,
  2310. "height": 47
  2311. },
  2312. "_anchorPoint": {
  2313. "__type__": "cc.Vec2",
  2314. "x": 0.5,
  2315. "y": 0.5
  2316. },
  2317. "_id": ""
  2318. },
  2319. {
  2320. "__type__": "cc.CompPrefabInfo",
  2321. "fileId": "18b+WNvw5AapWwtFFU9yra"
  2322. },
  2323. {
  2324. "__type__": "cc.Sprite",
  2325. "_name": "",
  2326. "_objFlags": 0,
  2327. "node": {
  2328. "__id__": 104
  2329. },
  2330. "_enabled": true,
  2331. "__prefab": {
  2332. "__id__": 108
  2333. },
  2334. "_visFlags": 0,
  2335. "_customMaterial": null,
  2336. "_srcBlendFactor": 2,
  2337. "_dstBlendFactor": 4,
  2338. "_color": {
  2339. "__type__": "cc.Color",
  2340. "r": 255,
  2341. "g": 255,
  2342. "b": 255,
  2343. "a": 255
  2344. },
  2345. "_spriteFrame": {
  2346. "__uuid__": "6b162c46-5f92-40ff-9017-adc038f2cead@f9941",
  2347. "__expectedType__": "cc.SpriteFrame"
  2348. },
  2349. "_type": 0,
  2350. "_fillType": 0,
  2351. "_sizeMode": 1,
  2352. "_fillCenter": {
  2353. "__type__": "cc.Vec2",
  2354. "x": 0,
  2355. "y": 0
  2356. },
  2357. "_fillStart": 0,
  2358. "_fillRange": 0,
  2359. "_isTrimmedMode": true,
  2360. "_useGrayscale": false,
  2361. "_atlas": null,
  2362. "_id": ""
  2363. },
  2364. {
  2365. "__type__": "cc.CompPrefabInfo",
  2366. "fileId": "54k5AYqqNDlYQvOa9g56Ku"
  2367. },
  2368. {
  2369. "__type__": "f41c1KNmaFKaKYBRN0V88Jz",
  2370. "_name": "",
  2371. "_objFlags": 0,
  2372. "node": {
  2373. "__id__": 104
  2374. },
  2375. "_enabled": true,
  2376. "__prefab": {
  2377. "__id__": 110
  2378. },
  2379. "prefabPath": "prefabs/ui/hero/heroUI",
  2380. "openMode": 0,
  2381. "params": [
  2382. "1",
  2383. "1"
  2384. ],
  2385. "openFroms": [
  2386. {
  2387. "__id__": 104
  2388. }
  2389. ],
  2390. "onOpening": [],
  2391. "onClosing": [],
  2392. "_id": ""
  2393. },
  2394. {
  2395. "__type__": "cc.CompPrefabInfo",
  2396. "fileId": "7cvFHwoOZOq762CLfR84Xu"
  2397. },
  2398. {
  2399. "__type__": "cc.PrefabInfo",
  2400. "root": {
  2401. "__id__": 1
  2402. },
  2403. "asset": {
  2404. "__id__": 0
  2405. },
  2406. "fileId": "a3nDXm7hFH0o2kGmRg4sUb"
  2407. },
  2408. {
  2409. "__type__": "cc.UITransform",
  2410. "_name": "",
  2411. "_objFlags": 0,
  2412. "node": {
  2413. "__id__": 97
  2414. },
  2415. "_enabled": true,
  2416. "__prefab": {
  2417. "__id__": 113
  2418. },
  2419. "_contentSize": {
  2420. "__type__": "cc.Size",
  2421. "width": 100,
  2422. "height": 100
  2423. },
  2424. "_anchorPoint": {
  2425. "__type__": "cc.Vec2",
  2426. "x": 0.5,
  2427. "y": 0.5
  2428. },
  2429. "_id": ""
  2430. },
  2431. {
  2432. "__type__": "cc.CompPrefabInfo",
  2433. "fileId": "458GpBhi1KmZMoEFiT21Wk"
  2434. },
  2435. {
  2436. "__type__": "cc.PrefabInfo",
  2437. "root": {
  2438. "__id__": 1
  2439. },
  2440. "asset": {
  2441. "__id__": 0
  2442. },
  2443. "fileId": "c3eYHQ/PtOs6CpBU8Z3UKb"
  2444. },
  2445. {
  2446. "__type__": "cc.Node",
  2447. "_name": "锁状态",
  2448. "_objFlags": 0,
  2449. "_parent": {
  2450. "__id__": 8
  2451. },
  2452. "_children": [
  2453. {
  2454. "__id__": 116
  2455. }
  2456. ],
  2457. "_active": false,
  2458. "_components": [
  2459. {
  2460. "__id__": 138
  2461. },
  2462. {
  2463. "__id__": 140
  2464. }
  2465. ],
  2466. "_prefab": {
  2467. "__id__": 142
  2468. },
  2469. "_lpos": {
  2470. "__type__": "cc.Vec3",
  2471. "x": 0,
  2472. "y": -24.137,
  2473. "z": 0
  2474. },
  2475. "_lrot": {
  2476. "__type__": "cc.Quat",
  2477. "x": 0,
  2478. "y": 0,
  2479. "z": 0,
  2480. "w": 1
  2481. },
  2482. "_lscale": {
  2483. "__type__": "cc.Vec3",
  2484. "x": 1,
  2485. "y": 1,
  2486. "z": 1
  2487. },
  2488. "_layer": 1073741824,
  2489. "_euler": {
  2490. "__type__": "cc.Vec3",
  2491. "x": 0,
  2492. "y": 0,
  2493. "z": 0
  2494. },
  2495. "_id": ""
  2496. },
  2497. {
  2498. "__type__": "cc.Node",
  2499. "_name": "文字布局",
  2500. "_objFlags": 0,
  2501. "_parent": {
  2502. "__id__": 115
  2503. },
  2504. "_children": [
  2505. {
  2506. "__id__": 117
  2507. },
  2508. {
  2509. "__id__": 125
  2510. }
  2511. ],
  2512. "_active": true,
  2513. "_components": [
  2514. {
  2515. "__id__": 133
  2516. },
  2517. {
  2518. "__id__": 135
  2519. }
  2520. ],
  2521. "_prefab": {
  2522. "__id__": 137
  2523. },
  2524. "_lpos": {
  2525. "__type__": "cc.Vec3",
  2526. "x": 0,
  2527. "y": -15,
  2528. "z": 0
  2529. },
  2530. "_lrot": {
  2531. "__type__": "cc.Quat",
  2532. "x": 0,
  2533. "y": 0,
  2534. "z": 0,
  2535. "w": 1
  2536. },
  2537. "_lscale": {
  2538. "__type__": "cc.Vec3",
  2539. "x": 1,
  2540. "y": 1,
  2541. "z": 1
  2542. },
  2543. "_layer": 1073741824,
  2544. "_euler": {
  2545. "__type__": "cc.Vec3",
  2546. "x": 0,
  2547. "y": 0,
  2548. "z": 0
  2549. },
  2550. "_id": ""
  2551. },
  2552. {
  2553. "__type__": "cc.Node",
  2554. "_name": "解锁关卡",
  2555. "_objFlags": 0,
  2556. "_parent": {
  2557. "__id__": 116
  2558. },
  2559. "_children": [],
  2560. "_active": true,
  2561. "_components": [
  2562. {
  2563. "__id__": 118
  2564. },
  2565. {
  2566. "__id__": 120
  2567. },
  2568. {
  2569. "__id__": 122
  2570. }
  2571. ],
  2572. "_prefab": {
  2573. "__id__": 124
  2574. },
  2575. "_lpos": {
  2576. "__type__": "cc.Vec3",
  2577. "x": -25.999999999999993,
  2578. "y": 0,
  2579. "z": 0
  2580. },
  2581. "_lrot": {
  2582. "__type__": "cc.Quat",
  2583. "x": 0,
  2584. "y": 0,
  2585. "z": 0,
  2586. "w": 1
  2587. },
  2588. "_lscale": {
  2589. "__type__": "cc.Vec3",
  2590. "x": 1,
  2591. "y": 1,
  2592. "z": 1
  2593. },
  2594. "_layer": 33554432,
  2595. "_euler": {
  2596. "__type__": "cc.Vec3",
  2597. "x": 0,
  2598. "y": 0,
  2599. "z": 0
  2600. },
  2601. "_id": ""
  2602. },
  2603. {
  2604. "__type__": "cc.UITransform",
  2605. "_name": "",
  2606. "_objFlags": 0,
  2607. "node": {
  2608. "__id__": 117
  2609. },
  2610. "_enabled": true,
  2611. "__prefab": {
  2612. "__id__": 119
  2613. },
  2614. "_contentSize": {
  2615. "__type__": "cc.Size",
  2616. "width": 78.7,
  2617. "height": 29.2
  2618. },
  2619. "_anchorPoint": {
  2620. "__type__": "cc.Vec2",
  2621. "x": 0.5,
  2622. "y": 0.5
  2623. },
  2624. "_id": ""
  2625. },
  2626. {
  2627. "__type__": "cc.CompPrefabInfo",
  2628. "fileId": "c68UOAlNhN171Umca6yVvF"
  2629. },
  2630. {
  2631. "__type__": "cc.Label",
  2632. "_name": "",
  2633. "_objFlags": 0,
  2634. "node": {
  2635. "__id__": 117
  2636. },
  2637. "_enabled": true,
  2638. "__prefab": {
  2639. "__id__": 121
  2640. },
  2641. "_visFlags": 0,
  2642. "_customMaterial": null,
  2643. "_srcBlendFactor": 2,
  2644. "_dstBlendFactor": 4,
  2645. "_color": {
  2646. "__type__": "cc.Color",
  2647. "r": 241,
  2648. "g": 68,
  2649. "b": 11,
  2650. "a": 255
  2651. },
  2652. "_string": "第10关",
  2653. "_horizontalAlign": 1,
  2654. "_verticalAlign": 1,
  2655. "_actualFontSize": 24,
  2656. "_fontSize": 24,
  2657. "_fontFamily": "Arial",
  2658. "_lineHeight": 20,
  2659. "_overflow": 0,
  2660. "_enableWrapText": true,
  2661. "_font": null,
  2662. "_isSystemFontUsed": true,
  2663. "_isItalic": false,
  2664. "_isBold": true,
  2665. "_isUnderline": false,
  2666. "_underlineHeight": 2,
  2667. "_cacheMode": 0,
  2668. "_id": ""
  2669. },
  2670. {
  2671. "__type__": "cc.CompPrefabInfo",
  2672. "fileId": "2frm37uaJHQr0AEEaYyM82"
  2673. },
  2674. {
  2675. "__type__": "cc.LabelOutline",
  2676. "_name": "",
  2677. "_objFlags": 0,
  2678. "node": {
  2679. "__id__": 117
  2680. },
  2681. "_enabled": true,
  2682. "__prefab": {
  2683. "__id__": 123
  2684. },
  2685. "_color": {
  2686. "__type__": "cc.Color",
  2687. "r": 0,
  2688. "g": 0,
  2689. "b": 0,
  2690. "a": 255
  2691. },
  2692. "_width": 2,
  2693. "_id": ""
  2694. },
  2695. {
  2696. "__type__": "cc.CompPrefabInfo",
  2697. "fileId": "dcwjPblQBEPZBQLfojK119"
  2698. },
  2699. {
  2700. "__type__": "cc.PrefabInfo",
  2701. "root": {
  2702. "__id__": 1
  2703. },
  2704. "asset": {
  2705. "__id__": 0
  2706. },
  2707. "fileId": "aeFGJr4cZIAJxqrwVo39Wr"
  2708. },
  2709. {
  2710. "__type__": "cc.Node",
  2711. "_name": "解锁",
  2712. "_objFlags": 0,
  2713. "_parent": {
  2714. "__id__": 116
  2715. },
  2716. "_children": [],
  2717. "_active": true,
  2718. "_components": [
  2719. {
  2720. "__id__": 126
  2721. },
  2722. {
  2723. "__id__": 128
  2724. },
  2725. {
  2726. "__id__": 130
  2727. }
  2728. ],
  2729. "_prefab": {
  2730. "__id__": 132
  2731. },
  2732. "_lpos": {
  2733. "__type__": "cc.Vec3",
  2734. "x": 39.35000000000001,
  2735. "y": 0,
  2736. "z": 0
  2737. },
  2738. "_lrot": {
  2739. "__type__": "cc.Quat",
  2740. "x": 0,
  2741. "y": 0,
  2742. "z": 0,
  2743. "w": 1
  2744. },
  2745. "_lscale": {
  2746. "__type__": "cc.Vec3",
  2747. "x": 1,
  2748. "y": 1,
  2749. "z": 1
  2750. },
  2751. "_layer": 33554432,
  2752. "_euler": {
  2753. "__type__": "cc.Vec3",
  2754. "x": 0,
  2755. "y": 0,
  2756. "z": 0
  2757. },
  2758. "_id": ""
  2759. },
  2760. {
  2761. "__type__": "cc.UITransform",
  2762. "_name": "",
  2763. "_objFlags": 0,
  2764. "node": {
  2765. "__id__": 125
  2766. },
  2767. "_enabled": true,
  2768. "__prefab": {
  2769. "__id__": 127
  2770. },
  2771. "_contentSize": {
  2772. "__type__": "cc.Size",
  2773. "width": 52,
  2774. "height": 29.2
  2775. },
  2776. "_anchorPoint": {
  2777. "__type__": "cc.Vec2",
  2778. "x": 0.5,
  2779. "y": 0.5
  2780. },
  2781. "_id": ""
  2782. },
  2783. {
  2784. "__type__": "cc.CompPrefabInfo",
  2785. "fileId": "c68UOAlNhN171Umca6yVvF"
  2786. },
  2787. {
  2788. "__type__": "cc.Label",
  2789. "_name": "",
  2790. "_objFlags": 0,
  2791. "node": {
  2792. "__id__": 125
  2793. },
  2794. "_enabled": true,
  2795. "__prefab": {
  2796. "__id__": 129
  2797. },
  2798. "_visFlags": 0,
  2799. "_customMaterial": null,
  2800. "_srcBlendFactor": 2,
  2801. "_dstBlendFactor": 4,
  2802. "_color": {
  2803. "__type__": "cc.Color",
  2804. "r": 255,
  2805. "g": 255,
  2806. "b": 255,
  2807. "a": 255
  2808. },
  2809. "_string": "解锁",
  2810. "_horizontalAlign": 1,
  2811. "_verticalAlign": 1,
  2812. "_actualFontSize": 24,
  2813. "_fontSize": 24,
  2814. "_fontFamily": "Arial",
  2815. "_lineHeight": 20,
  2816. "_overflow": 0,
  2817. "_enableWrapText": true,
  2818. "_font": null,
  2819. "_isSystemFontUsed": true,
  2820. "_isItalic": false,
  2821. "_isBold": true,
  2822. "_isUnderline": false,
  2823. "_underlineHeight": 2,
  2824. "_cacheMode": 0,
  2825. "_id": ""
  2826. },
  2827. {
  2828. "__type__": "cc.CompPrefabInfo",
  2829. "fileId": "2frm37uaJHQr0AEEaYyM82"
  2830. },
  2831. {
  2832. "__type__": "cc.LabelOutline",
  2833. "_name": "",
  2834. "_objFlags": 0,
  2835. "node": {
  2836. "__id__": 125
  2837. },
  2838. "_enabled": true,
  2839. "__prefab": {
  2840. "__id__": 131
  2841. },
  2842. "_color": {
  2843. "__type__": "cc.Color",
  2844. "r": 0,
  2845. "g": 0,
  2846. "b": 0,
  2847. "a": 255
  2848. },
  2849. "_width": 2,
  2850. "_id": ""
  2851. },
  2852. {
  2853. "__type__": "cc.CompPrefabInfo",
  2854. "fileId": "ffMKh/uzJIbrwTRiOca8o5"
  2855. },
  2856. {
  2857. "__type__": "cc.PrefabInfo",
  2858. "root": {
  2859. "__id__": 1
  2860. },
  2861. "asset": {
  2862. "__id__": 0
  2863. },
  2864. "fileId": "24J2gXQU1Mub/vKZGaAV85"
  2865. },
  2866. {
  2867. "__type__": "cc.UITransform",
  2868. "_name": "",
  2869. "_objFlags": 0,
  2870. "node": {
  2871. "__id__": 116
  2872. },
  2873. "_enabled": true,
  2874. "__prefab": {
  2875. "__id__": 134
  2876. },
  2877. "_contentSize": {
  2878. "__type__": "cc.Size",
  2879. "width": 130.7,
  2880. "height": 100
  2881. },
  2882. "_anchorPoint": {
  2883. "__type__": "cc.Vec2",
  2884. "x": 0.5,
  2885. "y": 0.5
  2886. },
  2887. "_id": ""
  2888. },
  2889. {
  2890. "__type__": "cc.CompPrefabInfo",
  2891. "fileId": "f0Yq9elXBBSINDCzNnnkmw"
  2892. },
  2893. {
  2894. "__type__": "cc.Layout",
  2895. "_name": "",
  2896. "_objFlags": 0,
  2897. "node": {
  2898. "__id__": 116
  2899. },
  2900. "_enabled": true,
  2901. "__prefab": {
  2902. "__id__": 136
  2903. },
  2904. "_resizeMode": 1,
  2905. "_layoutType": 1,
  2906. "_cellSize": {
  2907. "__type__": "cc.Size",
  2908. "width": 40,
  2909. "height": 40
  2910. },
  2911. "_startAxis": 0,
  2912. "_paddingLeft": 0,
  2913. "_paddingRight": 0,
  2914. "_paddingTop": 0,
  2915. "_paddingBottom": 0,
  2916. "_spacingX": 0,
  2917. "_spacingY": 0,
  2918. "_verticalDirection": 1,
  2919. "_horizontalDirection": 0,
  2920. "_constraint": 0,
  2921. "_constraintNum": 2,
  2922. "_affectedByScale": false,
  2923. "_isAlign": true,
  2924. "_id": ""
  2925. },
  2926. {
  2927. "__type__": "cc.CompPrefabInfo",
  2928. "fileId": "297Zu5FbdPs5HixiTSIq7s"
  2929. },
  2930. {
  2931. "__type__": "cc.PrefabInfo",
  2932. "root": {
  2933. "__id__": 1
  2934. },
  2935. "asset": {
  2936. "__id__": 0
  2937. },
  2938. "fileId": "12jDFJPtxCdZxavC74Myho"
  2939. },
  2940. {
  2941. "__type__": "cc.UITransform",
  2942. "_name": "",
  2943. "_objFlags": 0,
  2944. "node": {
  2945. "__id__": 115
  2946. },
  2947. "_enabled": true,
  2948. "__prefab": {
  2949. "__id__": 139
  2950. },
  2951. "_contentSize": {
  2952. "__type__": "cc.Size",
  2953. "width": 64,
  2954. "height": 80
  2955. },
  2956. "_anchorPoint": {
  2957. "__type__": "cc.Vec2",
  2958. "x": 0.5,
  2959. "y": 0.5
  2960. },
  2961. "_id": ""
  2962. },
  2963. {
  2964. "__type__": "cc.CompPrefabInfo",
  2965. "fileId": "90x6Br7lFAirojeehTyl/A"
  2966. },
  2967. {
  2968. "__type__": "cc.Sprite",
  2969. "_name": "",
  2970. "_objFlags": 0,
  2971. "node": {
  2972. "__id__": 115
  2973. },
  2974. "_enabled": true,
  2975. "__prefab": {
  2976. "__id__": 141
  2977. },
  2978. "_visFlags": 0,
  2979. "_customMaterial": null,
  2980. "_srcBlendFactor": 2,
  2981. "_dstBlendFactor": 4,
  2982. "_color": {
  2983. "__type__": "cc.Color",
  2984. "r": 255,
  2985. "g": 255,
  2986. "b": 255,
  2987. "a": 255
  2988. },
  2989. "_spriteFrame": {
  2990. "__uuid__": "4d614f0e-822d-4a52-885f-fbeaf608aa0b@f9941",
  2991. "__expectedType__": "cc.SpriteFrame"
  2992. },
  2993. "_type": 0,
  2994. "_fillType": 0,
  2995. "_sizeMode": 1,
  2996. "_fillCenter": {
  2997. "__type__": "cc.Vec2",
  2998. "x": 0,
  2999. "y": 0
  3000. },
  3001. "_fillStart": 0,
  3002. "_fillRange": 0,
  3003. "_isTrimmedMode": true,
  3004. "_useGrayscale": false,
  3005. "_atlas": null,
  3006. "_id": ""
  3007. },
  3008. {
  3009. "__type__": "cc.CompPrefabInfo",
  3010. "fileId": "47UKKTGH5L3YZp0x3s5tD4"
  3011. },
  3012. {
  3013. "__type__": "cc.PrefabInfo",
  3014. "root": {
  3015. "__id__": 1
  3016. },
  3017. "asset": {
  3018. "__id__": 0
  3019. },
  3020. "fileId": "92YUTfacVH8b1dHuKEoyAk"
  3021. },
  3022. {
  3023. "__type__": "cc.UITransform",
  3024. "_name": "",
  3025. "_objFlags": 0,
  3026. "node": {
  3027. "__id__": 8
  3028. },
  3029. "_enabled": true,
  3030. "__prefab": {
  3031. "__id__": 144
  3032. },
  3033. "_contentSize": {
  3034. "__type__": "cc.Size",
  3035. "width": 100,
  3036. "height": 100
  3037. },
  3038. "_anchorPoint": {
  3039. "__type__": "cc.Vec2",
  3040. "x": 0.5,
  3041. "y": 0.5
  3042. },
  3043. "_id": ""
  3044. },
  3045. {
  3046. "__type__": "cc.CompPrefabInfo",
  3047. "fileId": "c4GIM6x0pA16F944BnhYSS"
  3048. },
  3049. {
  3050. "__type__": "cc.PrefabInfo",
  3051. "root": {
  3052. "__id__": 1
  3053. },
  3054. "asset": {
  3055. "__id__": 0
  3056. },
  3057. "fileId": "9dPXt+SI1IgpxP4FN/H3L1"
  3058. },
  3059. {
  3060. "__type__": "cc.UITransform",
  3061. "_name": "",
  3062. "_objFlags": 0,
  3063. "node": {
  3064. "__id__": 1
  3065. },
  3066. "_enabled": true,
  3067. "__prefab": {
  3068. "__id__": 147
  3069. },
  3070. "_contentSize": {
  3071. "__type__": "cc.Size",
  3072. "width": 88,
  3073. "height": 118
  3074. },
  3075. "_anchorPoint": {
  3076. "__type__": "cc.Vec2",
  3077. "x": 0.5,
  3078. "y": 0.5
  3079. },
  3080. "_id": ""
  3081. },
  3082. {
  3083. "__type__": "cc.CompPrefabInfo",
  3084. "fileId": "b2ZjI2CwlC8oKzhVZuf8uw"
  3085. },
  3086. {
  3087. "__type__": "7eeeclRto1Bq72S+NaYyev1",
  3088. "_name": "",
  3089. "_objFlags": 0,
  3090. "node": {
  3091. "__id__": 1
  3092. },
  3093. "_enabled": true,
  3094. "__prefab": {
  3095. "__id__": 149
  3096. },
  3097. "slotID": 0,
  3098. "lock": {
  3099. "__id__": 115
  3100. },
  3101. "empty": {
  3102. "__id__": 97
  3103. },
  3104. "full": {
  3105. "__id__": 9
  3106. },
  3107. "unlockLabel": {
  3108. "__id__": 120
  3109. },
  3110. "hero": {
  3111. "__id__": 10
  3112. },
  3113. "_id": ""
  3114. },
  3115. {
  3116. "__type__": "cc.CompPrefabInfo",
  3117. "fileId": "30v78gOZFL7aW2sBuD/VQY"
  3118. },
  3119. {
  3120. "__type__": "cc.PrefabInfo",
  3121. "root": {
  3122. "__id__": 1
  3123. },
  3124. "asset": {
  3125. "__id__": 0
  3126. },
  3127. "fileId": "48h2boB9JC7J/D3eizRQZj"
  3128. }
  3129. ]