CardBreakSuccessUI.prefab 51 KB

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