drawRedRecord.prefab 44 KB

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