GameEndView_21201.prefab 53 KB

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