sign.prefab 53 KB

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