cashPro.prefab 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "cashPro",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 27
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [
  29. {
  30. "__id__": 97
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 98
  35. },
  36. "_opacity": 255,
  37. "_color": {
  38. "__type__": "cc.Color",
  39. "r": 255,
  40. "g": 255,
  41. "b": 255,
  42. "a": 255
  43. },
  44. "_contentSize": {
  45. "__type__": "cc.Size",
  46. "width": 750,
  47. "height": 1334
  48. },
  49. "_anchorPoint": {
  50. "__type__": "cc.Vec2",
  51. "x": 0.5,
  52. "y": 0.5
  53. },
  54. "_trs": {
  55. "__type__": "TypedArray",
  56. "ctor": "Float64Array",
  57. "array": [
  58. 0,
  59. 0,
  60. 0,
  61. 0,
  62. 0,
  63. 0,
  64. 1,
  65. 1,
  66. 1,
  67. 1
  68. ]
  69. },
  70. "_eulerAngles": {
  71. "__type__": "cc.Vec3",
  72. "x": 0,
  73. "y": 0,
  74. "z": 0
  75. },
  76. "_skewX": 0,
  77. "_skewY": 0,
  78. "_is3DNode": false,
  79. "_groupIndex": 0,
  80. "groupIndex": 0,
  81. "_id": ""
  82. },
  83. {
  84. "__type__": "cc.Node",
  85. "_name": "loadPart",
  86. "_objFlags": 0,
  87. "_parent": {
  88. "__id__": 1
  89. },
  90. "_children": [
  91. {
  92. "__id__": 3
  93. },
  94. {
  95. "__id__": 7
  96. },
  97. {
  98. "__id__": 10
  99. },
  100. {
  101. "__id__": 13
  102. },
  103. {
  104. "__id__": 16
  105. },
  106. {
  107. "__id__": 19
  108. },
  109. {
  110. "__id__": 22
  111. }
  112. ],
  113. "_active": true,
  114. "_components": [],
  115. "_prefab": {
  116. "__id__": 26
  117. },
  118. "_opacity": 255,
  119. "_color": {
  120. "__type__": "cc.Color",
  121. "r": 255,
  122. "g": 255,
  123. "b": 255,
  124. "a": 255
  125. },
  126. "_contentSize": {
  127. "__type__": "cc.Size",
  128. "width": 0,
  129. "height": 0
  130. },
  131. "_anchorPoint": {
  132. "__type__": "cc.Vec2",
  133. "x": 0.5,
  134. "y": 0.5
  135. },
  136. "_trs": {
  137. "__type__": "TypedArray",
  138. "ctor": "Float64Array",
  139. "array": [
  140. 0,
  141. 0,
  142. 0,
  143. 0,
  144. 0,
  145. 0,
  146. 1,
  147. 1,
  148. 1,
  149. 1
  150. ]
  151. },
  152. "_eulerAngles": {
  153. "__type__": "cc.Vec3",
  154. "x": 0,
  155. "y": 0,
  156. "z": 0
  157. },
  158. "_skewX": 0,
  159. "_skewY": 0,
  160. "_is3DNode": false,
  161. "_groupIndex": 0,
  162. "groupIndex": 0,
  163. "_id": ""
  164. },
  165. {
  166. "__type__": "cc.Node",
  167. "_name": "New Sprite(Splash) copy",
  168. "_objFlags": 0,
  169. "_parent": {
  170. "__id__": 2
  171. },
  172. "_children": [],
  173. "_active": true,
  174. "_components": [
  175. {
  176. "__id__": 4
  177. },
  178. {
  179. "__id__": 5
  180. }
  181. ],
  182. "_prefab": {
  183. "__id__": 6
  184. },
  185. "_opacity": 0,
  186. "_color": {
  187. "__type__": "cc.Color",
  188. "r": 255,
  189. "g": 255,
  190. "b": 255,
  191. "a": 255
  192. },
  193. "_contentSize": {
  194. "__type__": "cc.Size",
  195. "width": 750,
  196. "height": 2000
  197. },
  198. "_anchorPoint": {
  199. "__type__": "cc.Vec2",
  200. "x": 0.5,
  201. "y": 0.5
  202. },
  203. "_trs": {
  204. "__type__": "TypedArray",
  205. "ctor": "Float64Array",
  206. "array": [
  207. 0,
  208. 0,
  209. 0,
  210. 0,
  211. 0,
  212. 0,
  213. 1,
  214. 1,
  215. 1,
  216. 1
  217. ]
  218. },
  219. "_eulerAngles": {
  220. "__type__": "cc.Vec3",
  221. "x": 0,
  222. "y": 0,
  223. "z": 0
  224. },
  225. "_skewX": 0,
  226. "_skewY": 0,
  227. "_is3DNode": false,
  228. "_groupIndex": 0,
  229. "groupIndex": 0,
  230. "_id": ""
  231. },
  232. {
  233. "__type__": "cc.Sprite",
  234. "_name": "",
  235. "_objFlags": 0,
  236. "node": {
  237. "__id__": 3
  238. },
  239. "_enabled": true,
  240. "_materials": [
  241. {
  242. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  243. }
  244. ],
  245. "_srcBlendFactor": 770,
  246. "_dstBlendFactor": 771,
  247. "_spriteFrame": {
  248. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  249. },
  250. "_type": 0,
  251. "_sizeMode": 0,
  252. "_fillType": 0,
  253. "_fillCenter": {
  254. "__type__": "cc.Vec2",
  255. "x": 0,
  256. "y": 0
  257. },
  258. "_fillStart": 0,
  259. "_fillRange": 0,
  260. "_isTrimmedMode": true,
  261. "_atlas": null,
  262. "_id": ""
  263. },
  264. {
  265. "__type__": "cc.BlockInputEvents",
  266. "_name": "",
  267. "_objFlags": 0,
  268. "node": {
  269. "__id__": 3
  270. },
  271. "_enabled": true,
  272. "_id": ""
  273. },
  274. {
  275. "__type__": "cc.PrefabInfo",
  276. "root": {
  277. "__id__": 1
  278. },
  279. "asset": {
  280. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  281. },
  282. "fileId": "78wdio0NVMf7wZPXSXbc6E",
  283. "sync": false
  284. },
  285. {
  286. "__type__": "cc.Node",
  287. "_name": "loading_tisp_bg",
  288. "_objFlags": 0,
  289. "_parent": {
  290. "__id__": 2
  291. },
  292. "_children": [],
  293. "_active": true,
  294. "_components": [
  295. {
  296. "__id__": 8
  297. }
  298. ],
  299. "_prefab": {
  300. "__id__": 9
  301. },
  302. "_opacity": 255,
  303. "_color": {
  304. "__type__": "cc.Color",
  305. "r": 255,
  306. "g": 255,
  307. "b": 255,
  308. "a": 255
  309. },
  310. "_contentSize": {
  311. "__type__": "cc.Size",
  312. "width": 263,
  313. "height": 239
  314. },
  315. "_anchorPoint": {
  316. "__type__": "cc.Vec2",
  317. "x": 0.5,
  318. "y": 0.5
  319. },
  320. "_trs": {
  321. "__type__": "TypedArray",
  322. "ctor": "Float64Array",
  323. "array": [
  324. 0,
  325. 0,
  326. 0,
  327. 0,
  328. 0,
  329. 0,
  330. 1,
  331. 1,
  332. 1,
  333. 1
  334. ]
  335. },
  336. "_eulerAngles": {
  337. "__type__": "cc.Vec3",
  338. "x": 0,
  339. "y": 0,
  340. "z": 0
  341. },
  342. "_skewX": 0,
  343. "_skewY": 0,
  344. "_is3DNode": false,
  345. "_groupIndex": 0,
  346. "groupIndex": 0,
  347. "_id": ""
  348. },
  349. {
  350. "__type__": "cc.Sprite",
  351. "_name": "",
  352. "_objFlags": 0,
  353. "node": {
  354. "__id__": 7
  355. },
  356. "_enabled": true,
  357. "_materials": [
  358. {
  359. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  360. }
  361. ],
  362. "_srcBlendFactor": 770,
  363. "_dstBlendFactor": 771,
  364. "_spriteFrame": {
  365. "__uuid__": "4ea4675b-2719-406a-a0ba-34e968abc0b6"
  366. },
  367. "_type": 0,
  368. "_sizeMode": 1,
  369. "_fillType": 0,
  370. "_fillCenter": {
  371. "__type__": "cc.Vec2",
  372. "x": 0,
  373. "y": 0
  374. },
  375. "_fillStart": 0,
  376. "_fillRange": 0,
  377. "_isTrimmedMode": true,
  378. "_atlas": null,
  379. "_id": ""
  380. },
  381. {
  382. "__type__": "cc.PrefabInfo",
  383. "root": {
  384. "__id__": 1
  385. },
  386. "asset": {
  387. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  388. },
  389. "fileId": "e4GSHS5/NOPIpgJee/+NeF",
  390. "sync": false
  391. },
  392. {
  393. "__type__": "cc.Node",
  394. "_name": "New Label",
  395. "_objFlags": 0,
  396. "_parent": {
  397. "__id__": 2
  398. },
  399. "_children": [],
  400. "_active": true,
  401. "_components": [
  402. {
  403. "__id__": 11
  404. }
  405. ],
  406. "_prefab": {
  407. "__id__": 12
  408. },
  409. "_opacity": 255,
  410. "_color": {
  411. "__type__": "cc.Color",
  412. "r": 255,
  413. "g": 255,
  414. "b": 255,
  415. "a": 255
  416. },
  417. "_contentSize": {
  418. "__type__": "cc.Size",
  419. "width": 96,
  420. "height": 50.4
  421. },
  422. "_anchorPoint": {
  423. "__type__": "cc.Vec2",
  424. "x": 0.5,
  425. "y": 0.5
  426. },
  427. "_trs": {
  428. "__type__": "TypedArray",
  429. "ctor": "Float64Array",
  430. "array": [
  431. 0,
  432. -25.111,
  433. 0,
  434. 0,
  435. 0,
  436. 0,
  437. 1,
  438. 1,
  439. 1,
  440. 1
  441. ]
  442. },
  443. "_eulerAngles": {
  444. "__type__": "cc.Vec3",
  445. "x": 0,
  446. "y": 0,
  447. "z": 0
  448. },
  449. "_skewX": 0,
  450. "_skewY": 0,
  451. "_is3DNode": false,
  452. "_groupIndex": 0,
  453. "groupIndex": 0,
  454. "_id": ""
  455. },
  456. {
  457. "__type__": "cc.Label",
  458. "_name": "",
  459. "_objFlags": 0,
  460. "node": {
  461. "__id__": 10
  462. },
  463. "_enabled": true,
  464. "_materials": [
  465. {
  466. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  467. }
  468. ],
  469. "_srcBlendFactor": 770,
  470. "_dstBlendFactor": 771,
  471. "_string": "处理中",
  472. "_N$string": "处理中",
  473. "_fontSize": 32,
  474. "_lineHeight": 40,
  475. "_enableWrapText": true,
  476. "_N$file": null,
  477. "_isSystemFontUsed": true,
  478. "_spacingX": 0,
  479. "_batchAsBitmap": false,
  480. "_styleFlags": 0,
  481. "_underlineHeight": 0,
  482. "_N$horizontalAlign": 1,
  483. "_N$verticalAlign": 1,
  484. "_N$fontFamily": "Arial",
  485. "_N$overflow": 0,
  486. "_N$cacheMode": 0,
  487. "_id": ""
  488. },
  489. {
  490. "__type__": "cc.PrefabInfo",
  491. "root": {
  492. "__id__": 1
  493. },
  494. "asset": {
  495. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  496. },
  497. "fileId": "b8NiIaLjRGmrBm8IVmvdbk",
  498. "sync": false
  499. },
  500. {
  501. "__type__": "cc.Node",
  502. "_name": "spot_2",
  503. "_objFlags": 0,
  504. "_parent": {
  505. "__id__": 2
  506. },
  507. "_children": [],
  508. "_active": true,
  509. "_components": [
  510. {
  511. "__id__": 14
  512. }
  513. ],
  514. "_prefab": {
  515. "__id__": 15
  516. },
  517. "_opacity": 255,
  518. "_color": {
  519. "__type__": "cc.Color",
  520. "r": 255,
  521. "g": 255,
  522. "b": 255,
  523. "a": 255
  524. },
  525. "_contentSize": {
  526. "__type__": "cc.Size",
  527. "width": 11,
  528. "height": 11
  529. },
  530. "_anchorPoint": {
  531. "__type__": "cc.Vec2",
  532. "x": 0.5,
  533. "y": 0.5
  534. },
  535. "_trs": {
  536. "__type__": "TypedArray",
  537. "ctor": "Float64Array",
  538. "array": [
  539. -20,
  540. -80.224,
  541. 0,
  542. 0,
  543. 0,
  544. 0,
  545. 1,
  546. 1,
  547. 1,
  548. 1
  549. ]
  550. },
  551. "_eulerAngles": {
  552. "__type__": "cc.Vec3",
  553. "x": 0,
  554. "y": 0,
  555. "z": 0
  556. },
  557. "_skewX": 0,
  558. "_skewY": 0,
  559. "_is3DNode": false,
  560. "_groupIndex": 0,
  561. "groupIndex": 0,
  562. "_id": ""
  563. },
  564. {
  565. "__type__": "cc.Sprite",
  566. "_name": "",
  567. "_objFlags": 0,
  568. "node": {
  569. "__id__": 13
  570. },
  571. "_enabled": true,
  572. "_materials": [
  573. {
  574. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  575. }
  576. ],
  577. "_srcBlendFactor": 770,
  578. "_dstBlendFactor": 771,
  579. "_spriteFrame": {
  580. "__uuid__": "99998f57-30bb-44a9-ab48-0ca9532d6678"
  581. },
  582. "_type": 0,
  583. "_sizeMode": 1,
  584. "_fillType": 0,
  585. "_fillCenter": {
  586. "__type__": "cc.Vec2",
  587. "x": 0,
  588. "y": 0
  589. },
  590. "_fillStart": 0,
  591. "_fillRange": 0,
  592. "_isTrimmedMode": true,
  593. "_atlas": null,
  594. "_id": ""
  595. },
  596. {
  597. "__type__": "cc.PrefabInfo",
  598. "root": {
  599. "__id__": 1
  600. },
  601. "asset": {
  602. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  603. },
  604. "fileId": "dbN+YPxeZI5YcvQKk+vAjV",
  605. "sync": false
  606. },
  607. {
  608. "__type__": "cc.Node",
  609. "_name": "spot_2",
  610. "_objFlags": 0,
  611. "_parent": {
  612. "__id__": 2
  613. },
  614. "_children": [],
  615. "_active": true,
  616. "_components": [
  617. {
  618. "__id__": 17
  619. }
  620. ],
  621. "_prefab": {
  622. "__id__": 18
  623. },
  624. "_opacity": 255,
  625. "_color": {
  626. "__type__": "cc.Color",
  627. "r": 255,
  628. "g": 255,
  629. "b": 255,
  630. "a": 255
  631. },
  632. "_contentSize": {
  633. "__type__": "cc.Size",
  634. "width": 11,
  635. "height": 11
  636. },
  637. "_anchorPoint": {
  638. "__type__": "cc.Vec2",
  639. "x": 0.5,
  640. "y": 0.5
  641. },
  642. "_trs": {
  643. "__type__": "TypedArray",
  644. "ctor": "Float64Array",
  645. "array": [
  646. 0,
  647. -80.224,
  648. 0,
  649. 0,
  650. 0,
  651. 0,
  652. 1,
  653. 1,
  654. 1,
  655. 1
  656. ]
  657. },
  658. "_eulerAngles": {
  659. "__type__": "cc.Vec3",
  660. "x": 0,
  661. "y": 0,
  662. "z": 0
  663. },
  664. "_skewX": 0,
  665. "_skewY": 0,
  666. "_is3DNode": false,
  667. "_groupIndex": 0,
  668. "groupIndex": 0,
  669. "_id": ""
  670. },
  671. {
  672. "__type__": "cc.Sprite",
  673. "_name": "",
  674. "_objFlags": 0,
  675. "node": {
  676. "__id__": 16
  677. },
  678. "_enabled": true,
  679. "_materials": [
  680. {
  681. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  682. }
  683. ],
  684. "_srcBlendFactor": 770,
  685. "_dstBlendFactor": 771,
  686. "_spriteFrame": {
  687. "__uuid__": "99998f57-30bb-44a9-ab48-0ca9532d6678"
  688. },
  689. "_type": 0,
  690. "_sizeMode": 1,
  691. "_fillType": 0,
  692. "_fillCenter": {
  693. "__type__": "cc.Vec2",
  694. "x": 0,
  695. "y": 0
  696. },
  697. "_fillStart": 0,
  698. "_fillRange": 0,
  699. "_isTrimmedMode": true,
  700. "_atlas": null,
  701. "_id": ""
  702. },
  703. {
  704. "__type__": "cc.PrefabInfo",
  705. "root": {
  706. "__id__": 1
  707. },
  708. "asset": {
  709. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  710. },
  711. "fileId": "5bcbdl+shJl6bMkUyhtb23",
  712. "sync": false
  713. },
  714. {
  715. "__type__": "cc.Node",
  716. "_name": "spot_2",
  717. "_objFlags": 0,
  718. "_parent": {
  719. "__id__": 2
  720. },
  721. "_children": [],
  722. "_active": true,
  723. "_components": [
  724. {
  725. "__id__": 20
  726. }
  727. ],
  728. "_prefab": {
  729. "__id__": 21
  730. },
  731. "_opacity": 255,
  732. "_color": {
  733. "__type__": "cc.Color",
  734. "r": 255,
  735. "g": 255,
  736. "b": 255,
  737. "a": 255
  738. },
  739. "_contentSize": {
  740. "__type__": "cc.Size",
  741. "width": 11,
  742. "height": 11
  743. },
  744. "_anchorPoint": {
  745. "__type__": "cc.Vec2",
  746. "x": 0.5,
  747. "y": 0.5
  748. },
  749. "_trs": {
  750. "__type__": "TypedArray",
  751. "ctor": "Float64Array",
  752. "array": [
  753. 20,
  754. -80.224,
  755. 0,
  756. 0,
  757. 0,
  758. 0,
  759. 1,
  760. 1,
  761. 1,
  762. 1
  763. ]
  764. },
  765. "_eulerAngles": {
  766. "__type__": "cc.Vec3",
  767. "x": 0,
  768. "y": 0,
  769. "z": 0
  770. },
  771. "_skewX": 0,
  772. "_skewY": 0,
  773. "_is3DNode": false,
  774. "_groupIndex": 0,
  775. "groupIndex": 0,
  776. "_id": ""
  777. },
  778. {
  779. "__type__": "cc.Sprite",
  780. "_name": "",
  781. "_objFlags": 0,
  782. "node": {
  783. "__id__": 19
  784. },
  785. "_enabled": true,
  786. "_materials": [
  787. {
  788. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  789. }
  790. ],
  791. "_srcBlendFactor": 770,
  792. "_dstBlendFactor": 771,
  793. "_spriteFrame": {
  794. "__uuid__": "99998f57-30bb-44a9-ab48-0ca9532d6678"
  795. },
  796. "_type": 0,
  797. "_sizeMode": 1,
  798. "_fillType": 0,
  799. "_fillCenter": {
  800. "__type__": "cc.Vec2",
  801. "x": 0,
  802. "y": 0
  803. },
  804. "_fillStart": 0,
  805. "_fillRange": 0,
  806. "_isTrimmedMode": true,
  807. "_atlas": null,
  808. "_id": ""
  809. },
  810. {
  811. "__type__": "cc.PrefabInfo",
  812. "root": {
  813. "__id__": 1
  814. },
  815. "asset": {
  816. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  817. },
  818. "fileId": "dcEmtYll9AJoHA0v8Y4reh",
  819. "sync": false
  820. },
  821. {
  822. "__type__": "cc.Node",
  823. "_name": "spot_1",
  824. "_objFlags": 0,
  825. "_parent": {
  826. "__id__": 2
  827. },
  828. "_children": [],
  829. "_active": true,
  830. "_components": [
  831. {
  832. "__id__": 23
  833. },
  834. {
  835. "__id__": 24
  836. }
  837. ],
  838. "_prefab": {
  839. "__id__": 25
  840. },
  841. "_opacity": 255,
  842. "_color": {
  843. "__type__": "cc.Color",
  844. "r": 255,
  845. "g": 255,
  846. "b": 255,
  847. "a": 255
  848. },
  849. "_contentSize": {
  850. "__type__": "cc.Size",
  851. "width": 11,
  852. "height": 11
  853. },
  854. "_anchorPoint": {
  855. "__type__": "cc.Vec2",
  856. "x": 0.5,
  857. "y": 0.5
  858. },
  859. "_trs": {
  860. "__type__": "TypedArray",
  861. "ctor": "Float64Array",
  862. "array": [
  863. -20,
  864. -80.224,
  865. 0,
  866. 0,
  867. 0,
  868. 0,
  869. 1,
  870. 1,
  871. 1,
  872. 1
  873. ]
  874. },
  875. "_eulerAngles": {
  876. "__type__": "cc.Vec3",
  877. "x": 0,
  878. "y": 0,
  879. "z": 0
  880. },
  881. "_skewX": 0,
  882. "_skewY": 0,
  883. "_is3DNode": false,
  884. "_groupIndex": 0,
  885. "groupIndex": 0,
  886. "_id": ""
  887. },
  888. {
  889. "__type__": "cc.Sprite",
  890. "_name": "",
  891. "_objFlags": 0,
  892. "node": {
  893. "__id__": 22
  894. },
  895. "_enabled": true,
  896. "_materials": [
  897. {
  898. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  899. }
  900. ],
  901. "_srcBlendFactor": 770,
  902. "_dstBlendFactor": 771,
  903. "_spriteFrame": {
  904. "__uuid__": "e4f91a10-c00c-4f42-b6c4-470c4465d9a5"
  905. },
  906. "_type": 0,
  907. "_sizeMode": 1,
  908. "_fillType": 0,
  909. "_fillCenter": {
  910. "__type__": "cc.Vec2",
  911. "x": 0,
  912. "y": 0
  913. },
  914. "_fillStart": 0,
  915. "_fillRange": 0,
  916. "_isTrimmedMode": true,
  917. "_atlas": null,
  918. "_id": ""
  919. },
  920. {
  921. "__type__": "cc.Animation",
  922. "_name": "",
  923. "_objFlags": 0,
  924. "node": {
  925. "__id__": 22
  926. },
  927. "_enabled": true,
  928. "_defaultClip": {
  929. "__uuid__": "6cac5c10-7673-4e56-a48d-6f2c00844a14"
  930. },
  931. "_clips": [
  932. {
  933. "__uuid__": "6cac5c10-7673-4e56-a48d-6f2c00844a14"
  934. }
  935. ],
  936. "playOnLoad": false,
  937. "_id": ""
  938. },
  939. {
  940. "__type__": "cc.PrefabInfo",
  941. "root": {
  942. "__id__": 1
  943. },
  944. "asset": {
  945. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  946. },
  947. "fileId": "53CNYYh59KC5IaLqLImhOz",
  948. "sync": false
  949. },
  950. {
  951. "__type__": "cc.PrefabInfo",
  952. "root": {
  953. "__id__": 1
  954. },
  955. "asset": {
  956. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  957. },
  958. "fileId": "fdjazzq0RLuJnDyUv5Llk9",
  959. "sync": false
  960. },
  961. {
  962. "__type__": "cc.Node",
  963. "_name": "cashPro",
  964. "_objFlags": 0,
  965. "_parent": {
  966. "__id__": 1
  967. },
  968. "_children": [
  969. {
  970. "__id__": 28
  971. },
  972. {
  973. "__id__": 32
  974. },
  975. {
  976. "__id__": 45
  977. },
  978. {
  979. "__id__": 48
  980. },
  981. {
  982. "__id__": 51
  983. },
  984. {
  985. "__id__": 54
  986. },
  987. {
  988. "__id__": 57
  989. },
  990. {
  991. "__id__": 60
  992. },
  993. {
  994. "__id__": 63
  995. },
  996. {
  997. "__id__": 66
  998. },
  999. {
  1000. "__id__": 69
  1001. },
  1002. {
  1003. "__id__": 72
  1004. },
  1005. {
  1006. "__id__": 75
  1007. },
  1008. {
  1009. "__id__": 78
  1010. },
  1011. {
  1012. "__id__": 81
  1013. },
  1014. {
  1015. "__id__": 84
  1016. }
  1017. ],
  1018. "_active": false,
  1019. "_components": [
  1020. {
  1021. "__id__": 95
  1022. }
  1023. ],
  1024. "_prefab": {
  1025. "__id__": 96
  1026. },
  1027. "_opacity": 255,
  1028. "_color": {
  1029. "__type__": "cc.Color",
  1030. "r": 255,
  1031. "g": 255,
  1032. "b": 255,
  1033. "a": 255
  1034. },
  1035. "_contentSize": {
  1036. "__type__": "cc.Size",
  1037. "width": 750,
  1038. "height": 1334
  1039. },
  1040. "_anchorPoint": {
  1041. "__type__": "cc.Vec2",
  1042. "x": 0.5,
  1043. "y": 0.5
  1044. },
  1045. "_trs": {
  1046. "__type__": "TypedArray",
  1047. "ctor": "Float64Array",
  1048. "array": [
  1049. 0,
  1050. 0,
  1051. 0,
  1052. 0,
  1053. 0,
  1054. 0,
  1055. 1,
  1056. 1,
  1057. 1,
  1058. 1
  1059. ]
  1060. },
  1061. "_eulerAngles": {
  1062. "__type__": "cc.Vec3",
  1063. "x": 0,
  1064. "y": 0,
  1065. "z": 0
  1066. },
  1067. "_skewX": 0,
  1068. "_skewY": 0,
  1069. "_is3DNode": false,
  1070. "_groupIndex": 0,
  1071. "groupIndex": 0,
  1072. "_id": ""
  1073. },
  1074. {
  1075. "__type__": "cc.Node",
  1076. "_name": "New Sprite(Splash) copy",
  1077. "_objFlags": 0,
  1078. "_parent": {
  1079. "__id__": 27
  1080. },
  1081. "_children": [],
  1082. "_active": true,
  1083. "_components": [
  1084. {
  1085. "__id__": 29
  1086. },
  1087. {
  1088. "__id__": 30
  1089. }
  1090. ],
  1091. "_prefab": {
  1092. "__id__": 31
  1093. },
  1094. "_opacity": 255,
  1095. "_color": {
  1096. "__type__": "cc.Color",
  1097. "r": 255,
  1098. "g": 255,
  1099. "b": 255,
  1100. "a": 255
  1101. },
  1102. "_contentSize": {
  1103. "__type__": "cc.Size",
  1104. "width": 750,
  1105. "height": 2000
  1106. },
  1107. "_anchorPoint": {
  1108. "__type__": "cc.Vec2",
  1109. "x": 0.5,
  1110. "y": 0.5
  1111. },
  1112. "_trs": {
  1113. "__type__": "TypedArray",
  1114. "ctor": "Float64Array",
  1115. "array": [
  1116. 0,
  1117. 0,
  1118. 0,
  1119. 0,
  1120. 0,
  1121. 0,
  1122. 1,
  1123. 1,
  1124. 1,
  1125. 1
  1126. ]
  1127. },
  1128. "_eulerAngles": {
  1129. "__type__": "cc.Vec3",
  1130. "x": 0,
  1131. "y": 0,
  1132. "z": 0
  1133. },
  1134. "_skewX": 0,
  1135. "_skewY": 0,
  1136. "_is3DNode": false,
  1137. "_groupIndex": 0,
  1138. "groupIndex": 0,
  1139. "_id": ""
  1140. },
  1141. {
  1142. "__type__": "cc.Sprite",
  1143. "_name": "",
  1144. "_objFlags": 0,
  1145. "node": {
  1146. "__id__": 28
  1147. },
  1148. "_enabled": true,
  1149. "_materials": [
  1150. {
  1151. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1152. }
  1153. ],
  1154. "_srcBlendFactor": 770,
  1155. "_dstBlendFactor": 771,
  1156. "_spriteFrame": {
  1157. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1158. },
  1159. "_type": 0,
  1160. "_sizeMode": 0,
  1161. "_fillType": 0,
  1162. "_fillCenter": {
  1163. "__type__": "cc.Vec2",
  1164. "x": 0,
  1165. "y": 0
  1166. },
  1167. "_fillStart": 0,
  1168. "_fillRange": 0,
  1169. "_isTrimmedMode": true,
  1170. "_atlas": null,
  1171. "_id": ""
  1172. },
  1173. {
  1174. "__type__": "cc.BlockInputEvents",
  1175. "_name": "",
  1176. "_objFlags": 0,
  1177. "node": {
  1178. "__id__": 28
  1179. },
  1180. "_enabled": true,
  1181. "_id": ""
  1182. },
  1183. {
  1184. "__type__": "cc.PrefabInfo",
  1185. "root": {
  1186. "__id__": 1
  1187. },
  1188. "asset": {
  1189. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  1190. },
  1191. "fileId": "81OrZ+RphGMqRHnqrUcFNK",
  1192. "sync": false
  1193. },
  1194. {
  1195. "__type__": "cc.Node",
  1196. "_name": "top",
  1197. "_objFlags": 0,
  1198. "_parent": {
  1199. "__id__": 27
  1200. },
  1201. "_children": [
  1202. {
  1203. "__id__": 33
  1204. },
  1205. {
  1206. "__id__": 40
  1207. }
  1208. ],
  1209. "_active": true,
  1210. "_components": [
  1211. {
  1212. "__id__": 43
  1213. }
  1214. ],
  1215. "_prefab": {
  1216. "__id__": 44
  1217. },
  1218. "_opacity": 255,
  1219. "_color": {
  1220. "__type__": "cc.Color",
  1221. "r": 255,
  1222. "g": 255,
  1223. "b": 255,
  1224. "a": 255
  1225. },
  1226. "_contentSize": {
  1227. "__type__": "cc.Size",
  1228. "width": 0,
  1229. "height": 0
  1230. },
  1231. "_anchorPoint": {
  1232. "__type__": "cc.Vec2",
  1233. "x": 0.5,
  1234. "y": 0.5
  1235. },
  1236. "_trs": {
  1237. "__type__": "TypedArray",
  1238. "ctor": "Float64Array",
  1239. "array": [
  1240. 0,
  1241. 0,
  1242. 0,
  1243. 0,
  1244. 0,
  1245. 0,
  1246. 1,
  1247. 1,
  1248. 1,
  1249. 1
  1250. ]
  1251. },
  1252. "_eulerAngles": {
  1253. "__type__": "cc.Vec3",
  1254. "x": 0,
  1255. "y": 0,
  1256. "z": 0
  1257. },
  1258. "_skewX": 0,
  1259. "_skewY": 0,
  1260. "_is3DNode": false,
  1261. "_groupIndex": 0,
  1262. "groupIndex": 0,
  1263. "_id": ""
  1264. },
  1265. {
  1266. "__type__": "cc.Node",
  1267. "_name": "currency_back",
  1268. "_objFlags": 0,
  1269. "_parent": {
  1270. "__id__": 32
  1271. },
  1272. "_children": [
  1273. {
  1274. "__id__": 34
  1275. }
  1276. ],
  1277. "_active": true,
  1278. "_components": [
  1279. {
  1280. "__id__": 37
  1281. }
  1282. ],
  1283. "_prefab": {
  1284. "__id__": 39
  1285. },
  1286. "_opacity": 255,
  1287. "_color": {
  1288. "__type__": "cc.Color",
  1289. "r": 255,
  1290. "g": 255,
  1291. "b": 255,
  1292. "a": 255
  1293. },
  1294. "_contentSize": {
  1295. "__type__": "cc.Size",
  1296. "width": 80,
  1297. "height": 100
  1298. },
  1299. "_anchorPoint": {
  1300. "__type__": "cc.Vec2",
  1301. "x": 0.5,
  1302. "y": 0.5
  1303. },
  1304. "_trs": {
  1305. "__type__": "TypedArray",
  1306. "ctor": "Float64Array",
  1307. "array": [
  1308. -337,
  1309. 566,
  1310. 0,
  1311. 0,
  1312. 0,
  1313. 0,
  1314. 1,
  1315. 1,
  1316. 1,
  1317. 0
  1318. ]
  1319. },
  1320. "_eulerAngles": {
  1321. "__type__": "cc.Vec3",
  1322. "x": 0,
  1323. "y": 0,
  1324. "z": 0
  1325. },
  1326. "_skewX": 0,
  1327. "_skewY": 0,
  1328. "_is3DNode": false,
  1329. "_groupIndex": 0,
  1330. "groupIndex": 0,
  1331. "_id": ""
  1332. },
  1333. {
  1334. "__type__": "cc.Node",
  1335. "_name": "New Sprite",
  1336. "_objFlags": 0,
  1337. "_parent": {
  1338. "__id__": 33
  1339. },
  1340. "_children": [],
  1341. "_active": true,
  1342. "_components": [
  1343. {
  1344. "__id__": 35
  1345. }
  1346. ],
  1347. "_prefab": {
  1348. "__id__": 36
  1349. },
  1350. "_opacity": 255,
  1351. "_color": {
  1352. "__type__": "cc.Color",
  1353. "r": 255,
  1354. "g": 255,
  1355. "b": 255,
  1356. "a": 255
  1357. },
  1358. "_contentSize": {
  1359. "__type__": "cc.Size",
  1360. "width": 18,
  1361. "height": 32
  1362. },
  1363. "_anchorPoint": {
  1364. "__type__": "cc.Vec2",
  1365. "x": 0.5,
  1366. "y": 0.5
  1367. },
  1368. "_trs": {
  1369. "__type__": "TypedArray",
  1370. "ctor": "Float64Array",
  1371. "array": [
  1372. 0,
  1373. 0,
  1374. 0,
  1375. 0,
  1376. 0,
  1377. 0,
  1378. 1,
  1379. 1,
  1380. 1,
  1381. 1
  1382. ]
  1383. },
  1384. "_eulerAngles": {
  1385. "__type__": "cc.Vec3",
  1386. "x": 0,
  1387. "y": 0,
  1388. "z": 0
  1389. },
  1390. "_skewX": 0,
  1391. "_skewY": 0,
  1392. "_is3DNode": false,
  1393. "_groupIndex": 0,
  1394. "groupIndex": 0,
  1395. "_id": ""
  1396. },
  1397. {
  1398. "__type__": "cc.Sprite",
  1399. "_name": "",
  1400. "_objFlags": 0,
  1401. "node": {
  1402. "__id__": 34
  1403. },
  1404. "_enabled": true,
  1405. "_materials": [
  1406. {
  1407. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1408. }
  1409. ],
  1410. "_srcBlendFactor": 770,
  1411. "_dstBlendFactor": 771,
  1412. "_spriteFrame": {
  1413. "__uuid__": "29b64df9-5722-41ac-b3fa-28d28054957e"
  1414. },
  1415. "_type": 0,
  1416. "_sizeMode": 1,
  1417. "_fillType": 0,
  1418. "_fillCenter": {
  1419. "__type__": "cc.Vec2",
  1420. "x": 0,
  1421. "y": 0
  1422. },
  1423. "_fillStart": 0,
  1424. "_fillRange": 0,
  1425. "_isTrimmedMode": true,
  1426. "_atlas": null,
  1427. "_id": ""
  1428. },
  1429. {
  1430. "__type__": "cc.PrefabInfo",
  1431. "root": {
  1432. "__id__": 1
  1433. },
  1434. "asset": {
  1435. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  1436. },
  1437. "fileId": "bciRCk5AFJsJCICvresJyR",
  1438. "sync": false
  1439. },
  1440. {
  1441. "__type__": "cdc50kCRVVBa5gcp4XXxVO+",
  1442. "_name": "",
  1443. "_objFlags": 0,
  1444. "node": {
  1445. "__id__": 33
  1446. },
  1447. "_enabled": true,
  1448. "node_panel": {
  1449. "__id__": 1
  1450. },
  1451. "transition_type": 3,
  1452. "onComplete": [
  1453. {
  1454. "__id__": 38
  1455. }
  1456. ],
  1457. "_id": ""
  1458. },
  1459. {
  1460. "__type__": "cc.ClickEvent",
  1461. "target": {
  1462. "__id__": 1
  1463. },
  1464. "component": "",
  1465. "_componentId": "7c96b8wPgBPeLS+KI5YpgFP",
  1466. "handler": "clickCloseBtn",
  1467. "customEventData": ""
  1468. },
  1469. {
  1470. "__type__": "cc.PrefabInfo",
  1471. "root": {
  1472. "__id__": 1
  1473. },
  1474. "asset": {
  1475. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  1476. },
  1477. "fileId": "57m9jgbH5FIr/tmtDXhkQg",
  1478. "sync": false
  1479. },
  1480. {
  1481. "__type__": "cc.Node",
  1482. "_name": "New Label",
  1483. "_objFlags": 0,
  1484. "_parent": {
  1485. "__id__": 32
  1486. },
  1487. "_children": [],
  1488. "_active": true,
  1489. "_components": [
  1490. {
  1491. "__id__": 41
  1492. }
  1493. ],
  1494. "_prefab": {
  1495. "__id__": 42
  1496. },
  1497. "_opacity": 255,
  1498. "_color": {
  1499. "__type__": "cc.Color",
  1500. "r": 30,
  1501. "g": 30,
  1502. "b": 30,
  1503. "a": 255
  1504. },
  1505. "_contentSize": {
  1506. "__type__": "cc.Size",
  1507. "width": 136,
  1508. "height": 50.4
  1509. },
  1510. "_anchorPoint": {
  1511. "__type__": "cc.Vec2",
  1512. "x": 0.5,
  1513. "y": 0.5
  1514. },
  1515. "_trs": {
  1516. "__type__": "TypedArray",
  1517. "ctor": "Float64Array",
  1518. "array": [
  1519. 0,
  1520. 566,
  1521. 0,
  1522. 0,
  1523. 0,
  1524. 0,
  1525. 1,
  1526. 1,
  1527. 1,
  1528. 1
  1529. ]
  1530. },
  1531. "_eulerAngles": {
  1532. "__type__": "cc.Vec3",
  1533. "x": 0,
  1534. "y": 0,
  1535. "z": 0
  1536. },
  1537. "_skewX": 0,
  1538. "_skewY": 0,
  1539. "_is3DNode": false,
  1540. "_groupIndex": 0,
  1541. "groupIndex": 0,
  1542. "_id": ""
  1543. },
  1544. {
  1545. "__type__": "cc.Label",
  1546. "_name": "",
  1547. "_objFlags": 0,
  1548. "node": {
  1549. "__id__": 40
  1550. },
  1551. "_enabled": true,
  1552. "_materials": [
  1553. {
  1554. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1555. }
  1556. ],
  1557. "_srcBlendFactor": 770,
  1558. "_dstBlendFactor": 771,
  1559. "_string": "零钱提现",
  1560. "_N$string": "零钱提现",
  1561. "_fontSize": 34,
  1562. "_lineHeight": 40,
  1563. "_enableWrapText": true,
  1564. "_N$file": null,
  1565. "_isSystemFontUsed": true,
  1566. "_spacingX": 0,
  1567. "_batchAsBitmap": false,
  1568. "_styleFlags": 1,
  1569. "_underlineHeight": 0,
  1570. "_N$horizontalAlign": 1,
  1571. "_N$verticalAlign": 1,
  1572. "_N$fontFamily": "Arial",
  1573. "_N$overflow": 0,
  1574. "_N$cacheMode": 0,
  1575. "_id": ""
  1576. },
  1577. {
  1578. "__type__": "cc.PrefabInfo",
  1579. "root": {
  1580. "__id__": 1
  1581. },
  1582. "asset": {
  1583. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  1584. },
  1585. "fileId": "c4Fh2ohdNGrYKUhkEgs/wl",
  1586. "sync": false
  1587. },
  1588. {
  1589. "__type__": "cc.Widget",
  1590. "_name": "",
  1591. "_objFlags": 0,
  1592. "node": {
  1593. "__id__": 32
  1594. },
  1595. "_enabled": true,
  1596. "alignMode": 1,
  1597. "_target": null,
  1598. "_alignFlags": 1,
  1599. "_left": 0,
  1600. "_right": 0,
  1601. "_top": 667,
  1602. "_bottom": 0,
  1603. "_verticalCenter": 0,
  1604. "_horizontalCenter": 0,
  1605. "_isAbsLeft": true,
  1606. "_isAbsRight": true,
  1607. "_isAbsTop": true,
  1608. "_isAbsBottom": true,
  1609. "_isAbsHorizontalCenter": true,
  1610. "_isAbsVerticalCenter": true,
  1611. "_originalWidth": 0,
  1612. "_originalHeight": 0,
  1613. "_id": ""
  1614. },
  1615. {
  1616. "__type__": "cc.PrefabInfo",
  1617. "root": {
  1618. "__id__": 1
  1619. },
  1620. "asset": {
  1621. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  1622. },
  1623. "fileId": "a2PhXZ1kpIPJYnT2r39zq+",
  1624. "sync": false
  1625. },
  1626. {
  1627. "__type__": "cc.Node",
  1628. "_name": "sp",
  1629. "_objFlags": 0,
  1630. "_parent": {
  1631. "__id__": 27
  1632. },
  1633. "_children": [],
  1634. "_active": true,
  1635. "_components": [
  1636. {
  1637. "__id__": 46
  1638. }
  1639. ],
  1640. "_prefab": {
  1641. "__id__": 47
  1642. },
  1643. "_opacity": 255,
  1644. "_color": {
  1645. "__type__": "cc.Color",
  1646. "r": 255,
  1647. "g": 255,
  1648. "b": 255,
  1649. "a": 255
  1650. },
  1651. "_contentSize": {
  1652. "__type__": "cc.Size",
  1653. "width": 19,
  1654. "height": 251
  1655. },
  1656. "_anchorPoint": {
  1657. "__type__": "cc.Vec2",
  1658. "x": 0.5,
  1659. "y": 0.5
  1660. },
  1661. "_trs": {
  1662. "__type__": "TypedArray",
  1663. "ctor": "Float64Array",
  1664. "array": [
  1665. -300.394,
  1666. 281.961,
  1667. 0,
  1668. 0,
  1669. 0,
  1670. 0,
  1671. 1,
  1672. 1.2,
  1673. 1.2,
  1674. 1
  1675. ]
  1676. },
  1677. "_eulerAngles": {
  1678. "__type__": "cc.Vec3",
  1679. "x": 0,
  1680. "y": 0,
  1681. "z": 0
  1682. },
  1683. "_skewX": 0,
  1684. "_skewY": 0,
  1685. "_is3DNode": false,
  1686. "_groupIndex": 0,
  1687. "groupIndex": 0,
  1688. "_id": ""
  1689. },
  1690. {
  1691. "__type__": "cc.Sprite",
  1692. "_name": "",
  1693. "_objFlags": 0,
  1694. "node": {
  1695. "__id__": 45
  1696. },
  1697. "_enabled": true,
  1698. "_materials": [
  1699. {
  1700. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1701. }
  1702. ],
  1703. "_srcBlendFactor": 770,
  1704. "_dstBlendFactor": 771,
  1705. "_spriteFrame": {
  1706. "__uuid__": "455b438f-fb45-4a11-a101-9eb819d39f33"
  1707. },
  1708. "_type": 0,
  1709. "_sizeMode": 1,
  1710. "_fillType": 0,
  1711. "_fillCenter": {
  1712. "__type__": "cc.Vec2",
  1713. "x": 0,
  1714. "y": 0
  1715. },
  1716. "_fillStart": 0,
  1717. "_fillRange": 0,
  1718. "_isTrimmedMode": true,
  1719. "_atlas": null,
  1720. "_id": ""
  1721. },
  1722. {
  1723. "__type__": "cc.PrefabInfo",
  1724. "root": {
  1725. "__id__": 1
  1726. },
  1727. "asset": {
  1728. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  1729. },
  1730. "fileId": "6fUcXKv65G27vcFllrwxcD",
  1731. "sync": false
  1732. },
  1733. {
  1734. "__type__": "cc.Node",
  1735. "_name": "icon_xitong",
  1736. "_objFlags": 0,
  1737. "_parent": {
  1738. "__id__": 27
  1739. },
  1740. "_children": [],
  1741. "_active": true,
  1742. "_components": [
  1743. {
  1744. "__id__": 49
  1745. }
  1746. ],
  1747. "_prefab": {
  1748. "__id__": 50
  1749. },
  1750. "_opacity": 255,
  1751. "_color": {
  1752. "__type__": "cc.Color",
  1753. "r": 255,
  1754. "g": 255,
  1755. "b": 255,
  1756. "a": 255
  1757. },
  1758. "_contentSize": {
  1759. "__type__": "cc.Size",
  1760. "width": 66,
  1761. "height": 66
  1762. },
  1763. "_anchorPoint": {
  1764. "__type__": "cc.Vec2",
  1765. "x": 0.5,
  1766. "y": 0.5
  1767. },
  1768. "_trs": {
  1769. "__type__": "TypedArray",
  1770. "ctor": "Float64Array",
  1771. "array": [
  1772. -299.365,
  1773. 275.269,
  1774. 0,
  1775. 0,
  1776. 0,
  1777. 0,
  1778. 1,
  1779. 1,
  1780. 1,
  1781. 1
  1782. ]
  1783. },
  1784. "_eulerAngles": {
  1785. "__type__": "cc.Vec3",
  1786. "x": 0,
  1787. "y": 0,
  1788. "z": 0
  1789. },
  1790. "_skewX": 0,
  1791. "_skewY": 0,
  1792. "_is3DNode": false,
  1793. "_groupIndex": 0,
  1794. "groupIndex": 0,
  1795. "_id": ""
  1796. },
  1797. {
  1798. "__type__": "cc.Sprite",
  1799. "_name": "",
  1800. "_objFlags": 0,
  1801. "node": {
  1802. "__id__": 48
  1803. },
  1804. "_enabled": true,
  1805. "_materials": [
  1806. {
  1807. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1808. }
  1809. ],
  1810. "_srcBlendFactor": 770,
  1811. "_dstBlendFactor": 771,
  1812. "_spriteFrame": {
  1813. "__uuid__": "c51aebe5-b749-4742-9293-fbc16ce12611"
  1814. },
  1815. "_type": 0,
  1816. "_sizeMode": 1,
  1817. "_fillType": 0,
  1818. "_fillCenter": {
  1819. "__type__": "cc.Vec2",
  1820. "x": 0,
  1821. "y": 0
  1822. },
  1823. "_fillStart": 0,
  1824. "_fillRange": 0,
  1825. "_isTrimmedMode": true,
  1826. "_atlas": null,
  1827. "_id": ""
  1828. },
  1829. {
  1830. "__type__": "cc.PrefabInfo",
  1831. "root": {
  1832. "__id__": 1
  1833. },
  1834. "asset": {
  1835. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  1836. },
  1837. "fileId": "64r9fkLQ9PTYzIgFzMpvHq",
  1838. "sync": false
  1839. },
  1840. {
  1841. "__type__": "cc.Node",
  1842. "_name": "New Label",
  1843. "_objFlags": 0,
  1844. "_parent": {
  1845. "__id__": 27
  1846. },
  1847. "_children": [],
  1848. "_active": true,
  1849. "_components": [
  1850. {
  1851. "__id__": 52
  1852. }
  1853. ],
  1854. "_prefab": {
  1855. "__id__": 53
  1856. },
  1857. "_opacity": 255,
  1858. "_color": {
  1859. "__type__": "cc.Color",
  1860. "r": 153,
  1861. "g": 153,
  1862. "b": 153,
  1863. "a": 255
  1864. },
  1865. "_contentSize": {
  1866. "__type__": "cc.Size",
  1867. "width": 192,
  1868. "height": 50.4
  1869. },
  1870. "_anchorPoint": {
  1871. "__type__": "cc.Vec2",
  1872. "x": 0.5,
  1873. "y": 0.5
  1874. },
  1875. "_trs": {
  1876. "__type__": "TypedArray",
  1877. "ctor": "Float64Array",
  1878. "array": [
  1879. -130.077,
  1880. 421.086,
  1881. 0,
  1882. 0,
  1883. 0,
  1884. 0,
  1885. 1,
  1886. 1,
  1887. 1,
  1888. 1
  1889. ]
  1890. },
  1891. "_eulerAngles": {
  1892. "__type__": "cc.Vec3",
  1893. "x": 0,
  1894. "y": 0,
  1895. "z": 0
  1896. },
  1897. "_skewX": 0,
  1898. "_skewY": 0,
  1899. "_is3DNode": false,
  1900. "_groupIndex": 0,
  1901. "groupIndex": 0,
  1902. "_id": ""
  1903. },
  1904. {
  1905. "__type__": "cc.Label",
  1906. "_name": "",
  1907. "_objFlags": 0,
  1908. "node": {
  1909. "__id__": 51
  1910. },
  1911. "_enabled": true,
  1912. "_materials": [
  1913. {
  1914. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1915. }
  1916. ],
  1917. "_srcBlendFactor": 770,
  1918. "_dstBlendFactor": 771,
  1919. "_string": "发起提现申请",
  1920. "_N$string": "发起提现申请",
  1921. "_fontSize": 32,
  1922. "_lineHeight": 40,
  1923. "_enableWrapText": true,
  1924. "_N$file": null,
  1925. "_isSystemFontUsed": true,
  1926. "_spacingX": 0,
  1927. "_batchAsBitmap": false,
  1928. "_styleFlags": 0,
  1929. "_underlineHeight": 0,
  1930. "_N$horizontalAlign": 1,
  1931. "_N$verticalAlign": 1,
  1932. "_N$fontFamily": "Arial",
  1933. "_N$overflow": 0,
  1934. "_N$cacheMode": 0,
  1935. "_id": ""
  1936. },
  1937. {
  1938. "__type__": "cc.PrefabInfo",
  1939. "root": {
  1940. "__id__": 1
  1941. },
  1942. "asset": {
  1943. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  1944. },
  1945. "fileId": "37McC6I8dPDJ/xc9zzc1JS",
  1946. "sync": false
  1947. },
  1948. {
  1949. "__type__": "cc.Node",
  1950. "_name": "New Label",
  1951. "_objFlags": 0,
  1952. "_parent": {
  1953. "__id__": 27
  1954. },
  1955. "_children": [],
  1956. "_active": true,
  1957. "_components": [
  1958. {
  1959. "__id__": 55
  1960. }
  1961. ],
  1962. "_prefab": {
  1963. "__id__": 56
  1964. },
  1965. "_opacity": 255,
  1966. "_color": {
  1967. "__type__": "cc.Color",
  1968. "r": 9,
  1969. "g": 9,
  1970. "b": 9,
  1971. "a": 255
  1972. },
  1973. "_contentSize": {
  1974. "__type__": "cc.Size",
  1975. "width": 160,
  1976. "height": 50.4
  1977. },
  1978. "_anchorPoint": {
  1979. "__type__": "cc.Vec2",
  1980. "x": 0.5,
  1981. "y": 0.5
  1982. },
  1983. "_trs": {
  1984. "__type__": "TypedArray",
  1985. "ctor": "Float64Array",
  1986. "array": [
  1987. -145.077,
  1988. 292.84,
  1989. 0,
  1990. 0,
  1991. 0,
  1992. 0,
  1993. 1,
  1994. 1,
  1995. 1,
  1996. 1
  1997. ]
  1998. },
  1999. "_eulerAngles": {
  2000. "__type__": "cc.Vec3",
  2001. "x": 0,
  2002. "y": 0,
  2003. "z": 0
  2004. },
  2005. "_skewX": 0,
  2006. "_skewY": 0,
  2007. "_is3DNode": false,
  2008. "_groupIndex": 0,
  2009. "groupIndex": 0,
  2010. "_id": ""
  2011. },
  2012. {
  2013. "__type__": "cc.Label",
  2014. "_name": "",
  2015. "_objFlags": 0,
  2016. "node": {
  2017. "__id__": 54
  2018. },
  2019. "_enabled": true,
  2020. "_materials": [
  2021. {
  2022. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2023. }
  2024. ],
  2025. "_srcBlendFactor": 770,
  2026. "_dstBlendFactor": 771,
  2027. "_string": "系统处理中",
  2028. "_N$string": "系统处理中",
  2029. "_fontSize": 32,
  2030. "_lineHeight": 40,
  2031. "_enableWrapText": true,
  2032. "_N$file": null,
  2033. "_isSystemFontUsed": true,
  2034. "_spacingX": 0,
  2035. "_batchAsBitmap": false,
  2036. "_styleFlags": 0,
  2037. "_underlineHeight": 0,
  2038. "_N$horizontalAlign": 1,
  2039. "_N$verticalAlign": 1,
  2040. "_N$fontFamily": "Arial",
  2041. "_N$overflow": 0,
  2042. "_N$cacheMode": 0,
  2043. "_id": ""
  2044. },
  2045. {
  2046. "__type__": "cc.PrefabInfo",
  2047. "root": {
  2048. "__id__": 1
  2049. },
  2050. "asset": {
  2051. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  2052. },
  2053. "fileId": "f3/DCEF6ZK3p8MPpl0DVwY",
  2054. "sync": false
  2055. },
  2056. {
  2057. "__type__": "cc.Node",
  2058. "_name": "New Label",
  2059. "_objFlags": 0,
  2060. "_parent": {
  2061. "__id__": 27
  2062. },
  2063. "_children": [],
  2064. "_active": true,
  2065. "_components": [
  2066. {
  2067. "__id__": 58
  2068. }
  2069. ],
  2070. "_prefab": {
  2071. "__id__": 59
  2072. },
  2073. "_opacity": 255,
  2074. "_color": {
  2075. "__type__": "cc.Color",
  2076. "r": 153,
  2077. "g": 153,
  2078. "b": 153,
  2079. "a": 255
  2080. },
  2081. "_contentSize": {
  2082. "__type__": "cc.Size",
  2083. "width": 128,
  2084. "height": 50.4
  2085. },
  2086. "_anchorPoint": {
  2087. "__type__": "cc.Vec2",
  2088. "x": 0.5,
  2089. "y": 0.5
  2090. },
  2091. "_trs": {
  2092. "__type__": "TypedArray",
  2093. "ctor": "Float64Array",
  2094. "array": [
  2095. -162.634,
  2096. 148.181,
  2097. 0,
  2098. 0,
  2099. 0,
  2100. 0,
  2101. 1,
  2102. 1,
  2103. 1,
  2104. 1
  2105. ]
  2106. },
  2107. "_eulerAngles": {
  2108. "__type__": "cc.Vec3",
  2109. "x": 0,
  2110. "y": 0,
  2111. "z": 0
  2112. },
  2113. "_skewX": 0,
  2114. "_skewY": 0,
  2115. "_is3DNode": false,
  2116. "_groupIndex": 0,
  2117. "groupIndex": 0,
  2118. "_id": ""
  2119. },
  2120. {
  2121. "__type__": "cc.Label",
  2122. "_name": "",
  2123. "_objFlags": 0,
  2124. "node": {
  2125. "__id__": 57
  2126. },
  2127. "_enabled": true,
  2128. "_materials": [
  2129. {
  2130. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2131. }
  2132. ],
  2133. "_srcBlendFactor": 770,
  2134. "_dstBlendFactor": 771,
  2135. "_string": "到账成功",
  2136. "_N$string": "到账成功",
  2137. "_fontSize": 32,
  2138. "_lineHeight": 40,
  2139. "_enableWrapText": true,
  2140. "_N$file": null,
  2141. "_isSystemFontUsed": true,
  2142. "_spacingX": 0,
  2143. "_batchAsBitmap": false,
  2144. "_styleFlags": 0,
  2145. "_underlineHeight": 0,
  2146. "_N$horizontalAlign": 1,
  2147. "_N$verticalAlign": 1,
  2148. "_N$fontFamily": "Arial",
  2149. "_N$overflow": 0,
  2150. "_N$cacheMode": 0,
  2151. "_id": ""
  2152. },
  2153. {
  2154. "__type__": "cc.PrefabInfo",
  2155. "root": {
  2156. "__id__": 1
  2157. },
  2158. "asset": {
  2159. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  2160. },
  2161. "fileId": "83gw9oEcdLCKmGlptZAHVW",
  2162. "sync": false
  2163. },
  2164. {
  2165. "__type__": "cc.Node",
  2166. "_name": "labTime",
  2167. "_objFlags": 0,
  2168. "_parent": {
  2169. "__id__": 27
  2170. },
  2171. "_children": [],
  2172. "_active": true,
  2173. "_components": [
  2174. {
  2175. "__id__": 61
  2176. }
  2177. ],
  2178. "_prefab": {
  2179. "__id__": 62
  2180. },
  2181. "_opacity": 255,
  2182. "_color": {
  2183. "__type__": "cc.Color",
  2184. "r": 247,
  2185. "g": 47,
  2186. "b": 32,
  2187. "a": 255
  2188. },
  2189. "_contentSize": {
  2190. "__type__": "cc.Size",
  2191. "width": 223.36,
  2192. "height": 50.4
  2193. },
  2194. "_anchorPoint": {
  2195. "__type__": "cc.Vec2",
  2196. "x": 0,
  2197. "y": 0.5
  2198. },
  2199. "_trs": {
  2200. "__type__": "TypedArray",
  2201. "ctor": "Float64Array",
  2202. "array": [
  2203. -227.994,
  2204. 246.685,
  2205. 0,
  2206. 0,
  2207. 0,
  2208. 0,
  2209. 1,
  2210. 1,
  2211. 1,
  2212. 1
  2213. ]
  2214. },
  2215. "_eulerAngles": {
  2216. "__type__": "cc.Vec3",
  2217. "x": 0,
  2218. "y": 0,
  2219. "z": 0
  2220. },
  2221. "_skewX": 0,
  2222. "_skewY": 0,
  2223. "_is3DNode": false,
  2224. "_groupIndex": 0,
  2225. "groupIndex": 0,
  2226. "_id": ""
  2227. },
  2228. {
  2229. "__type__": "cc.Label",
  2230. "_name": "",
  2231. "_objFlags": 0,
  2232. "node": {
  2233. "__id__": 60
  2234. },
  2235. "_enabled": true,
  2236. "_materials": [
  2237. {
  2238. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2239. }
  2240. ],
  2241. "_srcBlendFactor": 770,
  2242. "_dstBlendFactor": 771,
  2243. "_string": "1-3个工作日到账",
  2244. "_N$string": "1-3个工作日到账",
  2245. "_fontSize": 30,
  2246. "_lineHeight": 40,
  2247. "_enableWrapText": true,
  2248. "_N$file": null,
  2249. "_isSystemFontUsed": true,
  2250. "_spacingX": 0,
  2251. "_batchAsBitmap": false,
  2252. "_styleFlags": 0,
  2253. "_underlineHeight": 0,
  2254. "_N$horizontalAlign": 1,
  2255. "_N$verticalAlign": 1,
  2256. "_N$fontFamily": "Arial",
  2257. "_N$overflow": 0,
  2258. "_N$cacheMode": 0,
  2259. "_id": ""
  2260. },
  2261. {
  2262. "__type__": "cc.PrefabInfo",
  2263. "root": {
  2264. "__id__": 1
  2265. },
  2266. "asset": {
  2267. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  2268. },
  2269. "fileId": "21vZJn8+ZEOYnrAzS5i4z3",
  2270. "sync": false
  2271. },
  2272. {
  2273. "__type__": "cc.Node",
  2274. "_name": "xian",
  2275. "_objFlags": 0,
  2276. "_parent": {
  2277. "__id__": 27
  2278. },
  2279. "_children": [],
  2280. "_active": true,
  2281. "_components": [
  2282. {
  2283. "__id__": 64
  2284. }
  2285. ],
  2286. "_prefab": {
  2287. "__id__": 65
  2288. },
  2289. "_opacity": 255,
  2290. "_color": {
  2291. "__type__": "cc.Color",
  2292. "r": 237,
  2293. "g": 237,
  2294. "b": 237,
  2295. "a": 255
  2296. },
  2297. "_contentSize": {
  2298. "__type__": "cc.Size",
  2299. "width": 676,
  2300. "height": 50.4
  2301. },
  2302. "_anchorPoint": {
  2303. "__type__": "cc.Vec2",
  2304. "x": 0.5,
  2305. "y": 0.5
  2306. },
  2307. "_trs": {
  2308. "__type__": "TypedArray",
  2309. "ctor": "Float64Array",
  2310. "array": [
  2311. 0,
  2312. 44.917,
  2313. 0,
  2314. 0,
  2315. 0,
  2316. 0,
  2317. 1,
  2318. 1,
  2319. 1,
  2320. 1
  2321. ]
  2322. },
  2323. "_eulerAngles": {
  2324. "__type__": "cc.Vec3",
  2325. "x": 0,
  2326. "y": 0,
  2327. "z": 0
  2328. },
  2329. "_skewX": 0,
  2330. "_skewY": 0,
  2331. "_is3DNode": false,
  2332. "_groupIndex": 0,
  2333. "groupIndex": 0,
  2334. "_id": ""
  2335. },
  2336. {
  2337. "__type__": "cc.Label",
  2338. "_name": "",
  2339. "_objFlags": 0,
  2340. "node": {
  2341. "__id__": 63
  2342. },
  2343. "_enabled": true,
  2344. "_materials": [
  2345. {
  2346. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2347. }
  2348. ],
  2349. "_srcBlendFactor": 770,
  2350. "_dstBlendFactor": 771,
  2351. "_string": "——————————————————————————",
  2352. "_N$string": "——————————————————————————",
  2353. "_fontSize": 26,
  2354. "_lineHeight": 40,
  2355. "_enableWrapText": true,
  2356. "_N$file": null,
  2357. "_isSystemFontUsed": true,
  2358. "_spacingX": 0,
  2359. "_batchAsBitmap": false,
  2360. "_styleFlags": 0,
  2361. "_underlineHeight": 0,
  2362. "_N$horizontalAlign": 1,
  2363. "_N$verticalAlign": 1,
  2364. "_N$fontFamily": "Arial",
  2365. "_N$overflow": 0,
  2366. "_N$cacheMode": 0,
  2367. "_id": ""
  2368. },
  2369. {
  2370. "__type__": "cc.PrefabInfo",
  2371. "root": {
  2372. "__id__": 1
  2373. },
  2374. "asset": {
  2375. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  2376. },
  2377. "fileId": "09R6y0PVlAiqcEgV8hNuiu",
  2378. "sync": false
  2379. },
  2380. {
  2381. "__type__": "cc.Node",
  2382. "_name": "New Label",
  2383. "_objFlags": 0,
  2384. "_parent": {
  2385. "__id__": 27
  2386. },
  2387. "_children": [],
  2388. "_active": true,
  2389. "_components": [
  2390. {
  2391. "__id__": 67
  2392. }
  2393. ],
  2394. "_prefab": {
  2395. "__id__": 68
  2396. },
  2397. "_opacity": 255,
  2398. "_color": {
  2399. "__type__": "cc.Color",
  2400. "r": 153,
  2401. "g": 153,
  2402. "b": 153,
  2403. "a": 255
  2404. },
  2405. "_contentSize": {
  2406. "__type__": "cc.Size",
  2407. "width": 112,
  2408. "height": 50.4
  2409. },
  2410. "_anchorPoint": {
  2411. "__type__": "cc.Vec2",
  2412. "x": 0,
  2413. "y": 0.5
  2414. },
  2415. "_trs": {
  2416. "__type__": "TypedArray",
  2417. "ctor": "Float64Array",
  2418. "array": [
  2419. -330,
  2420. 0,
  2421. 0,
  2422. 0,
  2423. 0,
  2424. 0,
  2425. 1,
  2426. 1,
  2427. 1,
  2428. 1
  2429. ]
  2430. },
  2431. "_eulerAngles": {
  2432. "__type__": "cc.Vec3",
  2433. "x": 0,
  2434. "y": 0,
  2435. "z": 0
  2436. },
  2437. "_skewX": 0,
  2438. "_skewY": 0,
  2439. "_is3DNode": false,
  2440. "_groupIndex": 0,
  2441. "groupIndex": 0,
  2442. "_id": ""
  2443. },
  2444. {
  2445. "__type__": "cc.Label",
  2446. "_name": "",
  2447. "_objFlags": 0,
  2448. "node": {
  2449. "__id__": 66
  2450. },
  2451. "_enabled": true,
  2452. "_materials": [
  2453. {
  2454. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2455. }
  2456. ],
  2457. "_srcBlendFactor": 770,
  2458. "_dstBlendFactor": 771,
  2459. "_string": "提现金额",
  2460. "_N$string": "提现金额",
  2461. "_fontSize": 28,
  2462. "_lineHeight": 40,
  2463. "_enableWrapText": true,
  2464. "_N$file": null,
  2465. "_isSystemFontUsed": true,
  2466. "_spacingX": 0,
  2467. "_batchAsBitmap": false,
  2468. "_styleFlags": 0,
  2469. "_underlineHeight": 0,
  2470. "_N$horizontalAlign": 1,
  2471. "_N$verticalAlign": 1,
  2472. "_N$fontFamily": "Arial",
  2473. "_N$overflow": 0,
  2474. "_N$cacheMode": 0,
  2475. "_id": ""
  2476. },
  2477. {
  2478. "__type__": "cc.PrefabInfo",
  2479. "root": {
  2480. "__id__": 1
  2481. },
  2482. "asset": {
  2483. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  2484. },
  2485. "fileId": "e4ieQVKxxLoYy1VJCfhlhL",
  2486. "sync": false
  2487. },
  2488. {
  2489. "__type__": "cc.Node",
  2490. "_name": "New Label",
  2491. "_objFlags": 0,
  2492. "_parent": {
  2493. "__id__": 27
  2494. },
  2495. "_children": [],
  2496. "_active": true,
  2497. "_components": [
  2498. {
  2499. "__id__": 70
  2500. }
  2501. ],
  2502. "_prefab": {
  2503. "__id__": 71
  2504. },
  2505. "_opacity": 255,
  2506. "_color": {
  2507. "__type__": "cc.Color",
  2508. "r": 153,
  2509. "g": 153,
  2510. "b": 153,
  2511. "a": 255
  2512. },
  2513. "_contentSize": {
  2514. "__type__": "cc.Size",
  2515. "width": 112,
  2516. "height": 50.4
  2517. },
  2518. "_anchorPoint": {
  2519. "__type__": "cc.Vec2",
  2520. "x": 0,
  2521. "y": 0.5
  2522. },
  2523. "_trs": {
  2524. "__type__": "TypedArray",
  2525. "ctor": "Float64Array",
  2526. "array": [
  2527. -330,
  2528. -63,
  2529. 0,
  2530. 0,
  2531. 0,
  2532. 0,
  2533. 1,
  2534. 1,
  2535. 1,
  2536. 1
  2537. ]
  2538. },
  2539. "_eulerAngles": {
  2540. "__type__": "cc.Vec3",
  2541. "x": 0,
  2542. "y": 0,
  2543. "z": 0
  2544. },
  2545. "_skewX": 0,
  2546. "_skewY": 0,
  2547. "_is3DNode": false,
  2548. "_groupIndex": 0,
  2549. "groupIndex": 0,
  2550. "_id": ""
  2551. },
  2552. {
  2553. "__type__": "cc.Label",
  2554. "_name": "",
  2555. "_objFlags": 0,
  2556. "node": {
  2557. "__id__": 69
  2558. },
  2559. "_enabled": true,
  2560. "_materials": [
  2561. {
  2562. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2563. }
  2564. ],
  2565. "_srcBlendFactor": 770,
  2566. "_dstBlendFactor": 771,
  2567. "_string": "到账方式",
  2568. "_N$string": "到账方式",
  2569. "_fontSize": 28,
  2570. "_lineHeight": 40,
  2571. "_enableWrapText": true,
  2572. "_N$file": null,
  2573. "_isSystemFontUsed": true,
  2574. "_spacingX": 0,
  2575. "_batchAsBitmap": false,
  2576. "_styleFlags": 0,
  2577. "_underlineHeight": 0,
  2578. "_N$horizontalAlign": 1,
  2579. "_N$verticalAlign": 1,
  2580. "_N$fontFamily": "Arial",
  2581. "_N$overflow": 0,
  2582. "_N$cacheMode": 0,
  2583. "_id": ""
  2584. },
  2585. {
  2586. "__type__": "cc.PrefabInfo",
  2587. "root": {
  2588. "__id__": 1
  2589. },
  2590. "asset": {
  2591. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  2592. },
  2593. "fileId": "e6v7ily/hAJqJxYq03nDau",
  2594. "sync": false
  2595. },
  2596. {
  2597. "__type__": "cc.Node",
  2598. "_name": "New Label",
  2599. "_objFlags": 0,
  2600. "_parent": {
  2601. "__id__": 27
  2602. },
  2603. "_children": [],
  2604. "_active": true,
  2605. "_components": [
  2606. {
  2607. "__id__": 73
  2608. }
  2609. ],
  2610. "_prefab": {
  2611. "__id__": 74
  2612. },
  2613. "_opacity": 255,
  2614. "_color": {
  2615. "__type__": "cc.Color",
  2616. "r": 153,
  2617. "g": 153,
  2618. "b": 153,
  2619. "a": 255
  2620. },
  2621. "_contentSize": {
  2622. "__type__": "cc.Size",
  2623. "width": 84,
  2624. "height": 50.4
  2625. },
  2626. "_anchorPoint": {
  2627. "__type__": "cc.Vec2",
  2628. "x": 0,
  2629. "y": 0.5
  2630. },
  2631. "_trs": {
  2632. "__type__": "TypedArray",
  2633. "ctor": "Float64Array",
  2634. "array": [
  2635. -330,
  2636. -126,
  2637. 0,
  2638. 0,
  2639. 0,
  2640. 0,
  2641. 1,
  2642. 1,
  2643. 1,
  2644. 1
  2645. ]
  2646. },
  2647. "_eulerAngles": {
  2648. "__type__": "cc.Vec3",
  2649. "x": 0,
  2650. "y": 0,
  2651. "z": 0
  2652. },
  2653. "_skewX": 0,
  2654. "_skewY": 0,
  2655. "_is3DNode": false,
  2656. "_groupIndex": 0,
  2657. "groupIndex": 0,
  2658. "_id": ""
  2659. },
  2660. {
  2661. "__type__": "cc.Label",
  2662. "_name": "",
  2663. "_objFlags": 0,
  2664. "node": {
  2665. "__id__": 72
  2666. },
  2667. "_enabled": true,
  2668. "_materials": [
  2669. {
  2670. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2671. }
  2672. ],
  2673. "_srcBlendFactor": 770,
  2674. "_dstBlendFactor": 771,
  2675. "_string": "服务费",
  2676. "_N$string": "服务费",
  2677. "_fontSize": 28,
  2678. "_lineHeight": 40,
  2679. "_enableWrapText": true,
  2680. "_N$file": null,
  2681. "_isSystemFontUsed": true,
  2682. "_spacingX": 0,
  2683. "_batchAsBitmap": false,
  2684. "_styleFlags": 0,
  2685. "_underlineHeight": 0,
  2686. "_N$horizontalAlign": 1,
  2687. "_N$verticalAlign": 1,
  2688. "_N$fontFamily": "Arial",
  2689. "_N$overflow": 0,
  2690. "_N$cacheMode": 0,
  2691. "_id": ""
  2692. },
  2693. {
  2694. "__type__": "cc.PrefabInfo",
  2695. "root": {
  2696. "__id__": 1
  2697. },
  2698. "asset": {
  2699. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  2700. },
  2701. "fileId": "a6fhHyUvdHBr3UHxoD5y5f",
  2702. "sync": false
  2703. },
  2704. {
  2705. "__type__": "cc.Node",
  2706. "_name": "labMoeny",
  2707. "_objFlags": 0,
  2708. "_parent": {
  2709. "__id__": 27
  2710. },
  2711. "_children": [],
  2712. "_active": true,
  2713. "_components": [
  2714. {
  2715. "__id__": 76
  2716. }
  2717. ],
  2718. "_prefab": {
  2719. "__id__": 77
  2720. },
  2721. "_opacity": 255,
  2722. "_color": {
  2723. "__type__": "cc.Color",
  2724. "r": 13,
  2725. "g": 13,
  2726. "b": 13,
  2727. "a": 255
  2728. },
  2729. "_contentSize": {
  2730. "__type__": "cc.Size",
  2731. "width": 66.92,
  2732. "height": 50.4
  2733. },
  2734. "_anchorPoint": {
  2735. "__type__": "cc.Vec2",
  2736. "x": 1,
  2737. "y": 0.5
  2738. },
  2739. "_trs": {
  2740. "__type__": "TypedArray",
  2741. "ctor": "Float64Array",
  2742. "array": [
  2743. 325.229,
  2744. 0,
  2745. 0,
  2746. 0,
  2747. 0,
  2748. 0,
  2749. 1,
  2750. 1,
  2751. 1,
  2752. 1
  2753. ]
  2754. },
  2755. "_eulerAngles": {
  2756. "__type__": "cc.Vec3",
  2757. "x": 0,
  2758. "y": 0,
  2759. "z": 0
  2760. },
  2761. "_skewX": 0,
  2762. "_skewY": 0,
  2763. "_is3DNode": false,
  2764. "_groupIndex": 0,
  2765. "groupIndex": 0,
  2766. "_id": ""
  2767. },
  2768. {
  2769. "__type__": "cc.Label",
  2770. "_name": "",
  2771. "_objFlags": 0,
  2772. "node": {
  2773. "__id__": 75
  2774. },
  2775. "_enabled": true,
  2776. "_materials": [
  2777. {
  2778. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2779. }
  2780. ],
  2781. "_srcBlendFactor": 770,
  2782. "_dstBlendFactor": 771,
  2783. "_string": "¥0.3",
  2784. "_N$string": "¥0.3",
  2785. "_fontSize": 28,
  2786. "_lineHeight": 40,
  2787. "_enableWrapText": true,
  2788. "_N$file": null,
  2789. "_isSystemFontUsed": true,
  2790. "_spacingX": 0,
  2791. "_batchAsBitmap": false,
  2792. "_styleFlags": 1,
  2793. "_underlineHeight": 0,
  2794. "_N$horizontalAlign": 1,
  2795. "_N$verticalAlign": 1,
  2796. "_N$fontFamily": "Arial",
  2797. "_N$overflow": 0,
  2798. "_N$cacheMode": 0,
  2799. "_id": ""
  2800. },
  2801. {
  2802. "__type__": "cc.PrefabInfo",
  2803. "root": {
  2804. "__id__": 1
  2805. },
  2806. "asset": {
  2807. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  2808. },
  2809. "fileId": "c0YewshjxJwbYuZDkCqaO0",
  2810. "sync": false
  2811. },
  2812. {
  2813. "__type__": "cc.Node",
  2814. "_name": "New Label",
  2815. "_objFlags": 0,
  2816. "_parent": {
  2817. "__id__": 27
  2818. },
  2819. "_children": [],
  2820. "_active": true,
  2821. "_components": [
  2822. {
  2823. "__id__": 79
  2824. }
  2825. ],
  2826. "_prefab": {
  2827. "__id__": 80
  2828. },
  2829. "_opacity": 255,
  2830. "_color": {
  2831. "__type__": "cc.Color",
  2832. "r": 13,
  2833. "g": 13,
  2834. "b": 13,
  2835. "a": 255
  2836. },
  2837. "_contentSize": {
  2838. "__type__": "cc.Size",
  2839. "width": 56,
  2840. "height": 50.4
  2841. },
  2842. "_anchorPoint": {
  2843. "__type__": "cc.Vec2",
  2844. "x": 1,
  2845. "y": 0.5
  2846. },
  2847. "_trs": {
  2848. "__type__": "TypedArray",
  2849. "ctor": "Float64Array",
  2850. "array": [
  2851. 325.229,
  2852. -63,
  2853. 0,
  2854. 0,
  2855. 0,
  2856. 0,
  2857. 1,
  2858. 1,
  2859. 1,
  2860. 1
  2861. ]
  2862. },
  2863. "_eulerAngles": {
  2864. "__type__": "cc.Vec3",
  2865. "x": 0,
  2866. "y": 0,
  2867. "z": 0
  2868. },
  2869. "_skewX": 0,
  2870. "_skewY": 0,
  2871. "_is3DNode": false,
  2872. "_groupIndex": 0,
  2873. "groupIndex": 0,
  2874. "_id": ""
  2875. },
  2876. {
  2877. "__type__": "cc.Label",
  2878. "_name": "",
  2879. "_objFlags": 0,
  2880. "node": {
  2881. "__id__": 78
  2882. },
  2883. "_enabled": true,
  2884. "_materials": [
  2885. {
  2886. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2887. }
  2888. ],
  2889. "_srcBlendFactor": 770,
  2890. "_dstBlendFactor": 771,
  2891. "_string": "微信",
  2892. "_N$string": "微信",
  2893. "_fontSize": 28,
  2894. "_lineHeight": 40,
  2895. "_enableWrapText": true,
  2896. "_N$file": null,
  2897. "_isSystemFontUsed": true,
  2898. "_spacingX": 0,
  2899. "_batchAsBitmap": false,
  2900. "_styleFlags": 1,
  2901. "_underlineHeight": 0,
  2902. "_N$horizontalAlign": 1,
  2903. "_N$verticalAlign": 1,
  2904. "_N$fontFamily": "Arial",
  2905. "_N$overflow": 0,
  2906. "_N$cacheMode": 0,
  2907. "_id": ""
  2908. },
  2909. {
  2910. "__type__": "cc.PrefabInfo",
  2911. "root": {
  2912. "__id__": 1
  2913. },
  2914. "asset": {
  2915. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  2916. },
  2917. "fileId": "0b30vUiR5InaIaSP2+Y6wa",
  2918. "sync": false
  2919. },
  2920. {
  2921. "__type__": "cc.Node",
  2922. "_name": "New Label",
  2923. "_objFlags": 0,
  2924. "_parent": {
  2925. "__id__": 27
  2926. },
  2927. "_children": [],
  2928. "_active": true,
  2929. "_components": [
  2930. {
  2931. "__id__": 82
  2932. }
  2933. ],
  2934. "_prefab": {
  2935. "__id__": 83
  2936. },
  2937. "_opacity": 255,
  2938. "_color": {
  2939. "__type__": "cc.Color",
  2940. "r": 13,
  2941. "g": 13,
  2942. "b": 13,
  2943. "a": 255
  2944. },
  2945. "_contentSize": {
  2946. "__type__": "cc.Size",
  2947. "width": 56,
  2948. "height": 50.4
  2949. },
  2950. "_anchorPoint": {
  2951. "__type__": "cc.Vec2",
  2952. "x": 1,
  2953. "y": 0.5
  2954. },
  2955. "_trs": {
  2956. "__type__": "TypedArray",
  2957. "ctor": "Float64Array",
  2958. "array": [
  2959. 325.229,
  2960. -126,
  2961. 0,
  2962. 0,
  2963. 0,
  2964. 0,
  2965. 1,
  2966. 1,
  2967. 1,
  2968. 1
  2969. ]
  2970. },
  2971. "_eulerAngles": {
  2972. "__type__": "cc.Vec3",
  2973. "x": 0,
  2974. "y": 0,
  2975. "z": 0
  2976. },
  2977. "_skewX": 0,
  2978. "_skewY": 0,
  2979. "_is3DNode": false,
  2980. "_groupIndex": 0,
  2981. "groupIndex": 0,
  2982. "_id": ""
  2983. },
  2984. {
  2985. "__type__": "cc.Label",
  2986. "_name": "",
  2987. "_objFlags": 0,
  2988. "node": {
  2989. "__id__": 81
  2990. },
  2991. "_enabled": true,
  2992. "_materials": [
  2993. {
  2994. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2995. }
  2996. ],
  2997. "_srcBlendFactor": 770,
  2998. "_dstBlendFactor": 771,
  2999. "_string": "免费",
  3000. "_N$string": "免费",
  3001. "_fontSize": 28,
  3002. "_lineHeight": 40,
  3003. "_enableWrapText": true,
  3004. "_N$file": null,
  3005. "_isSystemFontUsed": true,
  3006. "_spacingX": 0,
  3007. "_batchAsBitmap": false,
  3008. "_styleFlags": 1,
  3009. "_underlineHeight": 0,
  3010. "_N$horizontalAlign": 1,
  3011. "_N$verticalAlign": 1,
  3012. "_N$fontFamily": "Arial",
  3013. "_N$overflow": 0,
  3014. "_N$cacheMode": 0,
  3015. "_id": ""
  3016. },
  3017. {
  3018. "__type__": "cc.PrefabInfo",
  3019. "root": {
  3020. "__id__": 1
  3021. },
  3022. "asset": {
  3023. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  3024. },
  3025. "fileId": "95vqCC26dArqGLTtmT2r3Q",
  3026. "sync": false
  3027. },
  3028. {
  3029. "__type__": "cc.Node",
  3030. "_name": "btn_8",
  3031. "_objFlags": 0,
  3032. "_parent": {
  3033. "__id__": 27
  3034. },
  3035. "_children": [
  3036. {
  3037. "__id__": 85
  3038. },
  3039. {
  3040. "__id__": 88
  3041. }
  3042. ],
  3043. "_active": true,
  3044. "_components": [
  3045. {
  3046. "__id__": 91
  3047. },
  3048. {
  3049. "__id__": 92
  3050. }
  3051. ],
  3052. "_prefab": {
  3053. "__id__": 94
  3054. },
  3055. "_opacity": 255,
  3056. "_color": {
  3057. "__type__": "cc.Color",
  3058. "r": 255,
  3059. "g": 255,
  3060. "b": 255,
  3061. "a": 255
  3062. },
  3063. "_contentSize": {
  3064. "__type__": "cc.Size",
  3065. "width": 330,
  3066. "height": 70
  3067. },
  3068. "_anchorPoint": {
  3069. "__type__": "cc.Vec2",
  3070. "x": 0.5,
  3071. "y": 0.5
  3072. },
  3073. "_trs": {
  3074. "__type__": "TypedArray",
  3075. "ctor": "Float64Array",
  3076. "array": [
  3077. 0,
  3078. -462.014,
  3079. 0,
  3080. 0,
  3081. 0,
  3082. 0,
  3083. 1,
  3084. 1,
  3085. 1,
  3086. 0
  3087. ]
  3088. },
  3089. "_eulerAngles": {
  3090. "__type__": "cc.Vec3",
  3091. "x": 0,
  3092. "y": 0,
  3093. "z": 0
  3094. },
  3095. "_skewX": 0,
  3096. "_skewY": 0,
  3097. "_is3DNode": false,
  3098. "_groupIndex": 0,
  3099. "groupIndex": 0,
  3100. "_id": ""
  3101. },
  3102. {
  3103. "__type__": "cc.Node",
  3104. "_name": "New Label",
  3105. "_objFlags": 0,
  3106. "_parent": {
  3107. "__id__": 84
  3108. },
  3109. "_children": [],
  3110. "_active": true,
  3111. "_components": [
  3112. {
  3113. "__id__": 86
  3114. }
  3115. ],
  3116. "_prefab": {
  3117. "__id__": 87
  3118. },
  3119. "_opacity": 255,
  3120. "_color": {
  3121. "__type__": "cc.Color",
  3122. "r": 2,
  3123. "g": 196,
  3124. "b": 92,
  3125. "a": 255
  3126. },
  3127. "_contentSize": {
  3128. "__type__": "cc.Size",
  3129. "width": 32,
  3130. "height": 50.4
  3131. },
  3132. "_anchorPoint": {
  3133. "__type__": "cc.Vec2",
  3134. "x": 0.5,
  3135. "y": 0.5
  3136. },
  3137. "_trs": {
  3138. "__type__": "TypedArray",
  3139. "ctor": "Float64Array",
  3140. "array": [
  3141. -18,
  3142. 0,
  3143. 0,
  3144. 0,
  3145. 0,
  3146. 0,
  3147. 1,
  3148. 1,
  3149. 1,
  3150. 1
  3151. ]
  3152. },
  3153. "_eulerAngles": {
  3154. "__type__": "cc.Vec3",
  3155. "x": 0,
  3156. "y": 0,
  3157. "z": 0
  3158. },
  3159. "_skewX": 0,
  3160. "_skewY": 0,
  3161. "_is3DNode": false,
  3162. "_groupIndex": 0,
  3163. "groupIndex": 0,
  3164. "_id": ""
  3165. },
  3166. {
  3167. "__type__": "cc.Label",
  3168. "_name": "",
  3169. "_objFlags": 0,
  3170. "node": {
  3171. "__id__": 85
  3172. },
  3173. "_enabled": true,
  3174. "_materials": [
  3175. {
  3176. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3177. }
  3178. ],
  3179. "_srcBlendFactor": 770,
  3180. "_dstBlendFactor": 771,
  3181. "_string": "完",
  3182. "_N$string": "完",
  3183. "_fontSize": 32,
  3184. "_lineHeight": 40,
  3185. "_enableWrapText": true,
  3186. "_N$file": null,
  3187. "_isSystemFontUsed": true,
  3188. "_spacingX": 0,
  3189. "_batchAsBitmap": false,
  3190. "_styleFlags": 0,
  3191. "_underlineHeight": 0,
  3192. "_N$horizontalAlign": 1,
  3193. "_N$verticalAlign": 1,
  3194. "_N$fontFamily": "Arial",
  3195. "_N$overflow": 0,
  3196. "_N$cacheMode": 0,
  3197. "_id": ""
  3198. },
  3199. {
  3200. "__type__": "cc.PrefabInfo",
  3201. "root": {
  3202. "__id__": 1
  3203. },
  3204. "asset": {
  3205. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  3206. },
  3207. "fileId": "7bpXfykjFBXanmn98HfKSv",
  3208. "sync": false
  3209. },
  3210. {
  3211. "__type__": "cc.Node",
  3212. "_name": "New Label",
  3213. "_objFlags": 0,
  3214. "_parent": {
  3215. "__id__": 84
  3216. },
  3217. "_children": [],
  3218. "_active": true,
  3219. "_components": [
  3220. {
  3221. "__id__": 89
  3222. }
  3223. ],
  3224. "_prefab": {
  3225. "__id__": 90
  3226. },
  3227. "_opacity": 255,
  3228. "_color": {
  3229. "__type__": "cc.Color",
  3230. "r": 2,
  3231. "g": 196,
  3232. "b": 92,
  3233. "a": 255
  3234. },
  3235. "_contentSize": {
  3236. "__type__": "cc.Size",
  3237. "width": 32,
  3238. "height": 50.4
  3239. },
  3240. "_anchorPoint": {
  3241. "__type__": "cc.Vec2",
  3242. "x": 0.5,
  3243. "y": 0.5
  3244. },
  3245. "_trs": {
  3246. "__type__": "TypedArray",
  3247. "ctor": "Float64Array",
  3248. "array": [
  3249. 18,
  3250. 0,
  3251. 0,
  3252. 0,
  3253. 0,
  3254. 0,
  3255. 1,
  3256. 1,
  3257. 1,
  3258. 1
  3259. ]
  3260. },
  3261. "_eulerAngles": {
  3262. "__type__": "cc.Vec3",
  3263. "x": 0,
  3264. "y": 0,
  3265. "z": 0
  3266. },
  3267. "_skewX": 0,
  3268. "_skewY": 0,
  3269. "_is3DNode": false,
  3270. "_groupIndex": 0,
  3271. "groupIndex": 0,
  3272. "_id": ""
  3273. },
  3274. {
  3275. "__type__": "cc.Label",
  3276. "_name": "",
  3277. "_objFlags": 0,
  3278. "node": {
  3279. "__id__": 88
  3280. },
  3281. "_enabled": true,
  3282. "_materials": [
  3283. {
  3284. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3285. }
  3286. ],
  3287. "_srcBlendFactor": 770,
  3288. "_dstBlendFactor": 771,
  3289. "_string": "成",
  3290. "_N$string": "成",
  3291. "_fontSize": 32,
  3292. "_lineHeight": 40,
  3293. "_enableWrapText": true,
  3294. "_N$file": null,
  3295. "_isSystemFontUsed": true,
  3296. "_spacingX": 0,
  3297. "_batchAsBitmap": false,
  3298. "_styleFlags": 0,
  3299. "_underlineHeight": 0,
  3300. "_N$horizontalAlign": 1,
  3301. "_N$verticalAlign": 1,
  3302. "_N$fontFamily": "Arial",
  3303. "_N$overflow": 0,
  3304. "_N$cacheMode": 0,
  3305. "_id": ""
  3306. },
  3307. {
  3308. "__type__": "cc.PrefabInfo",
  3309. "root": {
  3310. "__id__": 1
  3311. },
  3312. "asset": {
  3313. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  3314. },
  3315. "fileId": "03wsV6PWtAuIrkLQchhVDO",
  3316. "sync": false
  3317. },
  3318. {
  3319. "__type__": "cc.Sprite",
  3320. "_name": "",
  3321. "_objFlags": 0,
  3322. "node": {
  3323. "__id__": 84
  3324. },
  3325. "_enabled": true,
  3326. "_materials": [
  3327. {
  3328. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3329. }
  3330. ],
  3331. "_srcBlendFactor": 770,
  3332. "_dstBlendFactor": 771,
  3333. "_spriteFrame": {
  3334. "__uuid__": "6ab971fd-c87f-45c1-bc40-2a1edc91e7e9"
  3335. },
  3336. "_type": 0,
  3337. "_sizeMode": 1,
  3338. "_fillType": 0,
  3339. "_fillCenter": {
  3340. "__type__": "cc.Vec2",
  3341. "x": 0,
  3342. "y": 0
  3343. },
  3344. "_fillStart": 0,
  3345. "_fillRange": 0,
  3346. "_isTrimmedMode": true,
  3347. "_atlas": null,
  3348. "_id": ""
  3349. },
  3350. {
  3351. "__type__": "cdc50kCRVVBa5gcp4XXxVO+",
  3352. "_name": "",
  3353. "_objFlags": 0,
  3354. "node": {
  3355. "__id__": 84
  3356. },
  3357. "_enabled": true,
  3358. "node_panel": {
  3359. "__id__": 1
  3360. },
  3361. "transition_type": 3,
  3362. "onComplete": [
  3363. {
  3364. "__id__": 93
  3365. }
  3366. ],
  3367. "_id": ""
  3368. },
  3369. {
  3370. "__type__": "cc.ClickEvent",
  3371. "target": {
  3372. "__id__": 1
  3373. },
  3374. "component": "",
  3375. "_componentId": "7c96b8wPgBPeLS+KI5YpgFP",
  3376. "handler": "clickCloseBtn",
  3377. "customEventData": ""
  3378. },
  3379. {
  3380. "__type__": "cc.PrefabInfo",
  3381. "root": {
  3382. "__id__": 1
  3383. },
  3384. "asset": {
  3385. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  3386. },
  3387. "fileId": "76SnXZaDhJ35MoEKoesPaK",
  3388. "sync": false
  3389. },
  3390. {
  3391. "__type__": "ac053zwqaRD6IJmTlQWmefZ",
  3392. "_name": "",
  3393. "_objFlags": 0,
  3394. "node": {
  3395. "__id__": 27
  3396. },
  3397. "_enabled": true,
  3398. "effect_par": {
  3399. "__id__": 27
  3400. },
  3401. "open_effect": 4,
  3402. "isOpenCloseEffect": true,
  3403. "close_effect": 4,
  3404. "close_toPoint": "",
  3405. "close_uibg": false,
  3406. "isDelayOneFrame": false,
  3407. "_id": ""
  3408. },
  3409. {
  3410. "__type__": "cc.PrefabInfo",
  3411. "root": {
  3412. "__id__": 1
  3413. },
  3414. "asset": {
  3415. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  3416. },
  3417. "fileId": "54N88F2ghHb7WyIuQXGBnC",
  3418. "sync": false
  3419. },
  3420. {
  3421. "__type__": "7c96b8wPgBPeLS+KI5YpgFP",
  3422. "_name": "",
  3423. "_objFlags": 0,
  3424. "node": {
  3425. "__id__": 1
  3426. },
  3427. "_enabled": true,
  3428. "loadPart": {
  3429. "__id__": 2
  3430. },
  3431. "loadAni": {
  3432. "__id__": 24
  3433. },
  3434. "cashPro": {
  3435. "__id__": 27
  3436. },
  3437. "labMoney": {
  3438. "__id__": 76
  3439. },
  3440. "_id": ""
  3441. },
  3442. {
  3443. "__type__": "cc.PrefabInfo",
  3444. "root": {
  3445. "__id__": 1
  3446. },
  3447. "asset": {
  3448. "__uuid__": "e67940bb-e37a-4807-861d-b355ac3e5cea"
  3449. },
  3450. "fileId": "",
  3451. "sync": false
  3452. }
  3453. ]