newOpenRedBag.prefab 65 KB

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