cashWithdrawal.prefab 48 KB

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