blessingBagItem.prefab 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436
  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": "blessingBagItem",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 5
  25. },
  26. {
  27. "__id__": 8
  28. },
  29. {
  30. "__id__": 12
  31. },
  32. {
  33. "__id__": 21
  34. },
  35. {
  36. "__id__": 27
  37. },
  38. {
  39. "__id__": 31
  40. },
  41. {
  42. "__id__": 40
  43. },
  44. {
  45. "__id__": 49
  46. },
  47. {
  48. "__id__": 58
  49. },
  50. {
  51. "__id__": 61
  52. }
  53. ],
  54. "_active": true,
  55. "_components": [
  56. {
  57. "__id__": 66
  58. },
  59. {
  60. "__id__": 67
  61. }
  62. ],
  63. "_prefab": {
  64. "__id__": 68
  65. },
  66. "_opacity": 255,
  67. "_color": {
  68. "__type__": "cc.Color",
  69. "r": 255,
  70. "g": 255,
  71. "b": 255,
  72. "a": 255
  73. },
  74. "_contentSize": {
  75. "__type__": "cc.Size",
  76. "width": 651,
  77. "height": 145
  78. },
  79. "_anchorPoint": {
  80. "__type__": "cc.Vec2",
  81. "x": 0.5,
  82. "y": 1
  83. },
  84. "_trs": {
  85. "__type__": "TypedArray",
  86. "ctor": "Float64Array",
  87. "array": [
  88. 0,
  89. 0,
  90. 0,
  91. 0,
  92. 0,
  93. 0,
  94. 1,
  95. 1,
  96. 1,
  97. 1
  98. ]
  99. },
  100. "_eulerAngles": {
  101. "__type__": "cc.Vec3",
  102. "x": 0,
  103. "y": 0,
  104. "z": 0
  105. },
  106. "_skewX": 0,
  107. "_skewY": 0,
  108. "_is3DNode": false,
  109. "_groupIndex": 0,
  110. "groupIndex": 0,
  111. "_id": ""
  112. },
  113. {
  114. "__type__": "cc.Node",
  115. "_name": "img",
  116. "_objFlags": 0,
  117. "_parent": {
  118. "__id__": 1
  119. },
  120. "_children": [],
  121. "_active": true,
  122. "_components": [
  123. {
  124. "__id__": 3
  125. }
  126. ],
  127. "_prefab": {
  128. "__id__": 4
  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": 104,
  141. "height": 104
  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. -244,
  153. -64.463,
  154. 0,
  155. 0,
  156. 0,
  157. 0,
  158. 1,
  159. 1.1,
  160. 1.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__": "67ae3ae3-4d9c-446d-8526-e1b7ee05606b"
  194. },
  195. "_type": 0,
  196. "_sizeMode": 1,
  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__": "cc.PrefabInfo",
  211. "root": {
  212. "__id__": 1
  213. },
  214. "asset": {
  215. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  216. },
  217. "fileId": "caSR4igDxIb7TvIAagGLey",
  218. "sync": false
  219. },
  220. {
  221. "__type__": "cc.Node",
  222. "_name": "imgbottom",
  223. "_objFlags": 0,
  224. "_parent": {
  225. "__id__": 1
  226. },
  227. "_children": [],
  228. "_active": true,
  229. "_components": [
  230. {
  231. "__id__": 6
  232. }
  233. ],
  234. "_prefab": {
  235. "__id__": 7
  236. },
  237. "_opacity": 255,
  238. "_color": {
  239. "__type__": "cc.Color",
  240. "r": 255,
  241. "g": 255,
  242. "b": 255,
  243. "a": 255
  244. },
  245. "_contentSize": {
  246. "__type__": "cc.Size",
  247. "width": 60,
  248. "height": 65
  249. },
  250. "_anchorPoint": {
  251. "__type__": "cc.Vec2",
  252. "x": 0.5,
  253. "y": 0.5
  254. },
  255. "_trs": {
  256. "__type__": "TypedArray",
  257. "ctor": "Float64Array",
  258. "array": [
  259. -244,
  260. -64.563,
  261. 0,
  262. 0,
  263. 0,
  264. 0,
  265. 1,
  266. 1.2,
  267. 1.2,
  268. 1
  269. ]
  270. },
  271. "_eulerAngles": {
  272. "__type__": "cc.Vec3",
  273. "x": 0,
  274. "y": 0,
  275. "z": 0
  276. },
  277. "_skewX": 0,
  278. "_skewY": 0,
  279. "_is3DNode": false,
  280. "_groupIndex": 0,
  281. "groupIndex": 0,
  282. "_id": ""
  283. },
  284. {
  285. "__type__": "cc.Sprite",
  286. "_name": "",
  287. "_objFlags": 0,
  288. "node": {
  289. "__id__": 5
  290. },
  291. "_enabled": true,
  292. "_materials": [
  293. {
  294. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  295. }
  296. ],
  297. "_srcBlendFactor": 770,
  298. "_dstBlendFactor": 771,
  299. "_spriteFrame": {
  300. "__uuid__": "2b6987c1-d1fb-4a7a-92e5-37f90267b681"
  301. },
  302. "_type": 0,
  303. "_sizeMode": 0,
  304. "_fillType": 0,
  305. "_fillCenter": {
  306. "__type__": "cc.Vec2",
  307. "x": 0,
  308. "y": 0
  309. },
  310. "_fillStart": 0,
  311. "_fillRange": 0,
  312. "_isTrimmedMode": true,
  313. "_atlas": null,
  314. "_id": ""
  315. },
  316. {
  317. "__type__": "cc.PrefabInfo",
  318. "root": {
  319. "__id__": 1
  320. },
  321. "asset": {
  322. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  323. },
  324. "fileId": "0aMrO0a0JJgrCKHcvvWqLZ",
  325. "sync": false
  326. },
  327. {
  328. "__type__": "cc.Node",
  329. "_name": "txtNum",
  330. "_objFlags": 0,
  331. "_parent": {
  332. "__id__": 1
  333. },
  334. "_children": [],
  335. "_active": true,
  336. "_components": [
  337. {
  338. "__id__": 9
  339. },
  340. {
  341. "__id__": 10
  342. }
  343. ],
  344. "_prefab": {
  345. "__id__": 11
  346. },
  347. "_opacity": 255,
  348. "_color": {
  349. "__type__": "cc.Color",
  350. "r": 255,
  351. "g": 255,
  352. "b": 255,
  353. "a": 255
  354. },
  355. "_contentSize": {
  356. "__type__": "cc.Size",
  357. "width": 75.7,
  358. "height": 41.8
  359. },
  360. "_anchorPoint": {
  361. "__type__": "cc.Vec2",
  362. "x": 0.5,
  363. "y": 0.5
  364. },
  365. "_trs": {
  366. "__type__": "TypedArray",
  367. "ctor": "Float64Array",
  368. "array": [
  369. -244,
  370. -104.244,
  371. 0,
  372. 0,
  373. 0,
  374. 0,
  375. 1,
  376. 1.2,
  377. 1.2,
  378. 1
  379. ]
  380. },
  381. "_eulerAngles": {
  382. "__type__": "cc.Vec3",
  383. "x": 0,
  384. "y": 0,
  385. "z": 0
  386. },
  387. "_skewX": 0,
  388. "_skewY": 0,
  389. "_is3DNode": false,
  390. "_groupIndex": 0,
  391. "groupIndex": 0,
  392. "_id": ""
  393. },
  394. {
  395. "__type__": "cc.Label",
  396. "_name": "",
  397. "_objFlags": 0,
  398. "node": {
  399. "__id__": 8
  400. },
  401. "_enabled": true,
  402. "_materials": [
  403. {
  404. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  405. }
  406. ],
  407. "_srcBlendFactor": 770,
  408. "_dstBlendFactor": 771,
  409. "_string": "0.3元",
  410. "_N$string": "0.3元",
  411. "_fontSize": 30,
  412. "_lineHeight": 30,
  413. "_enableWrapText": true,
  414. "_N$file": null,
  415. "_isSystemFontUsed": true,
  416. "_spacingX": 0,
  417. "_batchAsBitmap": false,
  418. "_styleFlags": 0,
  419. "_underlineHeight": 0,
  420. "_N$horizontalAlign": 1,
  421. "_N$verticalAlign": 1,
  422. "_N$fontFamily": "Arial",
  423. "_N$overflow": 0,
  424. "_N$cacheMode": 0,
  425. "_id": ""
  426. },
  427. {
  428. "__type__": "cc.LabelOutline",
  429. "_name": "",
  430. "_objFlags": 0,
  431. "node": {
  432. "__id__": 8
  433. },
  434. "_enabled": true,
  435. "_color": {
  436. "__type__": "cc.Color",
  437. "r": 223,
  438. "g": 130,
  439. "b": 15,
  440. "a": 255
  441. },
  442. "_width": 2,
  443. "_id": ""
  444. },
  445. {
  446. "__type__": "cc.PrefabInfo",
  447. "root": {
  448. "__id__": 1
  449. },
  450. "asset": {
  451. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  452. },
  453. "fileId": "0ecR5jVyhHYIO1gglJ3T9d",
  454. "sync": false
  455. },
  456. {
  457. "__type__": "cc.Node",
  458. "_name": "txtSliderTip",
  459. "_objFlags": 0,
  460. "_parent": {
  461. "__id__": 1
  462. },
  463. "_children": [
  464. {
  465. "__id__": 13
  466. },
  467. {
  468. "__id__": 16
  469. }
  470. ],
  471. "_active": true,
  472. "_components": [
  473. {
  474. "__id__": 19
  475. }
  476. ],
  477. "_prefab": {
  478. "__id__": 20
  479. },
  480. "_opacity": 255,
  481. "_color": {
  482. "__type__": "cc.Color",
  483. "r": 255,
  484. "g": 255,
  485. "b": 255,
  486. "a": 255
  487. },
  488. "_contentSize": {
  489. "__type__": "cc.Size",
  490. "width": 200.04000000000002,
  491. "height": 50.4
  492. },
  493. "_anchorPoint": {
  494. "__type__": "cc.Vec2",
  495. "x": 0.5,
  496. "y": 0.5
  497. },
  498. "_trs": {
  499. "__type__": "TypedArray",
  500. "ctor": "Float64Array",
  501. "array": [
  502. -28.766,
  503. -37.669,
  504. 0,
  505. 0,
  506. 0,
  507. 0,
  508. 1,
  509. 1.2,
  510. 1.2,
  511. 1
  512. ]
  513. },
  514. "_eulerAngles": {
  515. "__type__": "cc.Vec3",
  516. "x": 0,
  517. "y": 0,
  518. "z": 0
  519. },
  520. "_skewX": 0,
  521. "_skewY": 0,
  522. "_is3DNode": false,
  523. "_groupIndex": 0,
  524. "groupIndex": 0,
  525. "_id": ""
  526. },
  527. {
  528. "__type__": "cc.PrivateNode",
  529. "_name": "RICHTEXT_CHILD",
  530. "_objFlags": 1024,
  531. "_parent": {
  532. "__id__": 12
  533. },
  534. "_children": [],
  535. "_active": true,
  536. "_components": [
  537. {
  538. "__id__": 14
  539. }
  540. ],
  541. "_prefab": {
  542. "__id__": 15
  543. },
  544. "_opacity": 255,
  545. "_color": {
  546. "__type__": "cc.Color",
  547. "r": 248,
  548. "g": 152,
  549. "b": 0,
  550. "a": 255
  551. },
  552. "_contentSize": {
  553. "__type__": "cc.Size",
  554. "width": 80.04,
  555. "height": 50.4
  556. },
  557. "_anchorPoint": {
  558. "__type__": "cc.Vec2",
  559. "x": 0,
  560. "y": 0
  561. },
  562. "_trs": {
  563. "__type__": "TypedArray",
  564. "ctor": "Float64Array",
  565. "array": [
  566. -100.02000000000001,
  567. -25.2,
  568. 0,
  569. 0,
  570. 0,
  571. 0,
  572. 1,
  573. 1,
  574. 1,
  575. 1
  576. ]
  577. },
  578. "_eulerAngles": {
  579. "__type__": "cc.Vec3",
  580. "x": 0,
  581. "y": 0,
  582. "z": 0
  583. },
  584. "_skewX": 0,
  585. "_skewY": 0,
  586. "_is3DNode": false,
  587. "_groupIndex": 0,
  588. "groupIndex": 0,
  589. "showInEditor": false,
  590. "_id": ""
  591. },
  592. {
  593. "__type__": "cc.Label",
  594. "_name": "",
  595. "_objFlags": 0,
  596. "node": {
  597. "__id__": 13
  598. },
  599. "_enabled": true,
  600. "_materials": [
  601. {
  602. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  603. }
  604. ],
  605. "_srcBlendFactor": 770,
  606. "_dstBlendFactor": 771,
  607. "_string": "0.3元 ",
  608. "_N$string": "0.3元 ",
  609. "_fontSize": 30,
  610. "_lineHeight": 40,
  611. "_enableWrapText": true,
  612. "_N$file": null,
  613. "_isSystemFontUsed": true,
  614. "_spacingX": 0,
  615. "_batchAsBitmap": false,
  616. "_styleFlags": 1,
  617. "_underlineHeight": 0,
  618. "_N$horizontalAlign": 0,
  619. "_N$verticalAlign": 1,
  620. "_N$fontFamily": "Arial",
  621. "_N$overflow": 0,
  622. "_N$cacheMode": 0,
  623. "_id": ""
  624. },
  625. {
  626. "__type__": "cc.PrefabInfo",
  627. "root": {
  628. "__id__": 1
  629. },
  630. "asset": {
  631. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  632. },
  633. "fileId": "b3qRoyAbhPboK0tziJIeEe",
  634. "sync": false
  635. },
  636. {
  637. "__type__": "cc.PrivateNode",
  638. "_name": "RICHTEXT_CHILD",
  639. "_objFlags": 1024,
  640. "_parent": {
  641. "__id__": 12
  642. },
  643. "_children": [],
  644. "_active": true,
  645. "_components": [
  646. {
  647. "__id__": 17
  648. }
  649. ],
  650. "_prefab": {
  651. "__id__": 18
  652. },
  653. "_opacity": 255,
  654. "_color": {
  655. "__type__": "cc.Color",
  656. "r": 187,
  657. "g": 103,
  658. "b": 56,
  659. "a": 255
  660. },
  661. "_contentSize": {
  662. "__type__": "cc.Size",
  663. "width": 120,
  664. "height": 50.4
  665. },
  666. "_anchorPoint": {
  667. "__type__": "cc.Vec2",
  668. "x": 0,
  669. "y": 0
  670. },
  671. "_trs": {
  672. "__type__": "TypedArray",
  673. "ctor": "Float64Array",
  674. "array": [
  675. -19.980000000000004,
  676. -25.2,
  677. 0,
  678. 0,
  679. 0,
  680. 0,
  681. 1,
  682. 1,
  683. 1,
  684. 1
  685. ]
  686. },
  687. "_eulerAngles": {
  688. "__type__": "cc.Vec3",
  689. "x": 0,
  690. "y": 0,
  691. "z": 0
  692. },
  693. "_skewX": 0,
  694. "_skewY": 0,
  695. "_is3DNode": false,
  696. "_groupIndex": 0,
  697. "groupIndex": 0,
  698. "showInEditor": false,
  699. "_id": ""
  700. },
  701. {
  702. "__type__": "cc.Label",
  703. "_name": "",
  704. "_objFlags": 0,
  705. "node": {
  706. "__id__": 16
  707. },
  708. "_enabled": true,
  709. "_materials": [
  710. {
  711. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  712. }
  713. ],
  714. "_srcBlendFactor": 770,
  715. "_dstBlendFactor": 771,
  716. "_string": "提现进度",
  717. "_N$string": "提现进度",
  718. "_fontSize": 30,
  719. "_lineHeight": 40,
  720. "_enableWrapText": true,
  721. "_N$file": null,
  722. "_isSystemFontUsed": true,
  723. "_spacingX": 0,
  724. "_batchAsBitmap": false,
  725. "_styleFlags": 1,
  726. "_underlineHeight": 0,
  727. "_N$horizontalAlign": 0,
  728. "_N$verticalAlign": 1,
  729. "_N$fontFamily": "Arial",
  730. "_N$overflow": 0,
  731. "_N$cacheMode": 0,
  732. "_id": ""
  733. },
  734. {
  735. "__type__": "cc.PrefabInfo",
  736. "root": {
  737. "__id__": 1
  738. },
  739. "asset": {
  740. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  741. },
  742. "fileId": "98k+IFeeFFw5vGakbtUGmd",
  743. "sync": false
  744. },
  745. {
  746. "__type__": "cc.RichText",
  747. "_name": "",
  748. "_objFlags": 0,
  749. "node": {
  750. "__id__": 12
  751. },
  752. "_enabled": true,
  753. "_fontFamily": "Arial",
  754. "_isSystemFontUsed": true,
  755. "_N$string": "<b><color=#F89800>0.3元 </c><color = #BB6738>提现进度</c></b>",
  756. "_N$horizontalAlign": 0,
  757. "_N$fontSize": 30,
  758. "_N$font": null,
  759. "_N$cacheMode": 0,
  760. "_N$maxWidth": 0,
  761. "_N$lineHeight": 40,
  762. "_N$imageAtlas": null,
  763. "_N$handleTouchEvent": true,
  764. "_id": ""
  765. },
  766. {
  767. "__type__": "cc.PrefabInfo",
  768. "root": {
  769. "__id__": 1
  770. },
  771. "asset": {
  772. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  773. },
  774. "fileId": "e1xGp6bf5CwKK6jywfEUM6",
  775. "sync": false
  776. },
  777. {
  778. "__type__": "cc.Node",
  779. "_name": "SliderBg",
  780. "_objFlags": 0,
  781. "_parent": {
  782. "__id__": 1
  783. },
  784. "_children": [
  785. {
  786. "__id__": 22
  787. }
  788. ],
  789. "_active": true,
  790. "_components": [
  791. {
  792. "__id__": 25
  793. }
  794. ],
  795. "_prefab": {
  796. "__id__": 26
  797. },
  798. "_opacity": 255,
  799. "_color": {
  800. "__type__": "cc.Color",
  801. "r": 255,
  802. "g": 255,
  803. "b": 255,
  804. "a": 255
  805. },
  806. "_contentSize": {
  807. "__type__": "cc.Size",
  808. "width": 266,
  809. "height": 23
  810. },
  811. "_anchorPoint": {
  812. "__type__": "cc.Vec2",
  813. "x": 0.5,
  814. "y": 0.5
  815. },
  816. "_trs": {
  817. "__type__": "TypedArray",
  818. "ctor": "Float64Array",
  819. "array": [
  820. -27.318,
  821. -87.245,
  822. 0,
  823. 0,
  824. 0,
  825. 0,
  826. 1,
  827. 1,
  828. 1.3,
  829. 1
  830. ]
  831. },
  832. "_eulerAngles": {
  833. "__type__": "cc.Vec3",
  834. "x": 0,
  835. "y": 0,
  836. "z": 0
  837. },
  838. "_skewX": 0,
  839. "_skewY": 0,
  840. "_is3DNode": false,
  841. "_groupIndex": 0,
  842. "groupIndex": 0,
  843. "_id": ""
  844. },
  845. {
  846. "__type__": "cc.Node",
  847. "_name": "slider",
  848. "_objFlags": 0,
  849. "_parent": {
  850. "__id__": 21
  851. },
  852. "_children": [],
  853. "_active": true,
  854. "_components": [
  855. {
  856. "__id__": 23
  857. }
  858. ],
  859. "_prefab": {
  860. "__id__": 24
  861. },
  862. "_opacity": 255,
  863. "_color": {
  864. "__type__": "cc.Color",
  865. "r": 255,
  866. "g": 255,
  867. "b": 255,
  868. "a": 255
  869. },
  870. "_contentSize": {
  871. "__type__": "cc.Size",
  872. "width": 264,
  873. "height": 21
  874. },
  875. "_anchorPoint": {
  876. "__type__": "cc.Vec2",
  877. "x": 0.5,
  878. "y": 0.5
  879. },
  880. "_trs": {
  881. "__type__": "TypedArray",
  882. "ctor": "Float64Array",
  883. "array": [
  884. -1,
  885. 0,
  886. 0,
  887. 0,
  888. 0,
  889. 0,
  890. 1,
  891. 1,
  892. 1,
  893. 1
  894. ]
  895. },
  896. "_eulerAngles": {
  897. "__type__": "cc.Vec3",
  898. "x": 0,
  899. "y": 0,
  900. "z": 0
  901. },
  902. "_skewX": 0,
  903. "_skewY": 0,
  904. "_is3DNode": false,
  905. "_groupIndex": 0,
  906. "groupIndex": 0,
  907. "_id": ""
  908. },
  909. {
  910. "__type__": "cc.Sprite",
  911. "_name": "",
  912. "_objFlags": 0,
  913. "node": {
  914. "__id__": 22
  915. },
  916. "_enabled": true,
  917. "_materials": [
  918. {
  919. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  920. }
  921. ],
  922. "_srcBlendFactor": 770,
  923. "_dstBlendFactor": 771,
  924. "_spriteFrame": {
  925. "__uuid__": "574017bf-881c-4724-8347-cff48bc750c3"
  926. },
  927. "_type": 3,
  928. "_sizeMode": 1,
  929. "_fillType": 0,
  930. "_fillCenter": {
  931. "__type__": "cc.Vec2",
  932. "x": 0,
  933. "y": 0
  934. },
  935. "_fillStart": 0,
  936. "_fillRange": 0,
  937. "_isTrimmedMode": true,
  938. "_atlas": null,
  939. "_id": ""
  940. },
  941. {
  942. "__type__": "cc.PrefabInfo",
  943. "root": {
  944. "__id__": 1
  945. },
  946. "asset": {
  947. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  948. },
  949. "fileId": "42zCeX9UlOab3FtXCo41JA",
  950. "sync": false
  951. },
  952. {
  953. "__type__": "cc.Sprite",
  954. "_name": "",
  955. "_objFlags": 0,
  956. "node": {
  957. "__id__": 21
  958. },
  959. "_enabled": true,
  960. "_materials": [
  961. {
  962. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  963. }
  964. ],
  965. "_srcBlendFactor": 770,
  966. "_dstBlendFactor": 771,
  967. "_spriteFrame": {
  968. "__uuid__": "db054414-2b9d-4377-b00c-31069bef4577"
  969. },
  970. "_type": 0,
  971. "_sizeMode": 1,
  972. "_fillType": 0,
  973. "_fillCenter": {
  974. "__type__": "cc.Vec2",
  975. "x": 0,
  976. "y": 0
  977. },
  978. "_fillStart": 0,
  979. "_fillRange": 0,
  980. "_isTrimmedMode": true,
  981. "_atlas": null,
  982. "_id": ""
  983. },
  984. {
  985. "__type__": "cc.PrefabInfo",
  986. "root": {
  987. "__id__": 1
  988. },
  989. "asset": {
  990. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  991. },
  992. "fileId": "a04mX8hshAP4+A5rdY1A5L",
  993. "sync": false
  994. },
  995. {
  996. "__type__": "cc.Node",
  997. "_name": "TxtSlider",
  998. "_objFlags": 0,
  999. "_parent": {
  1000. "__id__": 1
  1001. },
  1002. "_children": [],
  1003. "_active": true,
  1004. "_components": [
  1005. {
  1006. "__id__": 28
  1007. },
  1008. {
  1009. "__id__": 29
  1010. }
  1011. ],
  1012. "_prefab": {
  1013. "__id__": 30
  1014. },
  1015. "_opacity": 255,
  1016. "_color": {
  1017. "__type__": "cc.Color",
  1018. "r": 255,
  1019. "g": 255,
  1020. "b": 255,
  1021. "a": 255
  1022. },
  1023. "_contentSize": {
  1024. "__type__": "cc.Size",
  1025. "width": 67.06,
  1026. "height": 37.28
  1027. },
  1028. "_anchorPoint": {
  1029. "__type__": "cc.Vec2",
  1030. "x": 0.5,
  1031. "y": 0.5
  1032. },
  1033. "_trs": {
  1034. "__type__": "TypedArray",
  1035. "ctor": "Float64Array",
  1036. "array": [
  1037. -18.498,
  1038. -87.108,
  1039. 0,
  1040. 0,
  1041. 0,
  1042. 0,
  1043. 1,
  1044. 1,
  1045. 1,
  1046. 1
  1047. ]
  1048. },
  1049. "_eulerAngles": {
  1050. "__type__": "cc.Vec3",
  1051. "x": 0,
  1052. "y": 0,
  1053. "z": 0
  1054. },
  1055. "_skewX": 0,
  1056. "_skewY": 0,
  1057. "_is3DNode": false,
  1058. "_groupIndex": 0,
  1059. "groupIndex": 0,
  1060. "_id": ""
  1061. },
  1062. {
  1063. "__type__": "cc.Label",
  1064. "_name": "",
  1065. "_objFlags": 0,
  1066. "node": {
  1067. "__id__": 27
  1068. },
  1069. "_enabled": true,
  1070. "_materials": [
  1071. {
  1072. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1073. }
  1074. ],
  1075. "_srcBlendFactor": 770,
  1076. "_dstBlendFactor": 771,
  1077. "_string": "10.10",
  1078. "_N$string": "10.10",
  1079. "_fontSize": 26,
  1080. "_lineHeight": 28,
  1081. "_enableWrapText": true,
  1082. "_N$file": null,
  1083. "_isSystemFontUsed": true,
  1084. "_spacingX": 0,
  1085. "_batchAsBitmap": false,
  1086. "_styleFlags": 1,
  1087. "_underlineHeight": 0,
  1088. "_N$horizontalAlign": 1,
  1089. "_N$verticalAlign": 1,
  1090. "_N$fontFamily": "Arial",
  1091. "_N$overflow": 0,
  1092. "_N$cacheMode": 0,
  1093. "_id": ""
  1094. },
  1095. {
  1096. "__type__": "cc.LabelOutline",
  1097. "_name": "",
  1098. "_objFlags": 0,
  1099. "node": {
  1100. "__id__": 27
  1101. },
  1102. "_enabled": true,
  1103. "_color": {
  1104. "__type__": "cc.Color",
  1105. "r": 148,
  1106. "g": 82,
  1107. "b": 37,
  1108. "a": 255
  1109. },
  1110. "_width": 1,
  1111. "_id": ""
  1112. },
  1113. {
  1114. "__type__": "cc.PrefabInfo",
  1115. "root": {
  1116. "__id__": 1
  1117. },
  1118. "asset": {
  1119. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  1120. },
  1121. "fileId": "f81EmQJexC1atxvBaLLi1U",
  1122. "sync": false
  1123. },
  1124. {
  1125. "__type__": "cc.Node",
  1126. "_name": "BtnNoFinish",
  1127. "_objFlags": 0,
  1128. "_parent": {
  1129. "__id__": 1
  1130. },
  1131. "_children": [
  1132. {
  1133. "__id__": 32
  1134. }
  1135. ],
  1136. "_active": true,
  1137. "_components": [
  1138. {
  1139. "__id__": 36
  1140. },
  1141. {
  1142. "__id__": 37
  1143. }
  1144. ],
  1145. "_prefab": {
  1146. "__id__": 39
  1147. },
  1148. "_opacity": 255,
  1149. "_color": {
  1150. "__type__": "cc.Color",
  1151. "r": 255,
  1152. "g": 255,
  1153. "b": 255,
  1154. "a": 255
  1155. },
  1156. "_contentSize": {
  1157. "__type__": "cc.Size",
  1158. "width": 156,
  1159. "height": 57
  1160. },
  1161. "_anchorPoint": {
  1162. "__type__": "cc.Vec2",
  1163. "x": 0.5,
  1164. "y": 0.5
  1165. },
  1166. "_trs": {
  1167. "__type__": "TypedArray",
  1168. "ctor": "Float64Array",
  1169. "array": [
  1170. 218,
  1171. -66,
  1172. 0,
  1173. 0,
  1174. 0,
  1175. 0,
  1176. 1,
  1177. 1.2,
  1178. 1.2,
  1179. 1
  1180. ]
  1181. },
  1182. "_eulerAngles": {
  1183. "__type__": "cc.Vec3",
  1184. "x": 0,
  1185. "y": 0,
  1186. "z": 0
  1187. },
  1188. "_skewX": 0,
  1189. "_skewY": 0,
  1190. "_is3DNode": false,
  1191. "_groupIndex": 0,
  1192. "groupIndex": 0,
  1193. "_id": ""
  1194. },
  1195. {
  1196. "__type__": "cc.Node",
  1197. "_name": "New Label",
  1198. "_objFlags": 0,
  1199. "_parent": {
  1200. "__id__": 31
  1201. },
  1202. "_children": [],
  1203. "_active": true,
  1204. "_components": [
  1205. {
  1206. "__id__": 33
  1207. },
  1208. {
  1209. "__id__": 34
  1210. }
  1211. ],
  1212. "_prefab": {
  1213. "__id__": 35
  1214. },
  1215. "_opacity": 255,
  1216. "_color": {
  1217. "__type__": "cc.Color",
  1218. "r": 255,
  1219. "g": 255,
  1220. "b": 255,
  1221. "a": 255
  1222. },
  1223. "_contentSize": {
  1224. "__type__": "cc.Size",
  1225. "width": 82,
  1226. "height": 41.8
  1227. },
  1228. "_anchorPoint": {
  1229. "__type__": "cc.Vec2",
  1230. "x": 0.5,
  1231. "y": 0.5
  1232. },
  1233. "_trs": {
  1234. "__type__": "TypedArray",
  1235. "ctor": "Float64Array",
  1236. "array": [
  1237. 0,
  1238. 4.317,
  1239. 0,
  1240. 0,
  1241. 0,
  1242. 0,
  1243. 1,
  1244. 1,
  1245. 1,
  1246. 1
  1247. ]
  1248. },
  1249. "_eulerAngles": {
  1250. "__type__": "cc.Vec3",
  1251. "x": 0,
  1252. "y": 0,
  1253. "z": 0
  1254. },
  1255. "_skewX": 0,
  1256. "_skewY": 0,
  1257. "_is3DNode": false,
  1258. "_groupIndex": 0,
  1259. "groupIndex": 0,
  1260. "_id": ""
  1261. },
  1262. {
  1263. "__type__": "cc.Label",
  1264. "_name": "",
  1265. "_objFlags": 0,
  1266. "node": {
  1267. "__id__": 32
  1268. },
  1269. "_enabled": true,
  1270. "_materials": [
  1271. {
  1272. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1273. }
  1274. ],
  1275. "_srcBlendFactor": 770,
  1276. "_dstBlendFactor": 771,
  1277. "_string": "未完成",
  1278. "_N$string": "未完成",
  1279. "_fontSize": 26,
  1280. "_lineHeight": 30,
  1281. "_enableWrapText": true,
  1282. "_N$file": null,
  1283. "_isSystemFontUsed": true,
  1284. "_spacingX": 0,
  1285. "_batchAsBitmap": false,
  1286. "_styleFlags": 0,
  1287. "_underlineHeight": 0,
  1288. "_N$horizontalAlign": 1,
  1289. "_N$verticalAlign": 1,
  1290. "_N$fontFamily": "Arial",
  1291. "_N$overflow": 0,
  1292. "_N$cacheMode": 1,
  1293. "_id": ""
  1294. },
  1295. {
  1296. "__type__": "cc.LabelOutline",
  1297. "_name": "",
  1298. "_objFlags": 0,
  1299. "node": {
  1300. "__id__": 32
  1301. },
  1302. "_enabled": true,
  1303. "_color": {
  1304. "__type__": "cc.Color",
  1305. "r": 123,
  1306. "g": 123,
  1307. "b": 123,
  1308. "a": 255
  1309. },
  1310. "_width": 2,
  1311. "_id": ""
  1312. },
  1313. {
  1314. "__type__": "cc.PrefabInfo",
  1315. "root": {
  1316. "__id__": 1
  1317. },
  1318. "asset": {
  1319. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  1320. },
  1321. "fileId": "602ZRw/4hEraUp0zgRrw6J",
  1322. "sync": false
  1323. },
  1324. {
  1325. "__type__": "cc.Sprite",
  1326. "_name": "",
  1327. "_objFlags": 0,
  1328. "node": {
  1329. "__id__": 31
  1330. },
  1331. "_enabled": true,
  1332. "_materials": [
  1333. {
  1334. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1335. }
  1336. ],
  1337. "_srcBlendFactor": 770,
  1338. "_dstBlendFactor": 771,
  1339. "_spriteFrame": {
  1340. "__uuid__": "ddd04041-daf4-4274-b5d2-9c3d2f1d4e37"
  1341. },
  1342. "_type": 0,
  1343. "_sizeMode": 1,
  1344. "_fillType": 0,
  1345. "_fillCenter": {
  1346. "__type__": "cc.Vec2",
  1347. "x": 0,
  1348. "y": 0
  1349. },
  1350. "_fillStart": 0,
  1351. "_fillRange": 0,
  1352. "_isTrimmedMode": true,
  1353. "_atlas": null,
  1354. "_id": ""
  1355. },
  1356. {
  1357. "__type__": "cc.Button",
  1358. "_name": "",
  1359. "_objFlags": 0,
  1360. "node": {
  1361. "__id__": 31
  1362. },
  1363. "_enabled": true,
  1364. "_normalMaterial": null,
  1365. "_grayMaterial": null,
  1366. "duration": 0.1,
  1367. "zoomScale": 1.2,
  1368. "clickEvents": [
  1369. {
  1370. "__id__": 38
  1371. }
  1372. ],
  1373. "_N$interactable": true,
  1374. "_N$enableAutoGrayEffect": false,
  1375. "_N$transition": 0,
  1376. "transition": 0,
  1377. "_N$normalColor": {
  1378. "__type__": "cc.Color",
  1379. "r": 255,
  1380. "g": 255,
  1381. "b": 255,
  1382. "a": 255
  1383. },
  1384. "_N$pressedColor": {
  1385. "__type__": "cc.Color",
  1386. "r": 211,
  1387. "g": 211,
  1388. "b": 211,
  1389. "a": 255
  1390. },
  1391. "pressedColor": {
  1392. "__type__": "cc.Color",
  1393. "r": 211,
  1394. "g": 211,
  1395. "b": 211,
  1396. "a": 255
  1397. },
  1398. "_N$hoverColor": {
  1399. "__type__": "cc.Color",
  1400. "r": 255,
  1401. "g": 255,
  1402. "b": 255,
  1403. "a": 255
  1404. },
  1405. "hoverColor": {
  1406. "__type__": "cc.Color",
  1407. "r": 255,
  1408. "g": 255,
  1409. "b": 255,
  1410. "a": 255
  1411. },
  1412. "_N$disabledColor": {
  1413. "__type__": "cc.Color",
  1414. "r": 124,
  1415. "g": 124,
  1416. "b": 124,
  1417. "a": 255
  1418. },
  1419. "_N$normalSprite": null,
  1420. "_N$pressedSprite": null,
  1421. "pressedSprite": null,
  1422. "_N$hoverSprite": null,
  1423. "hoverSprite": null,
  1424. "_N$disabledSprite": null,
  1425. "_N$target": null,
  1426. "_id": ""
  1427. },
  1428. {
  1429. "__type__": "cc.ClickEvent",
  1430. "target": {
  1431. "__id__": 1
  1432. },
  1433. "component": "",
  1434. "_componentId": "b6615dqhWxFXJgvv1DTd49O",
  1435. "handler": "Click_NoFinishBtn",
  1436. "customEventData": ""
  1437. },
  1438. {
  1439. "__type__": "cc.PrefabInfo",
  1440. "root": {
  1441. "__id__": 1
  1442. },
  1443. "asset": {
  1444. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  1445. },
  1446. "fileId": "a1TgsRR9FEQKWKJSb1PfQf",
  1447. "sync": false
  1448. },
  1449. {
  1450. "__type__": "cc.Node",
  1451. "_name": "BtnCanCash",
  1452. "_objFlags": 0,
  1453. "_parent": {
  1454. "__id__": 1
  1455. },
  1456. "_children": [
  1457. {
  1458. "__id__": 41
  1459. }
  1460. ],
  1461. "_active": true,
  1462. "_components": [
  1463. {
  1464. "__id__": 45
  1465. },
  1466. {
  1467. "__id__": 46
  1468. }
  1469. ],
  1470. "_prefab": {
  1471. "__id__": 48
  1472. },
  1473. "_opacity": 255,
  1474. "_color": {
  1475. "__type__": "cc.Color",
  1476. "r": 255,
  1477. "g": 255,
  1478. "b": 255,
  1479. "a": 255
  1480. },
  1481. "_contentSize": {
  1482. "__type__": "cc.Size",
  1483. "width": 156,
  1484. "height": 57
  1485. },
  1486. "_anchorPoint": {
  1487. "__type__": "cc.Vec2",
  1488. "x": 0.5,
  1489. "y": 0.5
  1490. },
  1491. "_trs": {
  1492. "__type__": "TypedArray",
  1493. "ctor": "Float64Array",
  1494. "array": [
  1495. 218,
  1496. -66,
  1497. 0,
  1498. 0,
  1499. 0,
  1500. 0,
  1501. 1,
  1502. 1.2,
  1503. 1.2,
  1504. 1
  1505. ]
  1506. },
  1507. "_eulerAngles": {
  1508. "__type__": "cc.Vec3",
  1509. "x": 0,
  1510. "y": 0,
  1511. "z": 0
  1512. },
  1513. "_skewX": 0,
  1514. "_skewY": 0,
  1515. "_is3DNode": false,
  1516. "_groupIndex": 0,
  1517. "groupIndex": 0,
  1518. "_id": ""
  1519. },
  1520. {
  1521. "__type__": "cc.Node",
  1522. "_name": "New Label",
  1523. "_objFlags": 0,
  1524. "_parent": {
  1525. "__id__": 40
  1526. },
  1527. "_children": [],
  1528. "_active": true,
  1529. "_components": [
  1530. {
  1531. "__id__": 42
  1532. },
  1533. {
  1534. "__id__": 43
  1535. }
  1536. ],
  1537. "_prefab": {
  1538. "__id__": 44
  1539. },
  1540. "_opacity": 255,
  1541. "_color": {
  1542. "__type__": "cc.Color",
  1543. "r": 255,
  1544. "g": 251,
  1545. "b": 237,
  1546. "a": 255
  1547. },
  1548. "_contentSize": {
  1549. "__type__": "cc.Size",
  1550. "width": 71.94,
  1551. "height": 41.8
  1552. },
  1553. "_anchorPoint": {
  1554. "__type__": "cc.Vec2",
  1555. "x": 0.5,
  1556. "y": 0.5
  1557. },
  1558. "_trs": {
  1559. "__type__": "TypedArray",
  1560. "ctor": "Float64Array",
  1561. "array": [
  1562. 0,
  1563. 4.317,
  1564. 0,
  1565. 0,
  1566. 0,
  1567. 0,
  1568. 1,
  1569. 1,
  1570. 1,
  1571. 1
  1572. ]
  1573. },
  1574. "_eulerAngles": {
  1575. "__type__": "cc.Vec3",
  1576. "x": 0,
  1577. "y": 0,
  1578. "z": 0
  1579. },
  1580. "_skewX": 0,
  1581. "_skewY": 0,
  1582. "_is3DNode": false,
  1583. "_groupIndex": 0,
  1584. "groupIndex": 0,
  1585. "_id": ""
  1586. },
  1587. {
  1588. "__type__": "cc.Label",
  1589. "_name": "",
  1590. "_objFlags": 0,
  1591. "node": {
  1592. "__id__": 41
  1593. },
  1594. "_enabled": true,
  1595. "_materials": [
  1596. {
  1597. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1598. }
  1599. ],
  1600. "_srcBlendFactor": 770,
  1601. "_dstBlendFactor": 771,
  1602. "_string": "提 现",
  1603. "_N$string": "提 现",
  1604. "_fontSize": 30,
  1605. "_lineHeight": 30,
  1606. "_enableWrapText": true,
  1607. "_N$file": {
  1608. "__uuid__": "b47819b5-a9ec-4916-8909-db422f79bbb7"
  1609. },
  1610. "_isSystemFontUsed": false,
  1611. "_spacingX": 0,
  1612. "_batchAsBitmap": false,
  1613. "_styleFlags": 0,
  1614. "_underlineHeight": 0,
  1615. "_N$horizontalAlign": 1,
  1616. "_N$verticalAlign": 1,
  1617. "_N$fontFamily": "Arial",
  1618. "_N$overflow": 0,
  1619. "_N$cacheMode": 1,
  1620. "_id": ""
  1621. },
  1622. {
  1623. "__type__": "cc.LabelOutline",
  1624. "_name": "",
  1625. "_objFlags": 0,
  1626. "node": {
  1627. "__id__": 41
  1628. },
  1629. "_enabled": true,
  1630. "_color": {
  1631. "__type__": "cc.Color",
  1632. "r": 178,
  1633. "g": 77,
  1634. "b": 18,
  1635. "a": 255
  1636. },
  1637. "_width": 2,
  1638. "_id": ""
  1639. },
  1640. {
  1641. "__type__": "cc.PrefabInfo",
  1642. "root": {
  1643. "__id__": 1
  1644. },
  1645. "asset": {
  1646. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  1647. },
  1648. "fileId": "8ay/551RVLLIiuS6rGtAsA",
  1649. "sync": false
  1650. },
  1651. {
  1652. "__type__": "cc.Sprite",
  1653. "_name": "",
  1654. "_objFlags": 0,
  1655. "node": {
  1656. "__id__": 40
  1657. },
  1658. "_enabled": true,
  1659. "_materials": [
  1660. {
  1661. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1662. }
  1663. ],
  1664. "_srcBlendFactor": 770,
  1665. "_dstBlendFactor": 771,
  1666. "_spriteFrame": {
  1667. "__uuid__": "61ea54b6-7793-496f-9ddc-66b5cc28ca42"
  1668. },
  1669. "_type": 0,
  1670. "_sizeMode": 1,
  1671. "_fillType": 0,
  1672. "_fillCenter": {
  1673. "__type__": "cc.Vec2",
  1674. "x": 0,
  1675. "y": 0
  1676. },
  1677. "_fillStart": 0,
  1678. "_fillRange": 0,
  1679. "_isTrimmedMode": true,
  1680. "_atlas": null,
  1681. "_id": ""
  1682. },
  1683. {
  1684. "__type__": "cc.Button",
  1685. "_name": "",
  1686. "_objFlags": 0,
  1687. "node": {
  1688. "__id__": 40
  1689. },
  1690. "_enabled": true,
  1691. "_normalMaterial": null,
  1692. "_grayMaterial": null,
  1693. "duration": 0.1,
  1694. "zoomScale": 1.2,
  1695. "clickEvents": [
  1696. {
  1697. "__id__": 47
  1698. }
  1699. ],
  1700. "_N$interactable": true,
  1701. "_N$enableAutoGrayEffect": false,
  1702. "_N$transition": 0,
  1703. "transition": 0,
  1704. "_N$normalColor": {
  1705. "__type__": "cc.Color",
  1706. "r": 255,
  1707. "g": 255,
  1708. "b": 255,
  1709. "a": 255
  1710. },
  1711. "_N$pressedColor": {
  1712. "__type__": "cc.Color",
  1713. "r": 211,
  1714. "g": 211,
  1715. "b": 211,
  1716. "a": 255
  1717. },
  1718. "pressedColor": {
  1719. "__type__": "cc.Color",
  1720. "r": 211,
  1721. "g": 211,
  1722. "b": 211,
  1723. "a": 255
  1724. },
  1725. "_N$hoverColor": {
  1726. "__type__": "cc.Color",
  1727. "r": 255,
  1728. "g": 255,
  1729. "b": 255,
  1730. "a": 255
  1731. },
  1732. "hoverColor": {
  1733. "__type__": "cc.Color",
  1734. "r": 255,
  1735. "g": 255,
  1736. "b": 255,
  1737. "a": 255
  1738. },
  1739. "_N$disabledColor": {
  1740. "__type__": "cc.Color",
  1741. "r": 124,
  1742. "g": 124,
  1743. "b": 124,
  1744. "a": 255
  1745. },
  1746. "_N$normalSprite": null,
  1747. "_N$pressedSprite": null,
  1748. "pressedSprite": null,
  1749. "_N$hoverSprite": null,
  1750. "hoverSprite": null,
  1751. "_N$disabledSprite": null,
  1752. "_N$target": null,
  1753. "_id": ""
  1754. },
  1755. {
  1756. "__type__": "cc.ClickEvent",
  1757. "target": {
  1758. "__id__": 1
  1759. },
  1760. "component": "",
  1761. "_componentId": "b6615dqhWxFXJgvv1DTd49O",
  1762. "handler": "Click_CanCashBtn",
  1763. "customEventData": ""
  1764. },
  1765. {
  1766. "__type__": "cc.PrefabInfo",
  1767. "root": {
  1768. "__id__": 1
  1769. },
  1770. "asset": {
  1771. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  1772. },
  1773. "fileId": "7dsoqr6R9EkY67+A8fcwYp",
  1774. "sync": false
  1775. },
  1776. {
  1777. "__type__": "cc.Node",
  1778. "_name": "BtnCashed",
  1779. "_objFlags": 0,
  1780. "_parent": {
  1781. "__id__": 1
  1782. },
  1783. "_children": [
  1784. {
  1785. "__id__": 50
  1786. }
  1787. ],
  1788. "_active": false,
  1789. "_components": [
  1790. {
  1791. "__id__": 54
  1792. },
  1793. {
  1794. "__id__": 55
  1795. }
  1796. ],
  1797. "_prefab": {
  1798. "__id__": 57
  1799. },
  1800. "_opacity": 255,
  1801. "_color": {
  1802. "__type__": "cc.Color",
  1803. "r": 255,
  1804. "g": 255,
  1805. "b": 255,
  1806. "a": 255
  1807. },
  1808. "_contentSize": {
  1809. "__type__": "cc.Size",
  1810. "width": 156,
  1811. "height": 57
  1812. },
  1813. "_anchorPoint": {
  1814. "__type__": "cc.Vec2",
  1815. "x": 0.5,
  1816. "y": 0.5
  1817. },
  1818. "_trs": {
  1819. "__type__": "TypedArray",
  1820. "ctor": "Float64Array",
  1821. "array": [
  1822. 218,
  1823. -66,
  1824. 0,
  1825. 0,
  1826. 0,
  1827. 0,
  1828. 1,
  1829. 1.2,
  1830. 1.2,
  1831. 1
  1832. ]
  1833. },
  1834. "_eulerAngles": {
  1835. "__type__": "cc.Vec3",
  1836. "x": 0,
  1837. "y": 0,
  1838. "z": 0
  1839. },
  1840. "_skewX": 0,
  1841. "_skewY": 0,
  1842. "_is3DNode": false,
  1843. "_groupIndex": 0,
  1844. "groupIndex": 0,
  1845. "_id": ""
  1846. },
  1847. {
  1848. "__type__": "cc.Node",
  1849. "_name": "New Label",
  1850. "_objFlags": 0,
  1851. "_parent": {
  1852. "__id__": 49
  1853. },
  1854. "_children": [],
  1855. "_active": true,
  1856. "_components": [
  1857. {
  1858. "__id__": 51
  1859. },
  1860. {
  1861. "__id__": 52
  1862. }
  1863. ],
  1864. "_prefab": {
  1865. "__id__": 53
  1866. },
  1867. "_opacity": 255,
  1868. "_color": {
  1869. "__type__": "cc.Color",
  1870. "r": 255,
  1871. "g": 255,
  1872. "b": 255,
  1873. "a": 255
  1874. },
  1875. "_contentSize": {
  1876. "__type__": "cc.Size",
  1877. "width": 78,
  1878. "height": 37.8
  1879. },
  1880. "_anchorPoint": {
  1881. "__type__": "cc.Vec2",
  1882. "x": 0.5,
  1883. "y": 0.5
  1884. },
  1885. "_trs": {
  1886. "__type__": "TypedArray",
  1887. "ctor": "Float64Array",
  1888. "array": [
  1889. 0,
  1890. 2.428,
  1891. 0,
  1892. 0,
  1893. 0,
  1894. 0,
  1895. 1,
  1896. 1,
  1897. 1,
  1898. 1
  1899. ]
  1900. },
  1901. "_eulerAngles": {
  1902. "__type__": "cc.Vec3",
  1903. "x": 0,
  1904. "y": 0,
  1905. "z": 0
  1906. },
  1907. "_skewX": 0,
  1908. "_skewY": 0,
  1909. "_is3DNode": false,
  1910. "_groupIndex": 0,
  1911. "groupIndex": 0,
  1912. "_id": ""
  1913. },
  1914. {
  1915. "__type__": "cc.Label",
  1916. "_name": "",
  1917. "_objFlags": 0,
  1918. "node": {
  1919. "__id__": 50
  1920. },
  1921. "_enabled": true,
  1922. "_materials": [
  1923. {
  1924. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1925. }
  1926. ],
  1927. "_srcBlendFactor": 770,
  1928. "_dstBlendFactor": 771,
  1929. "_string": "已提现",
  1930. "_N$string": "已提现",
  1931. "_fontSize": 26,
  1932. "_lineHeight": 30,
  1933. "_enableWrapText": true,
  1934. "_N$file": null,
  1935. "_isSystemFontUsed": true,
  1936. "_spacingX": 0,
  1937. "_batchAsBitmap": false,
  1938. "_styleFlags": 0,
  1939. "_underlineHeight": 0,
  1940. "_N$horizontalAlign": 1,
  1941. "_N$verticalAlign": 1,
  1942. "_N$fontFamily": "Arial",
  1943. "_N$overflow": 0,
  1944. "_N$cacheMode": 0,
  1945. "_id": ""
  1946. },
  1947. {
  1948. "__type__": "cc.LabelOutline",
  1949. "_name": "",
  1950. "_objFlags": 0,
  1951. "node": {
  1952. "__id__": 50
  1953. },
  1954. "_enabled": true,
  1955. "_color": {
  1956. "__type__": "cc.Color",
  1957. "r": 123,
  1958. "g": 123,
  1959. "b": 123,
  1960. "a": 255
  1961. },
  1962. "_width": 2,
  1963. "_id": ""
  1964. },
  1965. {
  1966. "__type__": "cc.PrefabInfo",
  1967. "root": {
  1968. "__id__": 1
  1969. },
  1970. "asset": {
  1971. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  1972. },
  1973. "fileId": "9eVyW1Ef9DxoZi6hbhk/Pw",
  1974. "sync": false
  1975. },
  1976. {
  1977. "__type__": "cc.Sprite",
  1978. "_name": "",
  1979. "_objFlags": 0,
  1980. "node": {
  1981. "__id__": 49
  1982. },
  1983. "_enabled": true,
  1984. "_materials": [
  1985. {
  1986. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1987. }
  1988. ],
  1989. "_srcBlendFactor": 770,
  1990. "_dstBlendFactor": 771,
  1991. "_spriteFrame": {
  1992. "__uuid__": "ddd04041-daf4-4274-b5d2-9c3d2f1d4e37"
  1993. },
  1994. "_type": 0,
  1995. "_sizeMode": 1,
  1996. "_fillType": 0,
  1997. "_fillCenter": {
  1998. "__type__": "cc.Vec2",
  1999. "x": 0,
  2000. "y": 0
  2001. },
  2002. "_fillStart": 0,
  2003. "_fillRange": 0,
  2004. "_isTrimmedMode": true,
  2005. "_atlas": null,
  2006. "_id": ""
  2007. },
  2008. {
  2009. "__type__": "cc.Button",
  2010. "_name": "",
  2011. "_objFlags": 0,
  2012. "node": {
  2013. "__id__": 49
  2014. },
  2015. "_enabled": true,
  2016. "_normalMaterial": null,
  2017. "_grayMaterial": null,
  2018. "duration": 0.1,
  2019. "zoomScale": 1.2,
  2020. "clickEvents": [
  2021. {
  2022. "__id__": 56
  2023. }
  2024. ],
  2025. "_N$interactable": true,
  2026. "_N$enableAutoGrayEffect": false,
  2027. "_N$transition": 0,
  2028. "transition": 0,
  2029. "_N$normalColor": {
  2030. "__type__": "cc.Color",
  2031. "r": 255,
  2032. "g": 255,
  2033. "b": 255,
  2034. "a": 255
  2035. },
  2036. "_N$pressedColor": {
  2037. "__type__": "cc.Color",
  2038. "r": 211,
  2039. "g": 211,
  2040. "b": 211,
  2041. "a": 255
  2042. },
  2043. "pressedColor": {
  2044. "__type__": "cc.Color",
  2045. "r": 211,
  2046. "g": 211,
  2047. "b": 211,
  2048. "a": 255
  2049. },
  2050. "_N$hoverColor": {
  2051. "__type__": "cc.Color",
  2052. "r": 255,
  2053. "g": 255,
  2054. "b": 255,
  2055. "a": 255
  2056. },
  2057. "hoverColor": {
  2058. "__type__": "cc.Color",
  2059. "r": 255,
  2060. "g": 255,
  2061. "b": 255,
  2062. "a": 255
  2063. },
  2064. "_N$disabledColor": {
  2065. "__type__": "cc.Color",
  2066. "r": 124,
  2067. "g": 124,
  2068. "b": 124,
  2069. "a": 255
  2070. },
  2071. "_N$normalSprite": null,
  2072. "_N$pressedSprite": null,
  2073. "pressedSprite": null,
  2074. "_N$hoverSprite": null,
  2075. "hoverSprite": null,
  2076. "_N$disabledSprite": null,
  2077. "_N$target": null,
  2078. "_id": ""
  2079. },
  2080. {
  2081. "__type__": "cc.ClickEvent",
  2082. "target": {
  2083. "__id__": 1
  2084. },
  2085. "component": "",
  2086. "_componentId": "b6615dqhWxFXJgvv1DTd49O",
  2087. "handler": "Click_CashedBtn",
  2088. "customEventData": ""
  2089. },
  2090. {
  2091. "__type__": "cc.PrefabInfo",
  2092. "root": {
  2093. "__id__": 1
  2094. },
  2095. "asset": {
  2096. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  2097. },
  2098. "fileId": "86N4SLUnNKu4s5vYbvGBnG",
  2099. "sync": false
  2100. },
  2101. {
  2102. "__type__": "cc.Node",
  2103. "_name": "分割线",
  2104. "_objFlags": 0,
  2105. "_parent": {
  2106. "__id__": 1
  2107. },
  2108. "_children": [],
  2109. "_active": true,
  2110. "_components": [
  2111. {
  2112. "__id__": 59
  2113. }
  2114. ],
  2115. "_prefab": {
  2116. "__id__": 60
  2117. },
  2118. "_opacity": 255,
  2119. "_color": {
  2120. "__type__": "cc.Color",
  2121. "r": 255,
  2122. "g": 255,
  2123. "b": 255,
  2124. "a": 255
  2125. },
  2126. "_contentSize": {
  2127. "__type__": "cc.Size",
  2128. "width": 580,
  2129. "height": 7
  2130. },
  2131. "_anchorPoint": {
  2132. "__type__": "cc.Vec2",
  2133. "x": 0.5,
  2134. "y": 0.5
  2135. },
  2136. "_trs": {
  2137. "__type__": "TypedArray",
  2138. "ctor": "Float64Array",
  2139. "array": [
  2140. 16,
  2141. -143.813,
  2142. 0,
  2143. 0,
  2144. 0,
  2145. 0,
  2146. 1,
  2147. 1,
  2148. 1,
  2149. 1
  2150. ]
  2151. },
  2152. "_eulerAngles": {
  2153. "__type__": "cc.Vec3",
  2154. "x": 0,
  2155. "y": 0,
  2156. "z": 0
  2157. },
  2158. "_skewX": 0,
  2159. "_skewY": 0,
  2160. "_is3DNode": false,
  2161. "_groupIndex": 0,
  2162. "groupIndex": 0,
  2163. "_id": ""
  2164. },
  2165. {
  2166. "__type__": "cc.Sprite",
  2167. "_name": "",
  2168. "_objFlags": 0,
  2169. "node": {
  2170. "__id__": 58
  2171. },
  2172. "_enabled": true,
  2173. "_materials": [
  2174. {
  2175. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2176. }
  2177. ],
  2178. "_srcBlendFactor": 770,
  2179. "_dstBlendFactor": 771,
  2180. "_spriteFrame": {
  2181. "__uuid__": "5f837664-4b4e-42fd-8bab-fc030dbabf54"
  2182. },
  2183. "_type": 0,
  2184. "_sizeMode": 0,
  2185. "_fillType": 0,
  2186. "_fillCenter": {
  2187. "__type__": "cc.Vec2",
  2188. "x": 0,
  2189. "y": 0
  2190. },
  2191. "_fillStart": 0,
  2192. "_fillRange": 0,
  2193. "_isTrimmedMode": true,
  2194. "_atlas": null,
  2195. "_id": ""
  2196. },
  2197. {
  2198. "__type__": "cc.PrefabInfo",
  2199. "root": {
  2200. "__id__": 1
  2201. },
  2202. "asset": {
  2203. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  2204. },
  2205. "fileId": "e0ER69aXRMarGzpFdGsgkQ",
  2206. "sync": false
  2207. },
  2208. {
  2209. "__type__": "cc.Node",
  2210. "_name": "增加效果文本",
  2211. "_objFlags": 0,
  2212. "_parent": {
  2213. "__id__": 1
  2214. },
  2215. "_children": [],
  2216. "_active": true,
  2217. "_components": [
  2218. {
  2219. "__id__": 62
  2220. },
  2221. {
  2222. "__id__": 63
  2223. },
  2224. {
  2225. "__id__": 64
  2226. }
  2227. ],
  2228. "_prefab": {
  2229. "__id__": 65
  2230. },
  2231. "_opacity": 255,
  2232. "_color": {
  2233. "__type__": "cc.Color",
  2234. "r": 249,
  2235. "g": 11,
  2236. "b": 187,
  2237. "a": 255
  2238. },
  2239. "_contentSize": {
  2240. "__type__": "cc.Size",
  2241. "width": 34.2,
  2242. "height": 37.8
  2243. },
  2244. "_anchorPoint": {
  2245. "__type__": "cc.Vec2",
  2246. "x": 0.5,
  2247. "y": 0.5
  2248. },
  2249. "_trs": {
  2250. "__type__": "TypedArray",
  2251. "ctor": "Float64Array",
  2252. "array": [
  2253. 74.494,
  2254. -86.471,
  2255. 0,
  2256. 0,
  2257. 0,
  2258. 0,
  2259. 1,
  2260. 1,
  2261. 1,
  2262. 1
  2263. ]
  2264. },
  2265. "_eulerAngles": {
  2266. "__type__": "cc.Vec3",
  2267. "x": 0,
  2268. "y": 0,
  2269. "z": 0
  2270. },
  2271. "_skewX": 0,
  2272. "_skewY": 0,
  2273. "_is3DNode": false,
  2274. "_groupIndex": 0,
  2275. "groupIndex": 0,
  2276. "_id": ""
  2277. },
  2278. {
  2279. "__type__": "cc.Label",
  2280. "_name": "",
  2281. "_objFlags": 0,
  2282. "node": {
  2283. "__id__": 61
  2284. },
  2285. "_enabled": true,
  2286. "_materials": [
  2287. {
  2288. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2289. }
  2290. ],
  2291. "_srcBlendFactor": 770,
  2292. "_dstBlendFactor": 771,
  2293. "_string": "+1",
  2294. "_N$string": "+1",
  2295. "_fontSize": 30,
  2296. "_lineHeight": 30,
  2297. "_enableWrapText": true,
  2298. "_N$file": null,
  2299. "_isSystemFontUsed": true,
  2300. "_spacingX": 0,
  2301. "_batchAsBitmap": false,
  2302. "_styleFlags": 1,
  2303. "_underlineHeight": 0,
  2304. "_N$horizontalAlign": 1,
  2305. "_N$verticalAlign": 1,
  2306. "_N$fontFamily": "Arial",
  2307. "_N$overflow": 0,
  2308. "_N$cacheMode": 0,
  2309. "_id": ""
  2310. },
  2311. {
  2312. "__type__": "cc.LabelOutline",
  2313. "_name": "",
  2314. "_objFlags": 0,
  2315. "node": {
  2316. "__id__": 61
  2317. },
  2318. "_enabled": false,
  2319. "_color": {
  2320. "__type__": "cc.Color",
  2321. "r": 255,
  2322. "g": 255,
  2323. "b": 255,
  2324. "a": 255
  2325. },
  2326. "_width": 1,
  2327. "_id": ""
  2328. },
  2329. {
  2330. "__type__": "cc.Animation",
  2331. "_name": "",
  2332. "_objFlags": 0,
  2333. "node": {
  2334. "__id__": 61
  2335. },
  2336. "_enabled": false,
  2337. "_defaultClip": {
  2338. "__uuid__": "7ed7c68f-a943-47b4-83fe-aa7df7e01c96"
  2339. },
  2340. "_clips": [
  2341. {
  2342. "__uuid__": "7ed7c68f-a943-47b4-83fe-aa7df7e01c96"
  2343. }
  2344. ],
  2345. "playOnLoad": false,
  2346. "_id": ""
  2347. },
  2348. {
  2349. "__type__": "cc.PrefabInfo",
  2350. "root": {
  2351. "__id__": 1
  2352. },
  2353. "asset": {
  2354. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  2355. },
  2356. "fileId": "c1ukup7/1GuoPHSC2sP1mu",
  2357. "sync": false
  2358. },
  2359. {
  2360. "__type__": "cc.Sprite",
  2361. "_name": "",
  2362. "_objFlags": 0,
  2363. "node": {
  2364. "__id__": 1
  2365. },
  2366. "_enabled": false,
  2367. "_materials": [
  2368. {
  2369. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2370. }
  2371. ],
  2372. "_srcBlendFactor": 770,
  2373. "_dstBlendFactor": 771,
  2374. "_spriteFrame": {
  2375. "__uuid__": "e0ef2340-7ce4-43a7-883e-192d081a9d9e"
  2376. },
  2377. "_type": 0,
  2378. "_sizeMode": 0,
  2379. "_fillType": 0,
  2380. "_fillCenter": {
  2381. "__type__": "cc.Vec2",
  2382. "x": 0,
  2383. "y": 0
  2384. },
  2385. "_fillStart": 0,
  2386. "_fillRange": 0,
  2387. "_isTrimmedMode": true,
  2388. "_atlas": null,
  2389. "_id": ""
  2390. },
  2391. {
  2392. "__type__": "b6615dqhWxFXJgvv1DTd49O",
  2393. "_name": "",
  2394. "_objFlags": 0,
  2395. "node": {
  2396. "__id__": 1
  2397. },
  2398. "_enabled": true,
  2399. "txtNum": {
  2400. "__id__": 9
  2401. },
  2402. "txtTip": {
  2403. "__id__": 19
  2404. },
  2405. "txtSlider": {
  2406. "__id__": 28
  2407. },
  2408. "slider": {
  2409. "__id__": 23
  2410. },
  2411. "btnCashed": {
  2412. "__id__": 49
  2413. },
  2414. "btnCanCash": {
  2415. "__id__": 40
  2416. },
  2417. "btnNoFinish": {
  2418. "__id__": 31
  2419. },
  2420. "ani_fadeUp": {
  2421. "__id__": 61
  2422. },
  2423. "_id": ""
  2424. },
  2425. {
  2426. "__type__": "cc.PrefabInfo",
  2427. "root": {
  2428. "__id__": 1
  2429. },
  2430. "asset": {
  2431. "__uuid__": "3c12cc7b-777b-45f9-8bf1-8a285075e6f7"
  2432. },
  2433. "fileId": "",
  2434. "sync": false
  2435. }
  2436. ]