cashWithdrawal.prefab 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "cashWithdrawal",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "cashWithdrawal",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 8
  26. }
  27. ],
  28. "_active": true,
  29. "_components": [
  30. {
  31. "__id__": 100
  32. },
  33. {
  34. "__id__": 102
  35. },
  36. {
  37. "__id__": 104
  38. }
  39. ],
  40. "_prefab": {
  41. "__id__": 106
  42. },
  43. "_lpos": {
  44. "__type__": "cc.Vec3",
  45. "x": 0,
  46. "y": 0,
  47. "z": 0
  48. },
  49. "_lrot": {
  50. "__type__": "cc.Quat",
  51. "x": 0,
  52. "y": 0,
  53. "z": 0,
  54. "w": 1
  55. },
  56. "_lscale": {
  57. "__type__": "cc.Vec3",
  58. "x": 1,
  59. "y": 1,
  60. "z": 1
  61. },
  62. "_mobility": 0,
  63. "_layer": 33554432,
  64. "_euler": {
  65. "__type__": "cc.Vec3",
  66. "x": 0,
  67. "y": 0,
  68. "z": 0
  69. },
  70. "_id": ""
  71. },
  72. {
  73. "__type__": "cc.Node",
  74. "_name": "lab_title",
  75. "_objFlags": 0,
  76. "__editorExtras__": {},
  77. "_parent": {
  78. "__id__": 1
  79. },
  80. "_children": [],
  81. "_active": true,
  82. "_components": [
  83. {
  84. "__id__": 3
  85. },
  86. {
  87. "__id__": 5
  88. }
  89. ],
  90. "_prefab": {
  91. "__id__": 7
  92. },
  93. "_lpos": {
  94. "__type__": "cc.Vec3",
  95. "x": 0,
  96. "y": 466.834,
  97. "z": 0
  98. },
  99. "_lrot": {
  100. "__type__": "cc.Quat",
  101. "x": 0,
  102. "y": 0,
  103. "z": 0,
  104. "w": 1
  105. },
  106. "_lscale": {
  107. "__type__": "cc.Vec3",
  108. "x": 1,
  109. "y": 1,
  110. "z": 1
  111. },
  112. "_mobility": 0,
  113. "_layer": 33554432,
  114. "_euler": {
  115. "__type__": "cc.Vec3",
  116. "x": 0,
  117. "y": 0,
  118. "z": 0
  119. },
  120. "_id": ""
  121. },
  122. {
  123. "__type__": "cc.UITransform",
  124. "_name": "",
  125. "_objFlags": 0,
  126. "__editorExtras__": {},
  127. "node": {
  128. "__id__": 2
  129. },
  130. "_enabled": true,
  131. "__prefab": {
  132. "__id__": 4
  133. },
  134. "_contentSize": {
  135. "__type__": "cc.Size",
  136. "width": 160,
  137. "height": 50.4
  138. },
  139. "_anchorPoint": {
  140. "__type__": "cc.Vec2",
  141. "x": 0.5,
  142. "y": 0.5
  143. },
  144. "_id": ""
  145. },
  146. {
  147. "__type__": "cc.CompPrefabInfo",
  148. "fileId": "b6sPh5kMdF5bgBhi777MPX"
  149. },
  150. {
  151. "__type__": "cc.Label",
  152. "_name": "",
  153. "_objFlags": 0,
  154. "__editorExtras__": {},
  155. "node": {
  156. "__id__": 2
  157. },
  158. "_enabled": true,
  159. "__prefab": {
  160. "__id__": 6
  161. },
  162. "_customMaterial": null,
  163. "_srcBlendFactor": 2,
  164. "_dstBlendFactor": 4,
  165. "_color": {
  166. "__type__": "cc.Color",
  167. "r": 255,
  168. "g": 255,
  169. "b": 255,
  170. "a": 255
  171. },
  172. "_string": "提现成功",
  173. "_horizontalAlign": 1,
  174. "_verticalAlign": 1,
  175. "_actualFontSize": 40,
  176. "_fontSize": 40,
  177. "_fontFamily": "Arial",
  178. "_lineHeight": 40,
  179. "_overflow": 0,
  180. "_enableWrapText": true,
  181. "_font": null,
  182. "_isSystemFontUsed": true,
  183. "_spacingX": 0,
  184. "_isItalic": false,
  185. "_isBold": true,
  186. "_isUnderline": false,
  187. "_underlineHeight": 2,
  188. "_cacheMode": 0,
  189. "_enableOutline": false,
  190. "_outlineColor": {
  191. "__type__": "cc.Color",
  192. "r": 0,
  193. "g": 0,
  194. "b": 0,
  195. "a": 255
  196. },
  197. "_outlineWidth": 2,
  198. "_enableShadow": false,
  199. "_shadowColor": {
  200. "__type__": "cc.Color",
  201. "r": 0,
  202. "g": 0,
  203. "b": 0,
  204. "a": 255
  205. },
  206. "_shadowOffset": {
  207. "__type__": "cc.Vec2",
  208. "x": 2,
  209. "y": 2
  210. },
  211. "_shadowBlur": 2,
  212. "_id": ""
  213. },
  214. {
  215. "__type__": "cc.CompPrefabInfo",
  216. "fileId": "e9z2BCXSJHCpJ53hqkXPsT"
  217. },
  218. {
  219. "__type__": "cc.PrefabInfo",
  220. "root": {
  221. "__id__": 1
  222. },
  223. "asset": {
  224. "__id__": 0
  225. },
  226. "fileId": "cdoQrNMZdIH6Uq4U2Fr4Fs",
  227. "instance": null,
  228. "targetOverrides": null,
  229. "nestedPrefabInstanceRoots": null
  230. },
  231. {
  232. "__type__": "cc.Node",
  233. "_name": "Bg",
  234. "_objFlags": 0,
  235. "__editorExtras__": {},
  236. "_parent": {
  237. "__id__": 1
  238. },
  239. "_children": [
  240. {
  241. "__id__": 9
  242. }
  243. ],
  244. "_active": true,
  245. "_components": [
  246. {
  247. "__id__": 95
  248. },
  249. {
  250. "__id__": 97
  251. }
  252. ],
  253. "_prefab": {
  254. "__id__": 99
  255. },
  256. "_lpos": {
  257. "__type__": "cc.Vec3",
  258. "x": 2,
  259. "y": 110.97,
  260. "z": 0
  261. },
  262. "_lrot": {
  263. "__type__": "cc.Quat",
  264. "x": 0,
  265. "y": 0,
  266. "z": 0,
  267. "w": 1
  268. },
  269. "_lscale": {
  270. "__type__": "cc.Vec3",
  271. "x": 1,
  272. "y": 1,
  273. "z": 1
  274. },
  275. "_mobility": 0,
  276. "_layer": 33554432,
  277. "_euler": {
  278. "__type__": "cc.Vec3",
  279. "x": 0,
  280. "y": 0,
  281. "z": 0
  282. },
  283. "_id": ""
  284. },
  285. {
  286. "__type__": "cc.Node",
  287. "_name": "spriteFrame",
  288. "_objFlags": 0,
  289. "__editorExtras__": {},
  290. "_parent": {
  291. "__id__": 8
  292. },
  293. "_children": [
  294. {
  295. "__id__": 10
  296. },
  297. {
  298. "__id__": 16
  299. },
  300. {
  301. "__id__": 22
  302. },
  303. {
  304. "__id__": 36
  305. },
  306. {
  307. "__id__": 42
  308. },
  309. {
  310. "__id__": 48
  311. },
  312. {
  313. "__id__": 54
  314. },
  315. {
  316. "__id__": 60
  317. },
  318. {
  319. "__id__": 66
  320. },
  321. {
  322. "__id__": 72
  323. },
  324. {
  325. "__id__": 78
  326. },
  327. {
  328. "__id__": 84
  329. }
  330. ],
  331. "_active": true,
  332. "_components": [
  333. {
  334. "__id__": 90
  335. },
  336. {
  337. "__id__": 92
  338. }
  339. ],
  340. "_prefab": {
  341. "__id__": 94
  342. },
  343. "_lpos": {
  344. "__type__": "cc.Vec3",
  345. "x": -5,
  346. "y": 243.02999999999997,
  347. "z": 0
  348. },
  349. "_lrot": {
  350. "__type__": "cc.Quat",
  351. "x": 0,
  352. "y": 0,
  353. "z": 0,
  354. "w": 1
  355. },
  356. "_lscale": {
  357. "__type__": "cc.Vec3",
  358. "x": 1,
  359. "y": 1,
  360. "z": 1
  361. },
  362. "_mobility": 0,
  363. "_layer": 33554432,
  364. "_euler": {
  365. "__type__": "cc.Vec3",
  366. "x": 0,
  367. "y": 0,
  368. "z": 0
  369. },
  370. "_id": ""
  371. },
  372. {
  373. "__type__": "cc.Node",
  374. "_name": "Label",
  375. "_objFlags": 0,
  376. "__editorExtras__": {},
  377. "_parent": {
  378. "__id__": 9
  379. },
  380. "_children": [],
  381. "_active": true,
  382. "_components": [
  383. {
  384. "__id__": 11
  385. },
  386. {
  387. "__id__": 13
  388. }
  389. ],
  390. "_prefab": {
  391. "__id__": 15
  392. },
  393. "_lpos": {
  394. "__type__": "cc.Vec3",
  395. "x": 0,
  396. "y": -38.499,
  397. "z": 0
  398. },
  399. "_lrot": {
  400. "__type__": "cc.Quat",
  401. "x": 0,
  402. "y": 0,
  403. "z": 0,
  404. "w": 1
  405. },
  406. "_lscale": {
  407. "__type__": "cc.Vec3",
  408. "x": 1,
  409. "y": 1,
  410. "z": 1
  411. },
  412. "_mobility": 0,
  413. "_layer": 33554432,
  414. "_euler": {
  415. "__type__": "cc.Vec3",
  416. "x": 0,
  417. "y": 0,
  418. "z": 0
  419. },
  420. "_id": ""
  421. },
  422. {
  423. "__type__": "cc.UITransform",
  424. "_name": "",
  425. "_objFlags": 0,
  426. "__editorExtras__": {},
  427. "node": {
  428. "__id__": 10
  429. },
  430. "_enabled": true,
  431. "__prefab": {
  432. "__id__": 12
  433. },
  434. "_contentSize": {
  435. "__type__": "cc.Size",
  436. "width": 233.3251953125,
  437. "height": 50.4
  438. },
  439. "_anchorPoint": {
  440. "__type__": "cc.Vec2",
  441. "x": 0.5,
  442. "y": 0.5
  443. },
  444. "_id": ""
  445. },
  446. {
  447. "__type__": "cc.CompPrefabInfo",
  448. "fileId": "495z7x6kdPkYwjy97dVNDb"
  449. },
  450. {
  451. "__type__": "cc.Label",
  452. "_name": "",
  453. "_objFlags": 0,
  454. "__editorExtras__": {},
  455. "node": {
  456. "__id__": 10
  457. },
  458. "_enabled": true,
  459. "__prefab": {
  460. "__id__": 14
  461. },
  462. "_customMaterial": null,
  463. "_srcBlendFactor": 2,
  464. "_dstBlendFactor": 4,
  465. "_color": {
  466. "__type__": "cc.Color",
  467. "r": 57,
  468. "g": 210,
  469. "b": 231,
  470. "a": 255
  471. },
  472. "_string": "现金提现-到微信零钱",
  473. "_horizontalAlign": 1,
  474. "_verticalAlign": 1,
  475. "_actualFontSize": 25,
  476. "_fontSize": 25,
  477. "_fontFamily": "Arial",
  478. "_lineHeight": 40,
  479. "_overflow": 0,
  480. "_enableWrapText": true,
  481. "_font": null,
  482. "_isSystemFontUsed": true,
  483. "_spacingX": 0,
  484. "_isItalic": false,
  485. "_isBold": true,
  486. "_isUnderline": false,
  487. "_underlineHeight": 2,
  488. "_cacheMode": 0,
  489. "_enableOutline": false,
  490. "_outlineColor": {
  491. "__type__": "cc.Color",
  492. "r": 0,
  493. "g": 0,
  494. "b": 0,
  495. "a": 255
  496. },
  497. "_outlineWidth": 2,
  498. "_enableShadow": false,
  499. "_shadowColor": {
  500. "__type__": "cc.Color",
  501. "r": 0,
  502. "g": 0,
  503. "b": 0,
  504. "a": 255
  505. },
  506. "_shadowOffset": {
  507. "__type__": "cc.Vec2",
  508. "x": 2,
  509. "y": 2
  510. },
  511. "_shadowBlur": 2,
  512. "_id": ""
  513. },
  514. {
  515. "__type__": "cc.CompPrefabInfo",
  516. "fileId": "45Fw8K+fpC+qLh0RyRut/J"
  517. },
  518. {
  519. "__type__": "cc.PrefabInfo",
  520. "root": {
  521. "__id__": 1
  522. },
  523. "asset": {
  524. "__id__": 0
  525. },
  526. "fileId": "d5wx7bC0BBz4KzcaAbN6yf",
  527. "instance": null,
  528. "targetOverrides": null,
  529. "nestedPrefabInstanceRoots": null
  530. },
  531. {
  532. "__type__": "cc.Node",
  533. "_name": "lab_money",
  534. "_objFlags": 0,
  535. "__editorExtras__": {},
  536. "_parent": {
  537. "__id__": 9
  538. },
  539. "_children": [],
  540. "_active": true,
  541. "_components": [
  542. {
  543. "__id__": 17
  544. },
  545. {
  546. "__id__": 19
  547. }
  548. ],
  549. "_prefab": {
  550. "__id__": 21
  551. },
  552. "_lpos": {
  553. "__type__": "cc.Vec3",
  554. "x": 0,
  555. "y": -91.46,
  556. "z": 0
  557. },
  558. "_lrot": {
  559. "__type__": "cc.Quat",
  560. "x": 0,
  561. "y": 0,
  562. "z": 0,
  563. "w": 1
  564. },
  565. "_lscale": {
  566. "__type__": "cc.Vec3",
  567. "x": 1,
  568. "y": 1,
  569. "z": 1
  570. },
  571. "_mobility": 0,
  572. "_layer": 33554432,
  573. "_euler": {
  574. "__type__": "cc.Vec3",
  575. "x": 0,
  576. "y": 0,
  577. "z": 0
  578. },
  579. "_id": ""
  580. },
  581. {
  582. "__type__": "cc.UITransform",
  583. "_name": "",
  584. "_objFlags": 0,
  585. "__editorExtras__": {},
  586. "node": {
  587. "__id__": 16
  588. },
  589. "_enabled": true,
  590. "__prefab": {
  591. "__id__": 18
  592. },
  593. "_contentSize": {
  594. "__type__": "cc.Size",
  595. "width": 52.8076171875,
  596. "height": 50.4
  597. },
  598. "_anchorPoint": {
  599. "__type__": "cc.Vec2",
  600. "x": 0.5,
  601. "y": 0.5
  602. },
  603. "_id": ""
  604. },
  605. {
  606. "__type__": "cc.CompPrefabInfo",
  607. "fileId": "f9Z8GVSi1Ag42c4s42ila2"
  608. },
  609. {
  610. "__type__": "cc.Label",
  611. "_name": "",
  612. "_objFlags": 0,
  613. "__editorExtras__": {},
  614. "node": {
  615. "__id__": 16
  616. },
  617. "_enabled": true,
  618. "__prefab": {
  619. "__id__": 20
  620. },
  621. "_customMaterial": null,
  622. "_srcBlendFactor": 2,
  623. "_dstBlendFactor": 4,
  624. "_color": {
  625. "__type__": "cc.Color",
  626. "r": 255,
  627. "g": 255,
  628. "b": 255,
  629. "a": 255
  630. },
  631. "_string": "10元",
  632. "_horizontalAlign": 1,
  633. "_verticalAlign": 1,
  634. "_actualFontSize": 25,
  635. "_fontSize": 25,
  636. "_fontFamily": "Arial",
  637. "_lineHeight": 40,
  638. "_overflow": 0,
  639. "_enableWrapText": true,
  640. "_font": null,
  641. "_isSystemFontUsed": true,
  642. "_spacingX": 0,
  643. "_isItalic": false,
  644. "_isBold": true,
  645. "_isUnderline": false,
  646. "_underlineHeight": 2,
  647. "_cacheMode": 0,
  648. "_enableOutline": false,
  649. "_outlineColor": {
  650. "__type__": "cc.Color",
  651. "r": 0,
  652. "g": 0,
  653. "b": 0,
  654. "a": 255
  655. },
  656. "_outlineWidth": 2,
  657. "_enableShadow": false,
  658. "_shadowColor": {
  659. "__type__": "cc.Color",
  660. "r": 0,
  661. "g": 0,
  662. "b": 0,
  663. "a": 255
  664. },
  665. "_shadowOffset": {
  666. "__type__": "cc.Vec2",
  667. "x": 2,
  668. "y": 2
  669. },
  670. "_shadowBlur": 2,
  671. "_id": ""
  672. },
  673. {
  674. "__type__": "cc.CompPrefabInfo",
  675. "fileId": "a2Tl5g2z1Ag4QW/8sMVFF2"
  676. },
  677. {
  678. "__type__": "cc.PrefabInfo",
  679. "root": {
  680. "__id__": 1
  681. },
  682. "asset": {
  683. "__id__": 0
  684. },
  685. "fileId": "acbZQtma5FVL3cmfVRFwB9",
  686. "instance": null,
  687. "targetOverrides": null,
  688. "nestedPrefabInstanceRoots": null
  689. },
  690. {
  691. "__type__": "cc.Node",
  692. "_name": "btn_continue",
  693. "_objFlags": 0,
  694. "__editorExtras__": {},
  695. "_parent": {
  696. "__id__": 9
  697. },
  698. "_children": [
  699. {
  700. "__id__": 23
  701. }
  702. ],
  703. "_active": true,
  704. "_components": [
  705. {
  706. "__id__": 29
  707. },
  708. {
  709. "__id__": 31
  710. },
  711. {
  712. "__id__": 33
  713. }
  714. ],
  715. "_prefab": {
  716. "__id__": 35
  717. },
  718. "_lpos": {
  719. "__type__": "cc.Vec3",
  720. "x": 0,
  721. "y": -476.978,
  722. "z": 0
  723. },
  724. "_lrot": {
  725. "__type__": "cc.Quat",
  726. "x": 0,
  727. "y": 0,
  728. "z": 0,
  729. "w": 1
  730. },
  731. "_lscale": {
  732. "__type__": "cc.Vec3",
  733. "x": 1,
  734. "y": 1,
  735. "z": 1
  736. },
  737. "_mobility": 0,
  738. "_layer": 33554432,
  739. "_euler": {
  740. "__type__": "cc.Vec3",
  741. "x": 0,
  742. "y": 0,
  743. "z": 0
  744. },
  745. "_id": ""
  746. },
  747. {
  748. "__type__": "cc.Node",
  749. "_name": "Label",
  750. "_objFlags": 512,
  751. "__editorExtras__": {},
  752. "_parent": {
  753. "__id__": 22
  754. },
  755. "_children": [],
  756. "_active": true,
  757. "_components": [
  758. {
  759. "__id__": 24
  760. },
  761. {
  762. "__id__": 26
  763. }
  764. ],
  765. "_prefab": {
  766. "__id__": 28
  767. },
  768. "_lpos": {
  769. "__type__": "cc.Vec3",
  770. "x": 0,
  771. "y": 5.601,
  772. "z": 0
  773. },
  774. "_lrot": {
  775. "__type__": "cc.Quat",
  776. "x": 0,
  777. "y": 0,
  778. "z": 0,
  779. "w": 1
  780. },
  781. "_lscale": {
  782. "__type__": "cc.Vec3",
  783. "x": 1,
  784. "y": 1,
  785. "z": 1
  786. },
  787. "_mobility": 0,
  788. "_layer": 33554432,
  789. "_euler": {
  790. "__type__": "cc.Vec3",
  791. "x": 0,
  792. "y": 0,
  793. "z": 0
  794. },
  795. "_id": ""
  796. },
  797. {
  798. "__type__": "cc.UITransform",
  799. "_name": "",
  800. "_objFlags": 0,
  801. "__editorExtras__": {},
  802. "node": {
  803. "__id__": 23
  804. },
  805. "_enabled": true,
  806. "__prefab": {
  807. "__id__": 25
  808. },
  809. "_contentSize": {
  810. "__type__": "cc.Size",
  811. "width": 100,
  812. "height": 40
  813. },
  814. "_anchorPoint": {
  815. "__type__": "cc.Vec2",
  816. "x": 0.5,
  817. "y": 0.5
  818. },
  819. "_id": ""
  820. },
  821. {
  822. "__type__": "cc.CompPrefabInfo",
  823. "fileId": "4atLPvVwdE2Ijd18tOwSpQ"
  824. },
  825. {
  826. "__type__": "cc.Label",
  827. "_name": "",
  828. "_objFlags": 0,
  829. "__editorExtras__": {},
  830. "node": {
  831. "__id__": 23
  832. },
  833. "_enabled": true,
  834. "__prefab": {
  835. "__id__": 27
  836. },
  837. "_customMaterial": null,
  838. "_srcBlendFactor": 2,
  839. "_dstBlendFactor": 4,
  840. "_color": {
  841. "__type__": "cc.Color",
  842. "r": 255,
  843. "g": 255,
  844. "b": 255,
  845. "a": 255
  846. },
  847. "_string": "继续赚钱",
  848. "_horizontalAlign": 1,
  849. "_verticalAlign": 1,
  850. "_actualFontSize": 20,
  851. "_fontSize": 20,
  852. "_fontFamily": "Arial",
  853. "_lineHeight": 40,
  854. "_overflow": 1,
  855. "_enableWrapText": false,
  856. "_font": null,
  857. "_isSystemFontUsed": true,
  858. "_spacingX": 0,
  859. "_isItalic": false,
  860. "_isBold": true,
  861. "_isUnderline": false,
  862. "_underlineHeight": 2,
  863. "_cacheMode": 0,
  864. "_enableOutline": false,
  865. "_outlineColor": {
  866. "__type__": "cc.Color",
  867. "r": 0,
  868. "g": 0,
  869. "b": 0,
  870. "a": 255
  871. },
  872. "_outlineWidth": 2,
  873. "_enableShadow": false,
  874. "_shadowColor": {
  875. "__type__": "cc.Color",
  876. "r": 0,
  877. "g": 0,
  878. "b": 0,
  879. "a": 255
  880. },
  881. "_shadowOffset": {
  882. "__type__": "cc.Vec2",
  883. "x": 2,
  884. "y": 2
  885. },
  886. "_shadowBlur": 2,
  887. "_id": ""
  888. },
  889. {
  890. "__type__": "cc.CompPrefabInfo",
  891. "fileId": "72vNap/KBA0q5btZbP4PxO"
  892. },
  893. {
  894. "__type__": "cc.PrefabInfo",
  895. "root": {
  896. "__id__": 1
  897. },
  898. "asset": {
  899. "__id__": 0
  900. },
  901. "fileId": "e4io/FUX9H+oih0p1uNEFT",
  902. "instance": null,
  903. "targetOverrides": null,
  904. "nestedPrefabInstanceRoots": null
  905. },
  906. {
  907. "__type__": "cc.UITransform",
  908. "_name": "",
  909. "_objFlags": 0,
  910. "__editorExtras__": {},
  911. "node": {
  912. "__id__": 22
  913. },
  914. "_enabled": true,
  915. "__prefab": {
  916. "__id__": 30
  917. },
  918. "_contentSize": {
  919. "__type__": "cc.Size",
  920. "width": 200,
  921. "height": 80
  922. },
  923. "_anchorPoint": {
  924. "__type__": "cc.Vec2",
  925. "x": 0.5,
  926. "y": 0.5
  927. },
  928. "_id": ""
  929. },
  930. {
  931. "__type__": "cc.CompPrefabInfo",
  932. "fileId": "81Uy/6zQlJk4MoQQe+5guq"
  933. },
  934. {
  935. "__type__": "cc.Sprite",
  936. "_name": "",
  937. "_objFlags": 0,
  938. "__editorExtras__": {},
  939. "node": {
  940. "__id__": 22
  941. },
  942. "_enabled": true,
  943. "__prefab": {
  944. "__id__": 32
  945. },
  946. "_customMaterial": null,
  947. "_srcBlendFactor": 2,
  948. "_dstBlendFactor": 4,
  949. "_color": {
  950. "__type__": "cc.Color",
  951. "r": 255,
  952. "g": 255,
  953. "b": 255,
  954. "a": 255
  955. },
  956. "_spriteFrame": {
  957. "__uuid__": "b9bfe0ba-07d0-44f2-830e-9c3bca5c517a@f9941",
  958. "__expectedType__": "cc.SpriteFrame"
  959. },
  960. "_type": 1,
  961. "_fillType": 0,
  962. "_sizeMode": 0,
  963. "_fillCenter": {
  964. "__type__": "cc.Vec2",
  965. "x": 0,
  966. "y": 0
  967. },
  968. "_fillStart": 0,
  969. "_fillRange": 0,
  970. "_isTrimmedMode": true,
  971. "_useGrayscale": false,
  972. "_atlas": null,
  973. "_id": ""
  974. },
  975. {
  976. "__type__": "cc.CompPrefabInfo",
  977. "fileId": "5aWH+XirBKS6ZLfk+tINgv"
  978. },
  979. {
  980. "__type__": "cc.Button",
  981. "_name": "",
  982. "_objFlags": 0,
  983. "__editorExtras__": {},
  984. "node": {
  985. "__id__": 22
  986. },
  987. "_enabled": true,
  988. "__prefab": {
  989. "__id__": 34
  990. },
  991. "clickEvents": [],
  992. "_interactable": true,
  993. "_transition": 3,
  994. "_normalColor": {
  995. "__type__": "cc.Color",
  996. "r": 214,
  997. "g": 214,
  998. "b": 214,
  999. "a": 255
  1000. },
  1001. "_hoverColor": {
  1002. "__type__": "cc.Color",
  1003. "r": 211,
  1004. "g": 211,
  1005. "b": 211,
  1006. "a": 255
  1007. },
  1008. "_pressedColor": {
  1009. "__type__": "cc.Color",
  1010. "r": 255,
  1011. "g": 255,
  1012. "b": 255,
  1013. "a": 255
  1014. },
  1015. "_disabledColor": {
  1016. "__type__": "cc.Color",
  1017. "r": 124,
  1018. "g": 124,
  1019. "b": 124,
  1020. "a": 255
  1021. },
  1022. "_normalSprite": {
  1023. "__uuid__": "b9bfe0ba-07d0-44f2-830e-9c3bca5c517a@f9941",
  1024. "__expectedType__": "cc.SpriteFrame"
  1025. },
  1026. "_hoverSprite": null,
  1027. "_pressedSprite": null,
  1028. "_disabledSprite": null,
  1029. "_duration": 0.1,
  1030. "_zoomScale": 1.2,
  1031. "_target": {
  1032. "__id__": 22
  1033. },
  1034. "_id": ""
  1035. },
  1036. {
  1037. "__type__": "cc.CompPrefabInfo",
  1038. "fileId": "11a4Zn0eNMvKFyrX545lfQ"
  1039. },
  1040. {
  1041. "__type__": "cc.PrefabInfo",
  1042. "root": {
  1043. "__id__": 1
  1044. },
  1045. "asset": {
  1046. "__id__": 0
  1047. },
  1048. "fileId": "87RFFBYttJko8Ck0H9acjm",
  1049. "instance": null,
  1050. "targetOverrides": null,
  1051. "nestedPrefabInstanceRoots": null
  1052. },
  1053. {
  1054. "__type__": "cc.Node",
  1055. "_name": "sp_icon1",
  1056. "_objFlags": 0,
  1057. "__editorExtras__": {},
  1058. "_parent": {
  1059. "__id__": 9
  1060. },
  1061. "_children": [],
  1062. "_active": true,
  1063. "_components": [
  1064. {
  1065. "__id__": 37
  1066. },
  1067. {
  1068. "__id__": 39
  1069. }
  1070. ],
  1071. "_prefab": {
  1072. "__id__": 41
  1073. },
  1074. "_lpos": {
  1075. "__type__": "cc.Vec3",
  1076. "x": -162.617,
  1077. "y": -167.846,
  1078. "z": 0
  1079. },
  1080. "_lrot": {
  1081. "__type__": "cc.Quat",
  1082. "x": 0,
  1083. "y": 0,
  1084. "z": 0,
  1085. "w": 1
  1086. },
  1087. "_lscale": {
  1088. "__type__": "cc.Vec3",
  1089. "x": 1,
  1090. "y": 1,
  1091. "z": 1
  1092. },
  1093. "_mobility": 0,
  1094. "_layer": 33554432,
  1095. "_euler": {
  1096. "__type__": "cc.Vec3",
  1097. "x": 0,
  1098. "y": 0,
  1099. "z": 0
  1100. },
  1101. "_id": ""
  1102. },
  1103. {
  1104. "__type__": "cc.UITransform",
  1105. "_name": "",
  1106. "_objFlags": 0,
  1107. "__editorExtras__": {},
  1108. "node": {
  1109. "__id__": 36
  1110. },
  1111. "_enabled": true,
  1112. "__prefab": {
  1113. "__id__": 38
  1114. },
  1115. "_contentSize": {
  1116. "__type__": "cc.Size",
  1117. "width": 39,
  1118. "height": 37
  1119. },
  1120. "_anchorPoint": {
  1121. "__type__": "cc.Vec2",
  1122. "x": 0.5,
  1123. "y": 0.5
  1124. },
  1125. "_id": ""
  1126. },
  1127. {
  1128. "__type__": "cc.CompPrefabInfo",
  1129. "fileId": "351fLHEqBPVIbTfn3fCmmM"
  1130. },
  1131. {
  1132. "__type__": "cc.Sprite",
  1133. "_name": "",
  1134. "_objFlags": 0,
  1135. "__editorExtras__": {},
  1136. "node": {
  1137. "__id__": 36
  1138. },
  1139. "_enabled": true,
  1140. "__prefab": {
  1141. "__id__": 40
  1142. },
  1143. "_customMaterial": null,
  1144. "_srcBlendFactor": 2,
  1145. "_dstBlendFactor": 4,
  1146. "_color": {
  1147. "__type__": "cc.Color",
  1148. "r": 255,
  1149. "g": 255,
  1150. "b": 255,
  1151. "a": 255
  1152. },
  1153. "_spriteFrame": {
  1154. "__uuid__": "92d3a6cc-9e80-4cd4-a30e-7d346e354c87@f9941",
  1155. "__expectedType__": "cc.SpriteFrame"
  1156. },
  1157. "_type": 0,
  1158. "_fillType": 0,
  1159. "_sizeMode": 1,
  1160. "_fillCenter": {
  1161. "__type__": "cc.Vec2",
  1162. "x": 0,
  1163. "y": 0
  1164. },
  1165. "_fillStart": 0,
  1166. "_fillRange": 0,
  1167. "_isTrimmedMode": true,
  1168. "_useGrayscale": false,
  1169. "_atlas": null,
  1170. "_id": ""
  1171. },
  1172. {
  1173. "__type__": "cc.CompPrefabInfo",
  1174. "fileId": "a6Veu0zUpIVZWl/WKEGUP+"
  1175. },
  1176. {
  1177. "__type__": "cc.PrefabInfo",
  1178. "root": {
  1179. "__id__": 1
  1180. },
  1181. "asset": {
  1182. "__id__": 0
  1183. },
  1184. "fileId": "c7yNhRpMRGOLUmmiRue+5G",
  1185. "instance": null,
  1186. "targetOverrides": null,
  1187. "nestedPrefabInstanceRoots": null
  1188. },
  1189. {
  1190. "__type__": "cc.Node",
  1191. "_name": "lab_stateTitle",
  1192. "_objFlags": 0,
  1193. "__editorExtras__": {},
  1194. "_parent": {
  1195. "__id__": 9
  1196. },
  1197. "_children": [],
  1198. "_active": true,
  1199. "_components": [
  1200. {
  1201. "__id__": 43
  1202. },
  1203. {
  1204. "__id__": 45
  1205. }
  1206. ],
  1207. "_prefab": {
  1208. "__id__": 47
  1209. },
  1210. "_lpos": {
  1211. "__type__": "cc.Vec3",
  1212. "x": -138.146,
  1213. "y": -120.482,
  1214. "z": 0
  1215. },
  1216. "_lrot": {
  1217. "__type__": "cc.Quat",
  1218. "x": 0,
  1219. "y": 0,
  1220. "z": 0,
  1221. "w": 1
  1222. },
  1223. "_lscale": {
  1224. "__type__": "cc.Vec3",
  1225. "x": 1,
  1226. "y": 1,
  1227. "z": 1
  1228. },
  1229. "_mobility": 0,
  1230. "_layer": 33554432,
  1231. "_euler": {
  1232. "__type__": "cc.Vec3",
  1233. "x": 0,
  1234. "y": 0,
  1235. "z": 0
  1236. },
  1237. "_id": ""
  1238. },
  1239. {
  1240. "__type__": "cc.UITransform",
  1241. "_name": "",
  1242. "_objFlags": 0,
  1243. "__editorExtras__": {},
  1244. "node": {
  1245. "__id__": 42
  1246. },
  1247. "_enabled": true,
  1248. "__prefab": {
  1249. "__id__": 44
  1250. },
  1251. "_contentSize": {
  1252. "__type__": "cc.Size",
  1253. "width": 100,
  1254. "height": 50.4
  1255. },
  1256. "_anchorPoint": {
  1257. "__type__": "cc.Vec2",
  1258. "x": 0.5,
  1259. "y": 0.5
  1260. },
  1261. "_id": ""
  1262. },
  1263. {
  1264. "__type__": "cc.CompPrefabInfo",
  1265. "fileId": "f7YzGIJMVKNLEp7yQMD8iF"
  1266. },
  1267. {
  1268. "__type__": "cc.Label",
  1269. "_name": "",
  1270. "_objFlags": 0,
  1271. "__editorExtras__": {},
  1272. "node": {
  1273. "__id__": 42
  1274. },
  1275. "_enabled": true,
  1276. "__prefab": {
  1277. "__id__": 46
  1278. },
  1279. "_customMaterial": null,
  1280. "_srcBlendFactor": 2,
  1281. "_dstBlendFactor": 4,
  1282. "_color": {
  1283. "__type__": "cc.Color",
  1284. "r": 160,
  1285. "g": 156,
  1286. "b": 159,
  1287. "a": 255
  1288. },
  1289. "_string": "当前状态:",
  1290. "_horizontalAlign": 1,
  1291. "_verticalAlign": 1,
  1292. "_actualFontSize": 20,
  1293. "_fontSize": 20,
  1294. "_fontFamily": "Arial",
  1295. "_lineHeight": 40,
  1296. "_overflow": 0,
  1297. "_enableWrapText": true,
  1298. "_font": null,
  1299. "_isSystemFontUsed": true,
  1300. "_spacingX": 0,
  1301. "_isItalic": false,
  1302. "_isBold": false,
  1303. "_isUnderline": false,
  1304. "_underlineHeight": 2,
  1305. "_cacheMode": 0,
  1306. "_enableOutline": false,
  1307. "_outlineColor": {
  1308. "__type__": "cc.Color",
  1309. "r": 0,
  1310. "g": 0,
  1311. "b": 0,
  1312. "a": 255
  1313. },
  1314. "_outlineWidth": 2,
  1315. "_enableShadow": false,
  1316. "_shadowColor": {
  1317. "__type__": "cc.Color",
  1318. "r": 0,
  1319. "g": 0,
  1320. "b": 0,
  1321. "a": 255
  1322. },
  1323. "_shadowOffset": {
  1324. "__type__": "cc.Vec2",
  1325. "x": 2,
  1326. "y": 2
  1327. },
  1328. "_shadowBlur": 2,
  1329. "_id": ""
  1330. },
  1331. {
  1332. "__type__": "cc.CompPrefabInfo",
  1333. "fileId": "768URz79ZPOIM7L7w+Kzo7"
  1334. },
  1335. {
  1336. "__type__": "cc.PrefabInfo",
  1337. "root": {
  1338. "__id__": 1
  1339. },
  1340. "asset": {
  1341. "__id__": 0
  1342. },
  1343. "fileId": "cd/vBbG05GBa56cdpEYkE9",
  1344. "instance": null,
  1345. "targetOverrides": null,
  1346. "nestedPrefabInstanceRoots": null
  1347. },
  1348. {
  1349. "__type__": "cc.Node",
  1350. "_name": "lab_state1",
  1351. "_objFlags": 0,
  1352. "__editorExtras__": {},
  1353. "_parent": {
  1354. "__id__": 9
  1355. },
  1356. "_children": [],
  1357. "_active": true,
  1358. "_components": [
  1359. {
  1360. "__id__": 49
  1361. },
  1362. {
  1363. "__id__": 51
  1364. }
  1365. ],
  1366. "_prefab": {
  1367. "__id__": 53
  1368. },
  1369. "_lpos": {
  1370. "__type__": "cc.Vec3",
  1371. "x": -66.31,
  1372. "y": -167.846,
  1373. "z": 0
  1374. },
  1375. "_lrot": {
  1376. "__type__": "cc.Quat",
  1377. "x": 0,
  1378. "y": 0,
  1379. "z": 0,
  1380. "w": 1
  1381. },
  1382. "_lscale": {
  1383. "__type__": "cc.Vec3",
  1384. "x": 1,
  1385. "y": 1,
  1386. "z": 1
  1387. },
  1388. "_mobility": 0,
  1389. "_layer": 33554432,
  1390. "_euler": {
  1391. "__type__": "cc.Vec3",
  1392. "x": 0,
  1393. "y": 0,
  1394. "z": 0
  1395. },
  1396. "_id": ""
  1397. },
  1398. {
  1399. "__type__": "cc.UITransform",
  1400. "_name": "",
  1401. "_objFlags": 0,
  1402. "__editorExtras__": {},
  1403. "node": {
  1404. "__id__": 48
  1405. },
  1406. "_enabled": true,
  1407. "__prefab": {
  1408. "__id__": 50
  1409. },
  1410. "_contentSize": {
  1411. "__type__": "cc.Size",
  1412. "width": 120,
  1413. "height": 50.4
  1414. },
  1415. "_anchorPoint": {
  1416. "__type__": "cc.Vec2",
  1417. "x": 0.5,
  1418. "y": 0.5
  1419. },
  1420. "_id": ""
  1421. },
  1422. {
  1423. "__type__": "cc.CompPrefabInfo",
  1424. "fileId": "79ROtSCQ9DyIt7yOKW92RS"
  1425. },
  1426. {
  1427. "__type__": "cc.Label",
  1428. "_name": "",
  1429. "_objFlags": 0,
  1430. "__editorExtras__": {},
  1431. "node": {
  1432. "__id__": 48
  1433. },
  1434. "_enabled": true,
  1435. "__prefab": {
  1436. "__id__": 52
  1437. },
  1438. "_customMaterial": null,
  1439. "_srcBlendFactor": 2,
  1440. "_dstBlendFactor": 4,
  1441. "_color": {
  1442. "__type__": "cc.Color",
  1443. "r": 160,
  1444. "g": 156,
  1445. "b": 159,
  1446. "a": 255
  1447. },
  1448. "_string": "发起提现申请",
  1449. "_horizontalAlign": 1,
  1450. "_verticalAlign": 1,
  1451. "_actualFontSize": 20,
  1452. "_fontSize": 20,
  1453. "_fontFamily": "Arial",
  1454. "_lineHeight": 40,
  1455. "_overflow": 0,
  1456. "_enableWrapText": true,
  1457. "_font": null,
  1458. "_isSystemFontUsed": true,
  1459. "_spacingX": 0,
  1460. "_isItalic": false,
  1461. "_isBold": false,
  1462. "_isUnderline": false,
  1463. "_underlineHeight": 2,
  1464. "_cacheMode": 0,
  1465. "_enableOutline": false,
  1466. "_outlineColor": {
  1467. "__type__": "cc.Color",
  1468. "r": 0,
  1469. "g": 0,
  1470. "b": 0,
  1471. "a": 255
  1472. },
  1473. "_outlineWidth": 2,
  1474. "_enableShadow": false,
  1475. "_shadowColor": {
  1476. "__type__": "cc.Color",
  1477. "r": 0,
  1478. "g": 0,
  1479. "b": 0,
  1480. "a": 255
  1481. },
  1482. "_shadowOffset": {
  1483. "__type__": "cc.Vec2",
  1484. "x": 2,
  1485. "y": 2
  1486. },
  1487. "_shadowBlur": 2,
  1488. "_id": ""
  1489. },
  1490. {
  1491. "__type__": "cc.CompPrefabInfo",
  1492. "fileId": "3bFx/A3BFG7INkIeR2MKMq"
  1493. },
  1494. {
  1495. "__type__": "cc.PrefabInfo",
  1496. "root": {
  1497. "__id__": 1
  1498. },
  1499. "asset": {
  1500. "__id__": 0
  1501. },
  1502. "fileId": "33vCUmTqhEDZ63YrwTIIq1",
  1503. "instance": null,
  1504. "targetOverrides": null,
  1505. "nestedPrefabInstanceRoots": null
  1506. },
  1507. {
  1508. "__type__": "cc.Node",
  1509. "_name": "lab_state2",
  1510. "_objFlags": 0,
  1511. "__editorExtras__": {},
  1512. "_parent": {
  1513. "__id__": 9
  1514. },
  1515. "_children": [],
  1516. "_active": true,
  1517. "_components": [
  1518. {
  1519. "__id__": 55
  1520. },
  1521. {
  1522. "__id__": 57
  1523. }
  1524. ],
  1525. "_prefab": {
  1526. "__id__": 59
  1527. },
  1528. "_lpos": {
  1529. "__type__": "cc.Vec3",
  1530. "x": -66.31,
  1531. "y": -231.586,
  1532. "z": 0
  1533. },
  1534. "_lrot": {
  1535. "__type__": "cc.Quat",
  1536. "x": 0,
  1537. "y": 0,
  1538. "z": 0,
  1539. "w": 1
  1540. },
  1541. "_lscale": {
  1542. "__type__": "cc.Vec3",
  1543. "x": 1,
  1544. "y": 1,
  1545. "z": 1
  1546. },
  1547. "_mobility": 0,
  1548. "_layer": 33554432,
  1549. "_euler": {
  1550. "__type__": "cc.Vec3",
  1551. "x": 0,
  1552. "y": 0,
  1553. "z": 0
  1554. },
  1555. "_id": ""
  1556. },
  1557. {
  1558. "__type__": "cc.UITransform",
  1559. "_name": "",
  1560. "_objFlags": 0,
  1561. "__editorExtras__": {},
  1562. "node": {
  1563. "__id__": 54
  1564. },
  1565. "_enabled": true,
  1566. "__prefab": {
  1567. "__id__": 56
  1568. },
  1569. "_contentSize": {
  1570. "__type__": "cc.Size",
  1571. "width": 120,
  1572. "height": 50.4
  1573. },
  1574. "_anchorPoint": {
  1575. "__type__": "cc.Vec2",
  1576. "x": 0.5,
  1577. "y": 0.5
  1578. },
  1579. "_id": ""
  1580. },
  1581. {
  1582. "__type__": "cc.CompPrefabInfo",
  1583. "fileId": "cayHz8N8NFzpF79oX+wg9W"
  1584. },
  1585. {
  1586. "__type__": "cc.Label",
  1587. "_name": "",
  1588. "_objFlags": 0,
  1589. "__editorExtras__": {},
  1590. "node": {
  1591. "__id__": 54
  1592. },
  1593. "_enabled": true,
  1594. "__prefab": {
  1595. "__id__": 58
  1596. },
  1597. "_customMaterial": null,
  1598. "_srcBlendFactor": 2,
  1599. "_dstBlendFactor": 4,
  1600. "_color": {
  1601. "__type__": "cc.Color",
  1602. "r": 160,
  1603. "g": 156,
  1604. "b": 159,
  1605. "a": 255
  1606. },
  1607. "_string": "确认用户信息",
  1608. "_horizontalAlign": 1,
  1609. "_verticalAlign": 1,
  1610. "_actualFontSize": 20,
  1611. "_fontSize": 20,
  1612. "_fontFamily": "Arial",
  1613. "_lineHeight": 40,
  1614. "_overflow": 0,
  1615. "_enableWrapText": true,
  1616. "_font": null,
  1617. "_isSystemFontUsed": true,
  1618. "_spacingX": 0,
  1619. "_isItalic": false,
  1620. "_isBold": false,
  1621. "_isUnderline": false,
  1622. "_underlineHeight": 2,
  1623. "_cacheMode": 0,
  1624. "_enableOutline": false,
  1625. "_outlineColor": {
  1626. "__type__": "cc.Color",
  1627. "r": 0,
  1628. "g": 0,
  1629. "b": 0,
  1630. "a": 255
  1631. },
  1632. "_outlineWidth": 2,
  1633. "_enableShadow": false,
  1634. "_shadowColor": {
  1635. "__type__": "cc.Color",
  1636. "r": 0,
  1637. "g": 0,
  1638. "b": 0,
  1639. "a": 255
  1640. },
  1641. "_shadowOffset": {
  1642. "__type__": "cc.Vec2",
  1643. "x": 2,
  1644. "y": 2
  1645. },
  1646. "_shadowBlur": 2,
  1647. "_id": ""
  1648. },
  1649. {
  1650. "__type__": "cc.CompPrefabInfo",
  1651. "fileId": "6dGCAQmAdHca7qumDGI8wz"
  1652. },
  1653. {
  1654. "__type__": "cc.PrefabInfo",
  1655. "root": {
  1656. "__id__": 1
  1657. },
  1658. "asset": {
  1659. "__id__": 0
  1660. },
  1661. "fileId": "08AxetTaZJ16GN5YfccX3A",
  1662. "instance": null,
  1663. "targetOverrides": null,
  1664. "nestedPrefabInstanceRoots": null
  1665. },
  1666. {
  1667. "__type__": "cc.Node",
  1668. "_name": "lab_state3",
  1669. "_objFlags": 0,
  1670. "__editorExtras__": {},
  1671. "_parent": {
  1672. "__id__": 9
  1673. },
  1674. "_children": [],
  1675. "_active": true,
  1676. "_components": [
  1677. {
  1678. "__id__": 61
  1679. },
  1680. {
  1681. "__id__": 63
  1682. }
  1683. ],
  1684. "_prefab": {
  1685. "__id__": 65
  1686. },
  1687. "_lpos": {
  1688. "__type__": "cc.Vec3",
  1689. "x": -46.906,
  1690. "y": -291.492,
  1691. "z": 0
  1692. },
  1693. "_lrot": {
  1694. "__type__": "cc.Quat",
  1695. "x": 0,
  1696. "y": 0,
  1697. "z": 0,
  1698. "w": 1
  1699. },
  1700. "_lscale": {
  1701. "__type__": "cc.Vec3",
  1702. "x": 1,
  1703. "y": 1,
  1704. "z": 1
  1705. },
  1706. "_mobility": 0,
  1707. "_layer": 33554432,
  1708. "_euler": {
  1709. "__type__": "cc.Vec3",
  1710. "x": 0,
  1711. "y": 0,
  1712. "z": 0
  1713. },
  1714. "_id": ""
  1715. },
  1716. {
  1717. "__type__": "cc.UITransform",
  1718. "_name": "",
  1719. "_objFlags": 0,
  1720. "__editorExtras__": {},
  1721. "node": {
  1722. "__id__": 60
  1723. },
  1724. "_enabled": true,
  1725. "__prefab": {
  1726. "__id__": 62
  1727. },
  1728. "_contentSize": {
  1729. "__type__": "cc.Size",
  1730. "width": 158.92578125,
  1731. "height": 50.4
  1732. },
  1733. "_anchorPoint": {
  1734. "__type__": "cc.Vec2",
  1735. "x": 0.5,
  1736. "y": 0.5
  1737. },
  1738. "_id": ""
  1739. },
  1740. {
  1741. "__type__": "cc.CompPrefabInfo",
  1742. "fileId": "a8Bkkjre9GDokd8KDWzl7m"
  1743. },
  1744. {
  1745. "__type__": "cc.Label",
  1746. "_name": "",
  1747. "_objFlags": 0,
  1748. "__editorExtras__": {},
  1749. "node": {
  1750. "__id__": 60
  1751. },
  1752. "_enabled": true,
  1753. "__prefab": {
  1754. "__id__": 64
  1755. },
  1756. "_customMaterial": null,
  1757. "_srcBlendFactor": 2,
  1758. "_dstBlendFactor": 4,
  1759. "_color": {
  1760. "__type__": "cc.Color",
  1761. "r": 160,
  1762. "g": 156,
  1763. "b": 159,
  1764. "a": 255
  1765. },
  1766. "_string": "发起打款:0.10元",
  1767. "_horizontalAlign": 1,
  1768. "_verticalAlign": 1,
  1769. "_actualFontSize": 20,
  1770. "_fontSize": 20,
  1771. "_fontFamily": "Arial",
  1772. "_lineHeight": 40,
  1773. "_overflow": 0,
  1774. "_enableWrapText": true,
  1775. "_font": null,
  1776. "_isSystemFontUsed": true,
  1777. "_spacingX": 0,
  1778. "_isItalic": false,
  1779. "_isBold": false,
  1780. "_isUnderline": false,
  1781. "_underlineHeight": 2,
  1782. "_cacheMode": 0,
  1783. "_enableOutline": false,
  1784. "_outlineColor": {
  1785. "__type__": "cc.Color",
  1786. "r": 0,
  1787. "g": 0,
  1788. "b": 0,
  1789. "a": 255
  1790. },
  1791. "_outlineWidth": 2,
  1792. "_enableShadow": false,
  1793. "_shadowColor": {
  1794. "__type__": "cc.Color",
  1795. "r": 0,
  1796. "g": 0,
  1797. "b": 0,
  1798. "a": 255
  1799. },
  1800. "_shadowOffset": {
  1801. "__type__": "cc.Vec2",
  1802. "x": 2,
  1803. "y": 2
  1804. },
  1805. "_shadowBlur": 2,
  1806. "_id": ""
  1807. },
  1808. {
  1809. "__type__": "cc.CompPrefabInfo",
  1810. "fileId": "b5pFaL0PZKULOQSmqGDL5g"
  1811. },
  1812. {
  1813. "__type__": "cc.PrefabInfo",
  1814. "root": {
  1815. "__id__": 1
  1816. },
  1817. "asset": {
  1818. "__id__": 0
  1819. },
  1820. "fileId": "97tE+d9T1FGbUhe26XrzoY",
  1821. "instance": null,
  1822. "targetOverrides": null,
  1823. "nestedPrefabInstanceRoots": null
  1824. },
  1825. {
  1826. "__type__": "cc.Node",
  1827. "_name": "lab_state4",
  1828. "_objFlags": 0,
  1829. "__editorExtras__": {},
  1830. "_parent": {
  1831. "__id__": 9
  1832. },
  1833. "_children": [],
  1834. "_active": true,
  1835. "_components": [
  1836. {
  1837. "__id__": 67
  1838. },
  1839. {
  1840. "__id__": 69
  1841. }
  1842. ],
  1843. "_prefab": {
  1844. "__id__": 71
  1845. },
  1846. "_lpos": {
  1847. "__type__": "cc.Vec3",
  1848. "x": -13.831,
  1849. "y": -351.027,
  1850. "z": 0
  1851. },
  1852. "_lrot": {
  1853. "__type__": "cc.Quat",
  1854. "x": 0,
  1855. "y": 0,
  1856. "z": 0,
  1857. "w": 1
  1858. },
  1859. "_lscale": {
  1860. "__type__": "cc.Vec3",
  1861. "x": 1,
  1862. "y": 1,
  1863. "z": 1
  1864. },
  1865. "_mobility": 0,
  1866. "_layer": 33554432,
  1867. "_euler": {
  1868. "__type__": "cc.Vec3",
  1869. "x": 0,
  1870. "y": 0,
  1871. "z": 0
  1872. },
  1873. "_id": ""
  1874. },
  1875. {
  1876. "__type__": "cc.UITransform",
  1877. "_name": "",
  1878. "_objFlags": 0,
  1879. "__editorExtras__": {},
  1880. "node": {
  1881. "__id__": 66
  1882. },
  1883. "_enabled": true,
  1884. "__prefab": {
  1885. "__id__": 68
  1886. },
  1887. "_contentSize": {
  1888. "__type__": "cc.Size",
  1889. "width": 220,
  1890. "height": 50.4
  1891. },
  1892. "_anchorPoint": {
  1893. "__type__": "cc.Vec2",
  1894. "x": 0.5,
  1895. "y": 0.5
  1896. },
  1897. "_id": ""
  1898. },
  1899. {
  1900. "__type__": "cc.CompPrefabInfo",
  1901. "fileId": "e6uBnH1KZOLLVPgbS3OrHl"
  1902. },
  1903. {
  1904. "__type__": "cc.Label",
  1905. "_name": "",
  1906. "_objFlags": 0,
  1907. "__editorExtras__": {},
  1908. "node": {
  1909. "__id__": 66
  1910. },
  1911. "_enabled": true,
  1912. "__prefab": {
  1913. "__id__": 70
  1914. },
  1915. "_customMaterial": null,
  1916. "_srcBlendFactor": 2,
  1917. "_dstBlendFactor": 4,
  1918. "_color": {
  1919. "__type__": "cc.Color",
  1920. "r": 160,
  1921. "g": 156,
  1922. "b": 159,
  1923. "a": 255
  1924. },
  1925. "_string": "提现成功,到账微信零钱",
  1926. "_horizontalAlign": 1,
  1927. "_verticalAlign": 1,
  1928. "_actualFontSize": 20,
  1929. "_fontSize": 20,
  1930. "_fontFamily": "Arial",
  1931. "_lineHeight": 40,
  1932. "_overflow": 0,
  1933. "_enableWrapText": true,
  1934. "_font": null,
  1935. "_isSystemFontUsed": true,
  1936. "_spacingX": 0,
  1937. "_isItalic": false,
  1938. "_isBold": false,
  1939. "_isUnderline": false,
  1940. "_underlineHeight": 2,
  1941. "_cacheMode": 0,
  1942. "_enableOutline": false,
  1943. "_outlineColor": {
  1944. "__type__": "cc.Color",
  1945. "r": 0,
  1946. "g": 0,
  1947. "b": 0,
  1948. "a": 255
  1949. },
  1950. "_outlineWidth": 2,
  1951. "_enableShadow": false,
  1952. "_shadowColor": {
  1953. "__type__": "cc.Color",
  1954. "r": 0,
  1955. "g": 0,
  1956. "b": 0,
  1957. "a": 255
  1958. },
  1959. "_shadowOffset": {
  1960. "__type__": "cc.Vec2",
  1961. "x": 2,
  1962. "y": 2
  1963. },
  1964. "_shadowBlur": 2,
  1965. "_id": ""
  1966. },
  1967. {
  1968. "__type__": "cc.CompPrefabInfo",
  1969. "fileId": "090FWd9v1EwL9yUJNFSIVx"
  1970. },
  1971. {
  1972. "__type__": "cc.PrefabInfo",
  1973. "root": {
  1974. "__id__": 1
  1975. },
  1976. "asset": {
  1977. "__id__": 0
  1978. },
  1979. "fileId": "71tu3p+FdJ3JropnQOBJBe",
  1980. "instance": null,
  1981. "targetOverrides": null,
  1982. "nestedPrefabInstanceRoots": null
  1983. },
  1984. {
  1985. "__type__": "cc.Node",
  1986. "_name": "sp_icon2",
  1987. "_objFlags": 0,
  1988. "__editorExtras__": {},
  1989. "_parent": {
  1990. "__id__": 9
  1991. },
  1992. "_children": [],
  1993. "_active": true,
  1994. "_components": [
  1995. {
  1996. "__id__": 73
  1997. },
  1998. {
  1999. "__id__": 75
  2000. }
  2001. ],
  2002. "_prefab": {
  2003. "__id__": 77
  2004. },
  2005. "_lpos": {
  2006. "__type__": "cc.Vec3",
  2007. "x": -162.617,
  2008. "y": -230.864,
  2009. "z": 0
  2010. },
  2011. "_lrot": {
  2012. "__type__": "cc.Quat",
  2013. "x": 0,
  2014. "y": 0,
  2015. "z": 0,
  2016. "w": 1
  2017. },
  2018. "_lscale": {
  2019. "__type__": "cc.Vec3",
  2020. "x": 1,
  2021. "y": 1,
  2022. "z": 1
  2023. },
  2024. "_mobility": 0,
  2025. "_layer": 33554432,
  2026. "_euler": {
  2027. "__type__": "cc.Vec3",
  2028. "x": 0,
  2029. "y": 0,
  2030. "z": 0
  2031. },
  2032. "_id": ""
  2033. },
  2034. {
  2035. "__type__": "cc.UITransform",
  2036. "_name": "",
  2037. "_objFlags": 0,
  2038. "__editorExtras__": {},
  2039. "node": {
  2040. "__id__": 72
  2041. },
  2042. "_enabled": true,
  2043. "__prefab": {
  2044. "__id__": 74
  2045. },
  2046. "_contentSize": {
  2047. "__type__": "cc.Size",
  2048. "width": 39,
  2049. "height": 37
  2050. },
  2051. "_anchorPoint": {
  2052. "__type__": "cc.Vec2",
  2053. "x": 0.5,
  2054. "y": 0.5
  2055. },
  2056. "_id": ""
  2057. },
  2058. {
  2059. "__type__": "cc.CompPrefabInfo",
  2060. "fileId": "1aEB822RBDKK2+jooe8QAF"
  2061. },
  2062. {
  2063. "__type__": "cc.Sprite",
  2064. "_name": "",
  2065. "_objFlags": 0,
  2066. "__editorExtras__": {},
  2067. "node": {
  2068. "__id__": 72
  2069. },
  2070. "_enabled": true,
  2071. "__prefab": {
  2072. "__id__": 76
  2073. },
  2074. "_customMaterial": null,
  2075. "_srcBlendFactor": 2,
  2076. "_dstBlendFactor": 4,
  2077. "_color": {
  2078. "__type__": "cc.Color",
  2079. "r": 255,
  2080. "g": 255,
  2081. "b": 255,
  2082. "a": 255
  2083. },
  2084. "_spriteFrame": {
  2085. "__uuid__": "92d3a6cc-9e80-4cd4-a30e-7d346e354c87@f9941",
  2086. "__expectedType__": "cc.SpriteFrame"
  2087. },
  2088. "_type": 0,
  2089. "_fillType": 0,
  2090. "_sizeMode": 1,
  2091. "_fillCenter": {
  2092. "__type__": "cc.Vec2",
  2093. "x": 0,
  2094. "y": 0
  2095. },
  2096. "_fillStart": 0,
  2097. "_fillRange": 0,
  2098. "_isTrimmedMode": true,
  2099. "_useGrayscale": false,
  2100. "_atlas": null,
  2101. "_id": ""
  2102. },
  2103. {
  2104. "__type__": "cc.CompPrefabInfo",
  2105. "fileId": "8bASoLBXhIyLSuSy+yNtsB"
  2106. },
  2107. {
  2108. "__type__": "cc.PrefabInfo",
  2109. "root": {
  2110. "__id__": 1
  2111. },
  2112. "asset": {
  2113. "__id__": 0
  2114. },
  2115. "fileId": "15rbOU3ZtCgLXXZwyeU2AP",
  2116. "instance": null,
  2117. "targetOverrides": null,
  2118. "nestedPrefabInstanceRoots": null
  2119. },
  2120. {
  2121. "__type__": "cc.Node",
  2122. "_name": "sp_icon3",
  2123. "_objFlags": 0,
  2124. "__editorExtras__": {},
  2125. "_parent": {
  2126. "__id__": 9
  2127. },
  2128. "_children": [],
  2129. "_active": true,
  2130. "_components": [
  2131. {
  2132. "__id__": 79
  2133. },
  2134. {
  2135. "__id__": 81
  2136. }
  2137. ],
  2138. "_prefab": {
  2139. "__id__": 83
  2140. },
  2141. "_lpos": {
  2142. "__type__": "cc.Vec3",
  2143. "x": -162.617,
  2144. "y": -287.633,
  2145. "z": 0
  2146. },
  2147. "_lrot": {
  2148. "__type__": "cc.Quat",
  2149. "x": 0,
  2150. "y": 0,
  2151. "z": 0,
  2152. "w": 1
  2153. },
  2154. "_lscale": {
  2155. "__type__": "cc.Vec3",
  2156. "x": 1,
  2157. "y": 1,
  2158. "z": 1
  2159. },
  2160. "_mobility": 0,
  2161. "_layer": 33554432,
  2162. "_euler": {
  2163. "__type__": "cc.Vec3",
  2164. "x": 0,
  2165. "y": 0,
  2166. "z": 0
  2167. },
  2168. "_id": ""
  2169. },
  2170. {
  2171. "__type__": "cc.UITransform",
  2172. "_name": "",
  2173. "_objFlags": 0,
  2174. "__editorExtras__": {},
  2175. "node": {
  2176. "__id__": 78
  2177. },
  2178. "_enabled": true,
  2179. "__prefab": {
  2180. "__id__": 80
  2181. },
  2182. "_contentSize": {
  2183. "__type__": "cc.Size",
  2184. "width": 39,
  2185. "height": 37
  2186. },
  2187. "_anchorPoint": {
  2188. "__type__": "cc.Vec2",
  2189. "x": 0.5,
  2190. "y": 0.5
  2191. },
  2192. "_id": ""
  2193. },
  2194. {
  2195. "__type__": "cc.CompPrefabInfo",
  2196. "fileId": "0ekyVjQa5M5L5upXcON5pv"
  2197. },
  2198. {
  2199. "__type__": "cc.Sprite",
  2200. "_name": "",
  2201. "_objFlags": 0,
  2202. "__editorExtras__": {},
  2203. "node": {
  2204. "__id__": 78
  2205. },
  2206. "_enabled": true,
  2207. "__prefab": {
  2208. "__id__": 82
  2209. },
  2210. "_customMaterial": null,
  2211. "_srcBlendFactor": 2,
  2212. "_dstBlendFactor": 4,
  2213. "_color": {
  2214. "__type__": "cc.Color",
  2215. "r": 255,
  2216. "g": 255,
  2217. "b": 255,
  2218. "a": 255
  2219. },
  2220. "_spriteFrame": {
  2221. "__uuid__": "92d3a6cc-9e80-4cd4-a30e-7d346e354c87@f9941",
  2222. "__expectedType__": "cc.SpriteFrame"
  2223. },
  2224. "_type": 0,
  2225. "_fillType": 0,
  2226. "_sizeMode": 1,
  2227. "_fillCenter": {
  2228. "__type__": "cc.Vec2",
  2229. "x": 0,
  2230. "y": 0
  2231. },
  2232. "_fillStart": 0,
  2233. "_fillRange": 0,
  2234. "_isTrimmedMode": true,
  2235. "_useGrayscale": false,
  2236. "_atlas": null,
  2237. "_id": ""
  2238. },
  2239. {
  2240. "__type__": "cc.CompPrefabInfo",
  2241. "fileId": "70Gz3yo/lGHKyecGtSEzrU"
  2242. },
  2243. {
  2244. "__type__": "cc.PrefabInfo",
  2245. "root": {
  2246. "__id__": 1
  2247. },
  2248. "asset": {
  2249. "__id__": 0
  2250. },
  2251. "fileId": "30+84JrBdKRZirIKrd0Ue2",
  2252. "instance": null,
  2253. "targetOverrides": null,
  2254. "nestedPrefabInstanceRoots": null
  2255. },
  2256. {
  2257. "__type__": "cc.Node",
  2258. "_name": "sp_icon4",
  2259. "_objFlags": 0,
  2260. "__editorExtras__": {},
  2261. "_parent": {
  2262. "__id__": 9
  2263. },
  2264. "_children": [],
  2265. "_active": true,
  2266. "_components": [
  2267. {
  2268. "__id__": 85
  2269. },
  2270. {
  2271. "__id__": 87
  2272. }
  2273. ],
  2274. "_prefab": {
  2275. "__id__": 89
  2276. },
  2277. "_lpos": {
  2278. "__type__": "cc.Vec3",
  2279. "x": -162.617,
  2280. "y": -348.047,
  2281. "z": 0
  2282. },
  2283. "_lrot": {
  2284. "__type__": "cc.Quat",
  2285. "x": 0,
  2286. "y": 0,
  2287. "z": 0,
  2288. "w": 1
  2289. },
  2290. "_lscale": {
  2291. "__type__": "cc.Vec3",
  2292. "x": 1,
  2293. "y": 1,
  2294. "z": 1
  2295. },
  2296. "_mobility": 0,
  2297. "_layer": 33554432,
  2298. "_euler": {
  2299. "__type__": "cc.Vec3",
  2300. "x": 0,
  2301. "y": 0,
  2302. "z": 0
  2303. },
  2304. "_id": ""
  2305. },
  2306. {
  2307. "__type__": "cc.UITransform",
  2308. "_name": "",
  2309. "_objFlags": 0,
  2310. "__editorExtras__": {},
  2311. "node": {
  2312. "__id__": 84
  2313. },
  2314. "_enabled": true,
  2315. "__prefab": {
  2316. "__id__": 86
  2317. },
  2318. "_contentSize": {
  2319. "__type__": "cc.Size",
  2320. "width": 39,
  2321. "height": 37
  2322. },
  2323. "_anchorPoint": {
  2324. "__type__": "cc.Vec2",
  2325. "x": 0.5,
  2326. "y": 0.5
  2327. },
  2328. "_id": ""
  2329. },
  2330. {
  2331. "__type__": "cc.CompPrefabInfo",
  2332. "fileId": "93/u/+/MBHt6uV3S+NaM7e"
  2333. },
  2334. {
  2335. "__type__": "cc.Sprite",
  2336. "_name": "",
  2337. "_objFlags": 0,
  2338. "__editorExtras__": {},
  2339. "node": {
  2340. "__id__": 84
  2341. },
  2342. "_enabled": true,
  2343. "__prefab": {
  2344. "__id__": 88
  2345. },
  2346. "_customMaterial": null,
  2347. "_srcBlendFactor": 2,
  2348. "_dstBlendFactor": 4,
  2349. "_color": {
  2350. "__type__": "cc.Color",
  2351. "r": 255,
  2352. "g": 255,
  2353. "b": 255,
  2354. "a": 255
  2355. },
  2356. "_spriteFrame": {
  2357. "__uuid__": "92d3a6cc-9e80-4cd4-a30e-7d346e354c87@f9941",
  2358. "__expectedType__": "cc.SpriteFrame"
  2359. },
  2360. "_type": 0,
  2361. "_fillType": 0,
  2362. "_sizeMode": 1,
  2363. "_fillCenter": {
  2364. "__type__": "cc.Vec2",
  2365. "x": 0,
  2366. "y": 0
  2367. },
  2368. "_fillStart": 0,
  2369. "_fillRange": 0,
  2370. "_isTrimmedMode": true,
  2371. "_useGrayscale": false,
  2372. "_atlas": null,
  2373. "_id": ""
  2374. },
  2375. {
  2376. "__type__": "cc.CompPrefabInfo",
  2377. "fileId": "c7VwhwbvBCNr/oBWAKNlmc"
  2378. },
  2379. {
  2380. "__type__": "cc.PrefabInfo",
  2381. "root": {
  2382. "__id__": 1
  2383. },
  2384. "asset": {
  2385. "__id__": 0
  2386. },
  2387. "fileId": "8cCj9416JI5rz9PqCA1euL",
  2388. "instance": null,
  2389. "targetOverrides": null,
  2390. "nestedPrefabInstanceRoots": null
  2391. },
  2392. {
  2393. "__type__": "cc.UITransform",
  2394. "_name": "",
  2395. "_objFlags": 0,
  2396. "__editorExtras__": {},
  2397. "node": {
  2398. "__id__": 9
  2399. },
  2400. "_enabled": true,
  2401. "__prefab": {
  2402. "__id__": 91
  2403. },
  2404. "_contentSize": {
  2405. "__type__": "cc.Size",
  2406. "width": 45,
  2407. "height": 47
  2408. },
  2409. "_anchorPoint": {
  2410. "__type__": "cc.Vec2",
  2411. "x": 0.5,
  2412. "y": 0.5
  2413. },
  2414. "_id": ""
  2415. },
  2416. {
  2417. "__type__": "cc.CompPrefabInfo",
  2418. "fileId": "dbRF5YcGtG7rCg0pCdC4IL"
  2419. },
  2420. {
  2421. "__type__": "cc.Sprite",
  2422. "_name": "",
  2423. "_objFlags": 0,
  2424. "__editorExtras__": {},
  2425. "node": {
  2426. "__id__": 9
  2427. },
  2428. "_enabled": true,
  2429. "__prefab": {
  2430. "__id__": 93
  2431. },
  2432. "_customMaterial": null,
  2433. "_srcBlendFactor": 2,
  2434. "_dstBlendFactor": 4,
  2435. "_color": {
  2436. "__type__": "cc.Color",
  2437. "r": 255,
  2438. "g": 255,
  2439. "b": 255,
  2440. "a": 255
  2441. },
  2442. "_spriteFrame": {
  2443. "__uuid__": "851b0014-569f-4d9d-a6be-0d0f4d4b0d29@f9941",
  2444. "__expectedType__": "cc.SpriteFrame"
  2445. },
  2446. "_type": 0,
  2447. "_fillType": 0,
  2448. "_sizeMode": 1,
  2449. "_fillCenter": {
  2450. "__type__": "cc.Vec2",
  2451. "x": 0,
  2452. "y": 0
  2453. },
  2454. "_fillStart": 0,
  2455. "_fillRange": 0,
  2456. "_isTrimmedMode": true,
  2457. "_useGrayscale": false,
  2458. "_atlas": null,
  2459. "_id": ""
  2460. },
  2461. {
  2462. "__type__": "cc.CompPrefabInfo",
  2463. "fileId": "93JgXwZYlNKYa/u9UKkjRJ"
  2464. },
  2465. {
  2466. "__type__": "cc.PrefabInfo",
  2467. "root": {
  2468. "__id__": 1
  2469. },
  2470. "asset": {
  2471. "__id__": 0
  2472. },
  2473. "fileId": "dbrMfauhJF86QhCoUYIQKV",
  2474. "instance": null,
  2475. "targetOverrides": null,
  2476. "nestedPrefabInstanceRoots": null
  2477. },
  2478. {
  2479. "__type__": "cc.UITransform",
  2480. "_name": "",
  2481. "_objFlags": 0,
  2482. "__editorExtras__": {},
  2483. "node": {
  2484. "__id__": 8
  2485. },
  2486. "_enabled": true,
  2487. "__prefab": {
  2488. "__id__": 96
  2489. },
  2490. "_contentSize": {
  2491. "__type__": "cc.Size",
  2492. "width": 478,
  2493. "height": 650
  2494. },
  2495. "_anchorPoint": {
  2496. "__type__": "cc.Vec2",
  2497. "x": 0.5,
  2498. "y": 0.5
  2499. },
  2500. "_id": ""
  2501. },
  2502. {
  2503. "__type__": "cc.CompPrefabInfo",
  2504. "fileId": "210fpBkoBPyrSXteZAwlVn"
  2505. },
  2506. {
  2507. "__type__": "cc.Sprite",
  2508. "_name": "",
  2509. "_objFlags": 0,
  2510. "__editorExtras__": {},
  2511. "node": {
  2512. "__id__": 8
  2513. },
  2514. "_enabled": true,
  2515. "__prefab": {
  2516. "__id__": 98
  2517. },
  2518. "_customMaterial": null,
  2519. "_srcBlendFactor": 2,
  2520. "_dstBlendFactor": 4,
  2521. "_color": {
  2522. "__type__": "cc.Color",
  2523. "r": 255,
  2524. "g": 255,
  2525. "b": 255,
  2526. "a": 255
  2527. },
  2528. "_spriteFrame": {
  2529. "__uuid__": "18797068-e98a-43a6-a481-afde51c33361@f9941",
  2530. "__expectedType__": "cc.SpriteFrame"
  2531. },
  2532. "_type": 0,
  2533. "_fillType": 0,
  2534. "_sizeMode": 0,
  2535. "_fillCenter": {
  2536. "__type__": "cc.Vec2",
  2537. "x": 0,
  2538. "y": 0
  2539. },
  2540. "_fillStart": 0,
  2541. "_fillRange": 0,
  2542. "_isTrimmedMode": true,
  2543. "_useGrayscale": false,
  2544. "_atlas": null,
  2545. "_id": ""
  2546. },
  2547. {
  2548. "__type__": "cc.CompPrefabInfo",
  2549. "fileId": "69lZCBk5lDG6crXASjprNT"
  2550. },
  2551. {
  2552. "__type__": "cc.PrefabInfo",
  2553. "root": {
  2554. "__id__": 1
  2555. },
  2556. "asset": {
  2557. "__id__": 0
  2558. },
  2559. "fileId": "17sjbzvYxB/6cUSxyYR+VC",
  2560. "instance": null,
  2561. "targetOverrides": null,
  2562. "nestedPrefabInstanceRoots": null
  2563. },
  2564. {
  2565. "__type__": "cc.UITransform",
  2566. "_name": "",
  2567. "_objFlags": 0,
  2568. "__editorExtras__": {},
  2569. "node": {
  2570. "__id__": 1
  2571. },
  2572. "_enabled": true,
  2573. "__prefab": {
  2574. "__id__": 101
  2575. },
  2576. "_contentSize": {
  2577. "__type__": "cc.Size",
  2578. "width": 720,
  2579. "height": 1280
  2580. },
  2581. "_anchorPoint": {
  2582. "__type__": "cc.Vec2",
  2583. "x": 0.5,
  2584. "y": 0.5
  2585. },
  2586. "_id": ""
  2587. },
  2588. {
  2589. "__type__": "cc.CompPrefabInfo",
  2590. "fileId": "3dsNsonHVHR6tu+0OgVgEY"
  2591. },
  2592. {
  2593. "__type__": "a2b4faR8+VE9Zce2jnFm3nW",
  2594. "_name": "",
  2595. "_objFlags": 0,
  2596. "__editorExtras__": {},
  2597. "node": {
  2598. "__id__": 1
  2599. },
  2600. "_enabled": true,
  2601. "__prefab": {
  2602. "__id__": 103
  2603. },
  2604. "_id": ""
  2605. },
  2606. {
  2607. "__type__": "cc.CompPrefabInfo",
  2608. "fileId": "acFwj5FVlGmbn9EMIb96r7"
  2609. },
  2610. {
  2611. "__type__": "cc.Widget",
  2612. "_name": "",
  2613. "_objFlags": 0,
  2614. "__editorExtras__": {},
  2615. "node": {
  2616. "__id__": 1
  2617. },
  2618. "_enabled": true,
  2619. "__prefab": {
  2620. "__id__": 105
  2621. },
  2622. "_alignFlags": 45,
  2623. "_target": null,
  2624. "_left": 0,
  2625. "_right": 0,
  2626. "_top": 0,
  2627. "_bottom": 0,
  2628. "_horizontalCenter": 0,
  2629. "_verticalCenter": 0,
  2630. "_isAbsLeft": true,
  2631. "_isAbsRight": true,
  2632. "_isAbsTop": true,
  2633. "_isAbsBottom": true,
  2634. "_isAbsHorizontalCenter": true,
  2635. "_isAbsVerticalCenter": true,
  2636. "_originalWidth": 720,
  2637. "_originalHeight": 1280,
  2638. "_alignMode": 2,
  2639. "_lockFlags": 0,
  2640. "_id": ""
  2641. },
  2642. {
  2643. "__type__": "cc.CompPrefabInfo",
  2644. "fileId": "26ptd8vUxB47wdyexc0Av9"
  2645. },
  2646. {
  2647. "__type__": "cc.PrefabInfo",
  2648. "root": {
  2649. "__id__": 1
  2650. },
  2651. "asset": {
  2652. "__id__": 0
  2653. },
  2654. "fileId": "25Y3gSZ9dGN7S/XgiZLuHd",
  2655. "instance": null,
  2656. "targetOverrides": null
  2657. }
  2658. ]