redPackeItem.prefab 48 KB

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