newOpenRedBag.prefab 65 KB

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