replacement.prefab 44 KB

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