HarvestPanel.prefab 54 KB

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