draw_content.prefab 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383
  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": "Draw",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 6
  24. }
  25. ],
  26. "_active": true,
  27. "_level": 1,
  28. "_components": [
  29. {
  30. "__id__": 126
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 127
  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": 750,
  47. "height": 1334
  48. },
  49. "_anchorPoint": {
  50. "__type__": "cc.Vec2",
  51. "x": 0.5,
  52. "y": 0.5
  53. },
  54. "_position": {
  55. "__type__": "cc.Vec3",
  56. "x": 1820,
  57. "y": 1290,
  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": "transparent_bg",
  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. "__id__": 4
  97. }
  98. ],
  99. "_prefab": {
  100. "__id__": 5
  101. },
  102. "_opacity": 153,
  103. "_color": {
  104. "__type__": "cc.Color",
  105. "r": 0,
  106. "g": 0,
  107. "b": 0,
  108. "a": 255
  109. },
  110. "_contentSize": {
  111. "__type__": "cc.Size",
  112. "width": 750,
  113. "height": 1800
  114. },
  115. "_anchorPoint": {
  116. "__type__": "cc.Vec2",
  117. "x": 0.5,
  118. "y": 0.5
  119. },
  120. "_position": {
  121. "__type__": "cc.Vec3",
  122. "x": 0,
  123. "y": 0,
  124. "z": 0
  125. },
  126. "_scale": {
  127. "__type__": "cc.Vec3",
  128. "x": 1,
  129. "y": 1,
  130. "z": 1
  131. },
  132. "_rotationX": 0,
  133. "_rotationY": 0,
  134. "_quat": {
  135. "__type__": "cc.Quat",
  136. "x": 0,
  137. "y": 0,
  138. "z": 0,
  139. "w": 1
  140. },
  141. "_skewX": 0,
  142. "_skewY": 0,
  143. "_zIndex": 0,
  144. "groupIndex": 0,
  145. "_id": ""
  146. },
  147. {
  148. "__type__": "cc.Sprite",
  149. "_name": "",
  150. "_objFlags": 0,
  151. "node": {
  152. "__id__": 2
  153. },
  154. "_enabled": true,
  155. "_srcBlendFactor": 770,
  156. "_dstBlendFactor": 771,
  157. "_spriteFrame": {
  158. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  159. },
  160. "_type": 0,
  161. "_sizeMode": 0,
  162. "_fillType": 0,
  163. "_fillCenter": {
  164. "__type__": "cc.Vec2",
  165. "x": 0,
  166. "y": 0
  167. },
  168. "_fillStart": 0,
  169. "_fillRange": 0,
  170. "_isTrimmedMode": true,
  171. "_state": 0,
  172. "_atlas": null,
  173. "_id": ""
  174. },
  175. {
  176. "__type__": "cc.BlockInputEvents",
  177. "_name": "",
  178. "_objFlags": 0,
  179. "node": {
  180. "__id__": 2
  181. },
  182. "_enabled": true,
  183. "_id": ""
  184. },
  185. {
  186. "__type__": "cc.PrefabInfo",
  187. "root": {
  188. "__id__": 1
  189. },
  190. "asset": {
  191. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  192. },
  193. "fileId": "25lf4eCUxKupJvhmLzu7mH",
  194. "sync": false
  195. },
  196. {
  197. "__type__": "cc.Node",
  198. "_name": "content",
  199. "_objFlags": 0,
  200. "_parent": {
  201. "__id__": 1
  202. },
  203. "_children": [
  204. {
  205. "__id__": 7
  206. },
  207. {
  208. "__id__": 11
  209. },
  210. {
  211. "__id__": 23
  212. },
  213. {
  214. "__id__": 27
  215. },
  216. {
  217. "__id__": 100
  218. },
  219. {
  220. "__id__": 109
  221. }
  222. ],
  223. "_active": true,
  224. "_level": 2,
  225. "_components": [],
  226. "_prefab": {
  227. "__id__": 125
  228. },
  229. "_opacity": 255,
  230. "_color": {
  231. "__type__": "cc.Color",
  232. "r": 255,
  233. "g": 255,
  234. "b": 255,
  235. "a": 255
  236. },
  237. "_contentSize": {
  238. "__type__": "cc.Size",
  239. "width": 0,
  240. "height": 0
  241. },
  242. "_anchorPoint": {
  243. "__type__": "cc.Vec2",
  244. "x": 0.5,
  245. "y": 0.5
  246. },
  247. "_position": {
  248. "__type__": "cc.Vec3",
  249. "x": 0,
  250. "y": 0,
  251. "z": 0
  252. },
  253. "_scale": {
  254. "__type__": "cc.Vec3",
  255. "x": 1,
  256. "y": 1,
  257. "z": 1
  258. },
  259. "_rotationX": 0,
  260. "_rotationY": 0,
  261. "_quat": {
  262. "__type__": "cc.Quat",
  263. "x": 0,
  264. "y": 0,
  265. "z": 0,
  266. "w": 1
  267. },
  268. "_skewX": 0,
  269. "_skewY": 0,
  270. "_zIndex": 0,
  271. "groupIndex": 0,
  272. "_id": ""
  273. },
  274. {
  275. "__type__": "cc.Node",
  276. "_name": "draw_bg",
  277. "_objFlags": 0,
  278. "_parent": {
  279. "__id__": 6
  280. },
  281. "_children": [],
  282. "_active": true,
  283. "_level": 3,
  284. "_components": [
  285. {
  286. "__id__": 8
  287. },
  288. {
  289. "__id__": 9
  290. }
  291. ],
  292. "_prefab": {
  293. "__id__": 10
  294. },
  295. "_opacity": 255,
  296. "_color": {
  297. "__type__": "cc.Color",
  298. "r": 255,
  299. "g": 255,
  300. "b": 255,
  301. "a": 255
  302. },
  303. "_contentSize": {
  304. "__type__": "cc.Size",
  305. "width": 700,
  306. "height": 500
  307. },
  308. "_anchorPoint": {
  309. "__type__": "cc.Vec2",
  310. "x": 0.5,
  311. "y": 0.5
  312. },
  313. "_position": {
  314. "__type__": "cc.Vec3",
  315. "x": 0,
  316. "y": 0,
  317. "z": 0
  318. },
  319. "_scale": {
  320. "__type__": "cc.Vec3",
  321. "x": 1,
  322. "y": 1,
  323. "z": 1
  324. },
  325. "_rotationX": 0,
  326. "_rotationY": 0,
  327. "_quat": {
  328. "__type__": "cc.Quat",
  329. "x": 0,
  330. "y": 0,
  331. "z": 0,
  332. "w": 1
  333. },
  334. "_skewX": 0,
  335. "_skewY": 0,
  336. "_zIndex": 0,
  337. "groupIndex": 0,
  338. "_id": ""
  339. },
  340. {
  341. "__type__": "cc.Sprite",
  342. "_name": "",
  343. "_objFlags": 0,
  344. "node": {
  345. "__id__": 7
  346. },
  347. "_enabled": true,
  348. "_srcBlendFactor": 770,
  349. "_dstBlendFactor": 771,
  350. "_spriteFrame": {
  351. "__uuid__": "46fff2fd-a06a-4b3d-a835-547c67766224"
  352. },
  353. "_type": 1,
  354. "_sizeMode": 0,
  355. "_fillType": 0,
  356. "_fillCenter": {
  357. "__type__": "cc.Vec2",
  358. "x": 0,
  359. "y": 0
  360. },
  361. "_fillStart": 0,
  362. "_fillRange": 0,
  363. "_isTrimmedMode": true,
  364. "_state": 0,
  365. "_atlas": null,
  366. "_id": ""
  367. },
  368. {
  369. "__type__": "cc.Widget",
  370. "_name": "",
  371. "_objFlags": 0,
  372. "node": {
  373. "__id__": 7
  374. },
  375. "_enabled": true,
  376. "alignMode": 1,
  377. "_target": null,
  378. "_alignFlags": 18,
  379. "_left": 0,
  380. "_right": 0,
  381. "_top": 0,
  382. "_bottom": 0,
  383. "_verticalCenter": 0,
  384. "_horizontalCenter": 0,
  385. "_isAbsLeft": true,
  386. "_isAbsRight": true,
  387. "_isAbsTop": true,
  388. "_isAbsBottom": true,
  389. "_isAbsHorizontalCenter": true,
  390. "_isAbsVerticalCenter": true,
  391. "_originalWidth": 0,
  392. "_originalHeight": 0,
  393. "_id": ""
  394. },
  395. {
  396. "__type__": "cc.PrefabInfo",
  397. "root": {
  398. "__id__": 1
  399. },
  400. "asset": {
  401. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  402. },
  403. "fileId": "59wDU+9TxMJYKk4QGU7WA7",
  404. "sync": false
  405. },
  406. {
  407. "__type__": "cc.Node",
  408. "_name": "colour_bar",
  409. "_objFlags": 0,
  410. "_parent": {
  411. "__id__": 6
  412. },
  413. "_children": [
  414. {
  415. "__id__": 12
  416. }
  417. ],
  418. "_active": true,
  419. "_level": 3,
  420. "_components": [
  421. {
  422. "__id__": 20
  423. },
  424. {
  425. "__id__": 21
  426. }
  427. ],
  428. "_prefab": {
  429. "__id__": 22
  430. },
  431. "_opacity": 255,
  432. "_color": {
  433. "__type__": "cc.Color",
  434. "r": 255,
  435. "g": 255,
  436. "b": 255,
  437. "a": 255
  438. },
  439. "_contentSize": {
  440. "__type__": "cc.Size",
  441. "width": 432,
  442. "height": 96
  443. },
  444. "_anchorPoint": {
  445. "__type__": "cc.Vec2",
  446. "x": 0.5,
  447. "y": 0.5
  448. },
  449. "_position": {
  450. "__type__": "cc.Vec3",
  451. "x": 0,
  452. "y": 257,
  453. "z": 0
  454. },
  455. "_scale": {
  456. "__type__": "cc.Vec3",
  457. "x": 1,
  458. "y": 1,
  459. "z": 1
  460. },
  461. "_rotationX": 0,
  462. "_rotationY": 0,
  463. "_quat": {
  464. "__type__": "cc.Quat",
  465. "x": 0,
  466. "y": 0,
  467. "z": 0,
  468. "w": 1
  469. },
  470. "_skewX": 0,
  471. "_skewY": 0,
  472. "_zIndex": 0,
  473. "groupIndex": 0,
  474. "_id": ""
  475. },
  476. {
  477. "__type__": "cc.Node",
  478. "_name": "title_label",
  479. "_objFlags": 0,
  480. "_parent": {
  481. "__id__": 11
  482. },
  483. "_children": [
  484. {
  485. "__id__": 13
  486. }
  487. ],
  488. "_active": true,
  489. "_level": 4,
  490. "_components": [
  491. {
  492. "__id__": 17
  493. },
  494. {
  495. "__id__": 18
  496. }
  497. ],
  498. "_prefab": {
  499. "__id__": 19
  500. },
  501. "_opacity": 255,
  502. "_color": {
  503. "__type__": "cc.Color",
  504. "r": 255,
  505. "g": 255,
  506. "b": 255,
  507. "a": 255
  508. },
  509. "_contentSize": {
  510. "__type__": "cc.Size",
  511. "width": 166,
  512. "height": 50
  513. },
  514. "_anchorPoint": {
  515. "__type__": "cc.Vec2",
  516. "x": 0.5,
  517. "y": 0.5
  518. },
  519. "_position": {
  520. "__type__": "cc.Vec3",
  521. "x": 3,
  522. "y": 12,
  523. "z": 0
  524. },
  525. "_scale": {
  526. "__type__": "cc.Vec3",
  527. "x": 1,
  528. "y": 1,
  529. "z": 1
  530. },
  531. "_rotationX": 0,
  532. "_rotationY": 0,
  533. "_quat": {
  534. "__type__": "cc.Quat",
  535. "x": 0,
  536. "y": 0,
  537. "z": 0,
  538. "w": 1
  539. },
  540. "_skewX": 0,
  541. "_skewY": 0,
  542. "_zIndex": 0,
  543. "groupIndex": 0,
  544. "_id": ""
  545. },
  546. {
  547. "__type__": "cc.PrivateNode",
  548. "_name": "RICHTEXT_CHILD",
  549. "_objFlags": 0,
  550. "_parent": {
  551. "__id__": 12
  552. },
  553. "_children": [],
  554. "_active": true,
  555. "_level": 5,
  556. "_components": [
  557. {
  558. "__id__": 14
  559. },
  560. {
  561. "__id__": 15
  562. }
  563. ],
  564. "_prefab": {
  565. "__id__": 16
  566. },
  567. "_opacity": 255,
  568. "_color": {
  569. "__type__": "cc.Color",
  570. "r": 255,
  571. "g": 255,
  572. "b": 255,
  573. "a": 255
  574. },
  575. "_contentSize": {
  576. "__type__": "cc.Size",
  577. "width": 166,
  578. "height": 50
  579. },
  580. "_anchorPoint": {
  581. "__type__": "cc.Vec2",
  582. "x": 0,
  583. "y": 0
  584. },
  585. "_position": {
  586. "__type__": "cc.Vec3",
  587. "x": -83,
  588. "y": -25,
  589. "z": 0
  590. },
  591. "_scale": {
  592. "__type__": "cc.Vec3",
  593. "x": 1,
  594. "y": 1,
  595. "z": 1
  596. },
  597. "_rotationX": 0,
  598. "_rotationY": 0,
  599. "_quat": {
  600. "__type__": "cc.Quat",
  601. "x": 0,
  602. "y": 0,
  603. "z": 0,
  604. "w": 1
  605. },
  606. "_skewX": 0,
  607. "_skewY": 0,
  608. "_zIndex": -32768,
  609. "groupIndex": 0,
  610. "_id": ""
  611. },
  612. {
  613. "__type__": "cc.Label",
  614. "_name": "",
  615. "_objFlags": 0,
  616. "node": {
  617. "__id__": 13
  618. },
  619. "_enabled": true,
  620. "_srcBlendFactor": 1,
  621. "_dstBlendFactor": 771,
  622. "_useOriginalSize": true,
  623. "_string": "幸运抽奖",
  624. "_N$string": "幸运抽奖",
  625. "_fontSize": 40,
  626. "_lineHeight": 50,
  627. "_enableWrapText": true,
  628. "_N$file": null,
  629. "_isSystemFontUsed": true,
  630. "_spacingX": 0,
  631. "_N$horizontalAlign": 0,
  632. "_N$verticalAlign": 1,
  633. "_N$fontFamily": "Arial",
  634. "_N$overflow": 0,
  635. "_id": ""
  636. },
  637. {
  638. "__type__": "cc.LabelOutline",
  639. "_name": "",
  640. "_objFlags": 0,
  641. "node": {
  642. "__id__": 13
  643. },
  644. "_enabled": true,
  645. "_color": {
  646. "__type__": "cc.Color",
  647. "r": 194,
  648. "g": 83,
  649. "b": 83,
  650. "a": 255
  651. },
  652. "_width": 3,
  653. "_id": ""
  654. },
  655. {
  656. "__type__": "cc.PrefabInfo",
  657. "root": {
  658. "__id__": 1
  659. },
  660. "asset": {
  661. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  662. },
  663. "fileId": "cdTdk0ACtJW5yc/d+ao4NZ",
  664. "sync": false
  665. },
  666. {
  667. "__type__": "cc.RichText",
  668. "_name": "",
  669. "_objFlags": 0,
  670. "node": {
  671. "__id__": 12
  672. },
  673. "_enabled": true,
  674. "_N$string": "<outline color=#c25353 width=3><b>幸运抽奖</b></outline>",
  675. "_N$horizontalAlign": 1,
  676. "_N$fontSize": 40,
  677. "_N$font": null,
  678. "_N$maxWidth": 0,
  679. "_N$lineHeight": 50,
  680. "_N$imageAtlas": null,
  681. "_N$handleTouchEvent": true,
  682. "_id": ""
  683. },
  684. {
  685. "__type__": "cc.Widget",
  686. "_name": "",
  687. "_objFlags": 0,
  688. "node": {
  689. "__id__": 12
  690. },
  691. "_enabled": true,
  692. "alignMode": 1,
  693. "_target": null,
  694. "_alignFlags": 18,
  695. "_left": 0,
  696. "_right": 0,
  697. "_top": 0,
  698. "_bottom": 0,
  699. "_verticalCenter": 12,
  700. "_horizontalCenter": 3,
  701. "_isAbsLeft": true,
  702. "_isAbsRight": true,
  703. "_isAbsTop": true,
  704. "_isAbsBottom": true,
  705. "_isAbsHorizontalCenter": true,
  706. "_isAbsVerticalCenter": true,
  707. "_originalWidth": 0,
  708. "_originalHeight": 0,
  709. "_id": ""
  710. },
  711. {
  712. "__type__": "cc.PrefabInfo",
  713. "root": {
  714. "__id__": 1
  715. },
  716. "asset": {
  717. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  718. },
  719. "fileId": "c2Fl63zqFKEpOTGyCCQyWo",
  720. "sync": false
  721. },
  722. {
  723. "__type__": "cc.Sprite",
  724. "_name": "",
  725. "_objFlags": 0,
  726. "node": {
  727. "__id__": 11
  728. },
  729. "_enabled": true,
  730. "_srcBlendFactor": 770,
  731. "_dstBlendFactor": 771,
  732. "_spriteFrame": {
  733. "__uuid__": "293d0917-ce0c-4a84-8fd1-43bb6d26935d"
  734. },
  735. "_type": 0,
  736. "_sizeMode": 0,
  737. "_fillType": 0,
  738. "_fillCenter": {
  739. "__type__": "cc.Vec2",
  740. "x": 0,
  741. "y": 0
  742. },
  743. "_fillStart": 0,
  744. "_fillRange": 0,
  745. "_isTrimmedMode": true,
  746. "_state": 0,
  747. "_atlas": null,
  748. "_id": ""
  749. },
  750. {
  751. "__type__": "cc.Widget",
  752. "_name": "",
  753. "_objFlags": 0,
  754. "node": {
  755. "__id__": 11
  756. },
  757. "_enabled": true,
  758. "alignMode": 1,
  759. "_target": null,
  760. "_alignFlags": 17,
  761. "_left": 0,
  762. "_right": 0,
  763. "_top": -305,
  764. "_bottom": 0,
  765. "_verticalCenter": 0,
  766. "_horizontalCenter": 0,
  767. "_isAbsLeft": true,
  768. "_isAbsRight": true,
  769. "_isAbsTop": true,
  770. "_isAbsBottom": true,
  771. "_isAbsHorizontalCenter": true,
  772. "_isAbsVerticalCenter": true,
  773. "_originalWidth": 0,
  774. "_originalHeight": 0,
  775. "_id": ""
  776. },
  777. {
  778. "__type__": "cc.PrefabInfo",
  779. "root": {
  780. "__id__": 1
  781. },
  782. "asset": {
  783. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  784. },
  785. "fileId": "54Y8ur6oxDb7H5pEXSpFl2",
  786. "sync": false
  787. },
  788. {
  789. "__type__": "cc.Node",
  790. "_name": "bottomDescLabel",
  791. "_objFlags": 0,
  792. "_parent": {
  793. "__id__": 6
  794. },
  795. "_children": [],
  796. "_active": true,
  797. "_level": 3,
  798. "_components": [
  799. {
  800. "__id__": 24
  801. },
  802. {
  803. "__id__": 25
  804. }
  805. ],
  806. "_prefab": {
  807. "__id__": 26
  808. },
  809. "_opacity": 255,
  810. "_color": {
  811. "__type__": "cc.Color",
  812. "r": 64,
  813. "g": 64,
  814. "b": 64,
  815. "a": 255
  816. },
  817. "_contentSize": {
  818. "__type__": "cc.Size",
  819. "width": 360,
  820. "height": 40
  821. },
  822. "_anchorPoint": {
  823. "__type__": "cc.Vec2",
  824. "x": 0.5,
  825. "y": 0.5
  826. },
  827. "_position": {
  828. "__type__": "cc.Vec3",
  829. "x": -9,
  830. "y": -202,
  831. "z": 0
  832. },
  833. "_scale": {
  834. "__type__": "cc.Vec3",
  835. "x": 1,
  836. "y": 1,
  837. "z": 1
  838. },
  839. "_rotationX": 0,
  840. "_rotationY": 0,
  841. "_quat": {
  842. "__type__": "cc.Quat",
  843. "x": 0,
  844. "y": 0,
  845. "z": 0,
  846. "w": 1
  847. },
  848. "_skewX": 0,
  849. "_skewY": 0,
  850. "_zIndex": 0,
  851. "groupIndex": 0,
  852. "_id": ""
  853. },
  854. {
  855. "__type__": "cc.Label",
  856. "_name": "",
  857. "_objFlags": 0,
  858. "node": {
  859. "__id__": 23
  860. },
  861. "_enabled": true,
  862. "_srcBlendFactor": 1,
  863. "_dstBlendFactor": 771,
  864. "_useOriginalSize": false,
  865. "_string": "转动转盘有机会获得稀有专属明星",
  866. "_N$string": "转动转盘有机会获得稀有专属明星",
  867. "_fontSize": 24,
  868. "_lineHeight": 40,
  869. "_enableWrapText": true,
  870. "_N$file": null,
  871. "_isSystemFontUsed": true,
  872. "_spacingX": 0,
  873. "_N$horizontalAlign": 1,
  874. "_N$verticalAlign": 1,
  875. "_N$fontFamily": "Arial",
  876. "_N$overflow": 0,
  877. "_id": ""
  878. },
  879. {
  880. "__type__": "cc.Widget",
  881. "_name": "",
  882. "_objFlags": 0,
  883. "node": {
  884. "__id__": 23
  885. },
  886. "_enabled": true,
  887. "alignMode": 1,
  888. "_target": null,
  889. "_alignFlags": 20,
  890. "_left": 0,
  891. "_right": 0,
  892. "_top": 0,
  893. "_bottom": -222,
  894. "_verticalCenter": 0,
  895. "_horizontalCenter": -9,
  896. "_isAbsLeft": true,
  897. "_isAbsRight": true,
  898. "_isAbsTop": true,
  899. "_isAbsBottom": true,
  900. "_isAbsHorizontalCenter": true,
  901. "_isAbsVerticalCenter": true,
  902. "_originalWidth": 0,
  903. "_originalHeight": 0,
  904. "_id": ""
  905. },
  906. {
  907. "__type__": "cc.PrefabInfo",
  908. "root": {
  909. "__id__": 1
  910. },
  911. "asset": {
  912. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  913. },
  914. "fileId": "72naDK5rdA4q8XyScXlnxa",
  915. "sync": false
  916. },
  917. {
  918. "__type__": "cc.Node",
  919. "_name": "layout",
  920. "_objFlags": 0,
  921. "_parent": {
  922. "__id__": 6
  923. },
  924. "_children": [
  925. {
  926. "__id__": 28
  927. },
  928. {
  929. "__id__": 51
  930. },
  931. {
  932. "__id__": 74
  933. }
  934. ],
  935. "_active": true,
  936. "_level": 3,
  937. "_components": [
  938. {
  939. "__id__": 97
  940. },
  941. {
  942. "__id__": 98
  943. }
  944. ],
  945. "_prefab": {
  946. "__id__": 99
  947. },
  948. "_opacity": 255,
  949. "_color": {
  950. "__type__": "cc.Color",
  951. "r": 255,
  952. "g": 255,
  953. "b": 255,
  954. "a": 255
  955. },
  956. "_contentSize": {
  957. "__type__": "cc.Size",
  958. "width": 640,
  959. "height": 335
  960. },
  961. "_anchorPoint": {
  962. "__type__": "cc.Vec2",
  963. "x": 0.5,
  964. "y": 0.5
  965. },
  966. "_position": {
  967. "__type__": "cc.Vec3",
  968. "x": 0,
  969. "y": 0,
  970. "z": 0
  971. },
  972. "_scale": {
  973. "__type__": "cc.Vec3",
  974. "x": 1,
  975. "y": 1,
  976. "z": 1
  977. },
  978. "_rotationX": 0,
  979. "_rotationY": 0,
  980. "_quat": {
  981. "__type__": "cc.Quat",
  982. "x": 0,
  983. "y": 0,
  984. "z": 0,
  985. "w": 1
  986. },
  987. "_skewX": 0,
  988. "_skewY": 0,
  989. "_zIndex": 0,
  990. "groupIndex": 0,
  991. "_id": ""
  992. },
  993. {
  994. "__type__": "cc.Node",
  995. "_name": "drawEement",
  996. "_objFlags": 0,
  997. "_parent": {
  998. "__id__": 27
  999. },
  1000. "_children": [
  1001. {
  1002. "__id__": 29
  1003. },
  1004. {
  1005. "__id__": 33
  1006. }
  1007. ],
  1008. "_active": true,
  1009. "_level": 4,
  1010. "_components": [],
  1011. "_prefab": {
  1012. "__id__": 50
  1013. },
  1014. "_opacity": 255,
  1015. "_color": {
  1016. "__type__": "cc.Color",
  1017. "r": 255,
  1018. "g": 255,
  1019. "b": 255,
  1020. "a": 255
  1021. },
  1022. "_contentSize": {
  1023. "__type__": "cc.Size",
  1024. "width": 200,
  1025. "height": 335
  1026. },
  1027. "_anchorPoint": {
  1028. "__type__": "cc.Vec2",
  1029. "x": 0.5,
  1030. "y": 0.5
  1031. },
  1032. "_position": {
  1033. "__type__": "cc.Vec3",
  1034. "x": -220,
  1035. "y": 0,
  1036. "z": 0
  1037. },
  1038. "_scale": {
  1039. "__type__": "cc.Vec3",
  1040. "x": 1,
  1041. "y": 1,
  1042. "z": 1
  1043. },
  1044. "_rotationX": 0,
  1045. "_rotationY": 0,
  1046. "_quat": {
  1047. "__type__": "cc.Quat",
  1048. "x": 0,
  1049. "y": 0,
  1050. "z": 0,
  1051. "w": 1
  1052. },
  1053. "_skewX": 0,
  1054. "_skewY": 0,
  1055. "_zIndex": 0,
  1056. "groupIndex": 0,
  1057. "_id": ""
  1058. },
  1059. {
  1060. "__type__": "cc.Node",
  1061. "_name": "content_sprite",
  1062. "_objFlags": 0,
  1063. "_parent": {
  1064. "__id__": 28
  1065. },
  1066. "_children": [],
  1067. "_active": true,
  1068. "_level": 2,
  1069. "_components": [
  1070. {
  1071. "__id__": 30
  1072. },
  1073. {
  1074. "__id__": 31
  1075. }
  1076. ],
  1077. "_prefab": {
  1078. "__id__": 32
  1079. },
  1080. "_opacity": 255,
  1081. "_color": {
  1082. "__type__": "cc.Color",
  1083. "r": 255,
  1084. "g": 255,
  1085. "b": 255,
  1086. "a": 255
  1087. },
  1088. "_contentSize": {
  1089. "__type__": "cc.Size",
  1090. "width": 200,
  1091. "height": 235
  1092. },
  1093. "_anchorPoint": {
  1094. "__type__": "cc.Vec2",
  1095. "x": 0.5,
  1096. "y": 0.5
  1097. },
  1098. "_position": {
  1099. "__type__": "cc.Vec3",
  1100. "x": 0,
  1101. "y": 50,
  1102. "z": 0
  1103. },
  1104. "_scale": {
  1105. "__type__": "cc.Vec3",
  1106. "x": 1,
  1107. "y": 1,
  1108. "z": 1
  1109. },
  1110. "_rotationX": 0,
  1111. "_rotationY": 0,
  1112. "_quat": {
  1113. "__type__": "cc.Quat",
  1114. "x": 0,
  1115. "y": 0,
  1116. "z": 0,
  1117. "w": 1
  1118. },
  1119. "_skewX": 0,
  1120. "_skewY": 0,
  1121. "_zIndex": 0,
  1122. "groupIndex": 0,
  1123. "_id": ""
  1124. },
  1125. {
  1126. "__type__": "cc.Sprite",
  1127. "_name": "",
  1128. "_objFlags": 0,
  1129. "node": {
  1130. "__id__": 29
  1131. },
  1132. "_enabled": true,
  1133. "_srcBlendFactor": 770,
  1134. "_dstBlendFactor": 771,
  1135. "_spriteFrame": {
  1136. "__uuid__": "e9b9cc19-1611-472c-908e-453543e694ed"
  1137. },
  1138. "_type": 0,
  1139. "_sizeMode": 0,
  1140. "_fillType": 0,
  1141. "_fillCenter": {
  1142. "__type__": "cc.Vec2",
  1143. "x": 0,
  1144. "y": 0
  1145. },
  1146. "_fillStart": 0,
  1147. "_fillRange": 0,
  1148. "_isTrimmedMode": true,
  1149. "_state": 0,
  1150. "_atlas": null,
  1151. "_id": ""
  1152. },
  1153. {
  1154. "__type__": "cc.Widget",
  1155. "_name": "",
  1156. "_objFlags": 0,
  1157. "node": {
  1158. "__id__": 29
  1159. },
  1160. "_enabled": true,
  1161. "alignMode": 1,
  1162. "_target": null,
  1163. "_alignFlags": 41,
  1164. "_left": 0,
  1165. "_right": 0,
  1166. "_top": 0,
  1167. "_bottom": 0,
  1168. "_verticalCenter": 0,
  1169. "_horizontalCenter": 0,
  1170. "_isAbsLeft": true,
  1171. "_isAbsRight": true,
  1172. "_isAbsTop": true,
  1173. "_isAbsBottom": true,
  1174. "_isAbsHorizontalCenter": true,
  1175. "_isAbsVerticalCenter": true,
  1176. "_originalWidth": 200,
  1177. "_originalHeight": 0,
  1178. "_id": ""
  1179. },
  1180. {
  1181. "__type__": "cc.PrefabInfo",
  1182. "root": {
  1183. "__id__": 1
  1184. },
  1185. "asset": {
  1186. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  1187. },
  1188. "fileId": "44rjoRHfBBQKgVgRSfhy0/",
  1189. "sync": false
  1190. },
  1191. {
  1192. "__type__": "cc.Node",
  1193. "_name": "button",
  1194. "_objFlags": 0,
  1195. "_parent": {
  1196. "__id__": 28
  1197. },
  1198. "_children": [
  1199. {
  1200. "__id__": 34
  1201. },
  1202. {
  1203. "__id__": 37
  1204. }
  1205. ],
  1206. "_active": true,
  1207. "_level": 2,
  1208. "_components": [
  1209. {
  1210. "__id__": 46
  1211. },
  1212. {
  1213. "__id__": 48
  1214. }
  1215. ],
  1216. "_prefab": {
  1217. "__id__": 49
  1218. },
  1219. "_opacity": 255,
  1220. "_color": {
  1221. "__type__": "cc.Color",
  1222. "r": 255,
  1223. "g": 255,
  1224. "b": 255,
  1225. "a": 255
  1226. },
  1227. "_contentSize": {
  1228. "__type__": "cc.Size",
  1229. "width": 200,
  1230. "height": 78
  1231. },
  1232. "_anchorPoint": {
  1233. "__type__": "cc.Vec2",
  1234. "x": 0.5,
  1235. "y": 0.5
  1236. },
  1237. "_position": {
  1238. "__type__": "cc.Vec3",
  1239. "x": 0,
  1240. "y": -128.5,
  1241. "z": 0
  1242. },
  1243. "_scale": {
  1244. "__type__": "cc.Vec3",
  1245. "x": 1,
  1246. "y": 1,
  1247. "z": 1
  1248. },
  1249. "_rotationX": 0,
  1250. "_rotationY": 0,
  1251. "_quat": {
  1252. "__type__": "cc.Quat",
  1253. "x": 0,
  1254. "y": 0,
  1255. "z": 0,
  1256. "w": 1
  1257. },
  1258. "_skewX": 0,
  1259. "_skewY": 0,
  1260. "_zIndex": 0,
  1261. "groupIndex": 0,
  1262. "_id": ""
  1263. },
  1264. {
  1265. "__type__": "cc.Node",
  1266. "_name": "normalSprite",
  1267. "_objFlags": 0,
  1268. "_parent": {
  1269. "__id__": 33
  1270. },
  1271. "_children": [],
  1272. "_active": true,
  1273. "_level": 3,
  1274. "_components": [
  1275. {
  1276. "__id__": 35
  1277. }
  1278. ],
  1279. "_prefab": {
  1280. "__id__": 36
  1281. },
  1282. "_opacity": 255,
  1283. "_color": {
  1284. "__type__": "cc.Color",
  1285. "r": 255,
  1286. "g": 255,
  1287. "b": 255,
  1288. "a": 255
  1289. },
  1290. "_contentSize": {
  1291. "__type__": "cc.Size",
  1292. "width": 200,
  1293. "height": 80
  1294. },
  1295. "_anchorPoint": {
  1296. "__type__": "cc.Vec2",
  1297. "x": 0.5,
  1298. "y": 0.5
  1299. },
  1300. "_position": {
  1301. "__type__": "cc.Vec3",
  1302. "x": 0,
  1303. "y": 0,
  1304. "z": 0
  1305. },
  1306. "_scale": {
  1307. "__type__": "cc.Vec3",
  1308. "x": 1,
  1309. "y": 1,
  1310. "z": 1
  1311. },
  1312. "_rotationX": 0,
  1313. "_rotationY": 0,
  1314. "_quat": {
  1315. "__type__": "cc.Quat",
  1316. "x": 0,
  1317. "y": 0,
  1318. "z": 0,
  1319. "w": 1
  1320. },
  1321. "_skewX": 0,
  1322. "_skewY": 0,
  1323. "_zIndex": 0,
  1324. "groupIndex": 0,
  1325. "_id": ""
  1326. },
  1327. {
  1328. "__type__": "cc.Sprite",
  1329. "_name": "",
  1330. "_objFlags": 0,
  1331. "node": {
  1332. "__id__": 34
  1333. },
  1334. "_enabled": true,
  1335. "_srcBlendFactor": 770,
  1336. "_dstBlendFactor": 771,
  1337. "_spriteFrame": {
  1338. "__uuid__": "da3589c6-6a16-4cd6-8ec2-78a1ae063bb6"
  1339. },
  1340. "_type": 0,
  1341. "_sizeMode": 1,
  1342. "_fillType": 0,
  1343. "_fillCenter": {
  1344. "__type__": "cc.Vec2",
  1345. "x": 0,
  1346. "y": 0
  1347. },
  1348. "_fillStart": 0,
  1349. "_fillRange": 0,
  1350. "_isTrimmedMode": true,
  1351. "_state": 0,
  1352. "_atlas": null,
  1353. "_id": ""
  1354. },
  1355. {
  1356. "__type__": "cc.PrefabInfo",
  1357. "root": {
  1358. "__id__": 1
  1359. },
  1360. "asset": {
  1361. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  1362. },
  1363. "fileId": "d6LJIP6TRGJrHF4Wk7Jwxj",
  1364. "sync": false
  1365. },
  1366. {
  1367. "__type__": "cc.Node",
  1368. "_name": "normalRichText",
  1369. "_objFlags": 0,
  1370. "_parent": {
  1371. "__id__": 33
  1372. },
  1373. "_children": [
  1374. {
  1375. "__id__": 38
  1376. },
  1377. {
  1378. "__id__": 41
  1379. }
  1380. ],
  1381. "_active": true,
  1382. "_level": 3,
  1383. "_components": [
  1384. {
  1385. "__id__": 44
  1386. }
  1387. ],
  1388. "_prefab": {
  1389. "__id__": 45
  1390. },
  1391. "_opacity": 255,
  1392. "_color": {
  1393. "__type__": "cc.Color",
  1394. "r": 255,
  1395. "g": 255,
  1396. "b": 255,
  1397. "a": 255
  1398. },
  1399. "_contentSize": {
  1400. "__type__": "cc.Size",
  1401. "width": 190,
  1402. "height": 26
  1403. },
  1404. "_anchorPoint": {
  1405. "__type__": "cc.Vec2",
  1406. "x": 0.5,
  1407. "y": 0.5
  1408. },
  1409. "_position": {
  1410. "__type__": "cc.Vec3",
  1411. "x": 0,
  1412. "y": 0,
  1413. "z": 0
  1414. },
  1415. "_scale": {
  1416. "__type__": "cc.Vec3",
  1417. "x": 1,
  1418. "y": 1,
  1419. "z": 1
  1420. },
  1421. "_rotationX": 0,
  1422. "_rotationY": 0,
  1423. "_quat": {
  1424. "__type__": "cc.Quat",
  1425. "x": 0,
  1426. "y": 0,
  1427. "z": 0,
  1428. "w": 1
  1429. },
  1430. "_skewX": 0,
  1431. "_skewY": 0,
  1432. "_zIndex": 0,
  1433. "groupIndex": 0,
  1434. "_id": ""
  1435. },
  1436. {
  1437. "__type__": "cc.PrivateNode",
  1438. "_name": "RICHTEXT_CHILD",
  1439. "_objFlags": 0,
  1440. "_parent": {
  1441. "__id__": 37
  1442. },
  1443. "_children": [],
  1444. "_active": true,
  1445. "_level": 4,
  1446. "_components": [
  1447. {
  1448. "__id__": 39
  1449. }
  1450. ],
  1451. "_prefab": {
  1452. "__id__": 40
  1453. },
  1454. "_opacity": 255,
  1455. "_color": {
  1456. "__type__": "cc.Color",
  1457. "r": 0,
  1458. "g": 255,
  1459. "b": 0,
  1460. "a": 255
  1461. },
  1462. "_contentSize": {
  1463. "__type__": "cc.Size",
  1464. "width": 48.01,
  1465. "height": 26
  1466. },
  1467. "_anchorPoint": {
  1468. "__type__": "cc.Vec2",
  1469. "x": 0,
  1470. "y": 0
  1471. },
  1472. "_position": {
  1473. "__type__": "cc.Vec3",
  1474. "x": -46.015,
  1475. "y": -13,
  1476. "z": 0
  1477. },
  1478. "_scale": {
  1479. "__type__": "cc.Vec3",
  1480. "x": 1,
  1481. "y": 1,
  1482. "z": 1
  1483. },
  1484. "_rotationX": 0,
  1485. "_rotationY": 0,
  1486. "_quat": {
  1487. "__type__": "cc.Quat",
  1488. "x": 0,
  1489. "y": 0,
  1490. "z": 0,
  1491. "w": 1
  1492. },
  1493. "_skewX": 0,
  1494. "_skewY": 0,
  1495. "_zIndex": -32768,
  1496. "groupIndex": 0,
  1497. "_id": ""
  1498. },
  1499. {
  1500. "__type__": "cc.Label",
  1501. "_name": "",
  1502. "_objFlags": 0,
  1503. "node": {
  1504. "__id__": 38
  1505. },
  1506. "_enabled": true,
  1507. "_srcBlendFactor": 1,
  1508. "_dstBlendFactor": 771,
  1509. "_useOriginalSize": true,
  1510. "_string": "Rich",
  1511. "_N$string": "Rich",
  1512. "_fontSize": 24,
  1513. "_lineHeight": 26,
  1514. "_enableWrapText": true,
  1515. "_N$file": null,
  1516. "_isSystemFontUsed": true,
  1517. "_spacingX": 0,
  1518. "_N$horizontalAlign": 0,
  1519. "_N$verticalAlign": 1,
  1520. "_N$fontFamily": "Arial",
  1521. "_N$overflow": 0,
  1522. "_id": ""
  1523. },
  1524. {
  1525. "__type__": "cc.PrefabInfo",
  1526. "root": {
  1527. "__id__": 1
  1528. },
  1529. "asset": {
  1530. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  1531. },
  1532. "fileId": "38yIf3zsFNXJE7SzB3yLHM",
  1533. "sync": false
  1534. },
  1535. {
  1536. "__type__": "cc.PrivateNode",
  1537. "_name": "RICHTEXT_CHILD",
  1538. "_objFlags": 0,
  1539. "_parent": {
  1540. "__id__": 37
  1541. },
  1542. "_children": [],
  1543. "_active": true,
  1544. "_level": 4,
  1545. "_components": [
  1546. {
  1547. "__id__": 42
  1548. }
  1549. ],
  1550. "_prefab": {
  1551. "__id__": 43
  1552. },
  1553. "_opacity": 255,
  1554. "_color": {
  1555. "__type__": "cc.Color",
  1556. "r": 15,
  1557. "g": 255,
  1558. "b": 255,
  1559. "a": 255
  1560. },
  1561. "_contentSize": {
  1562. "__type__": "cc.Size",
  1563. "width": 44.02,
  1564. "height": 26
  1565. },
  1566. "_anchorPoint": {
  1567. "__type__": "cc.Vec2",
  1568. "x": 0,
  1569. "y": 0
  1570. },
  1571. "_position": {
  1572. "__type__": "cc.Vec3",
  1573. "x": 1.9949999999999974,
  1574. "y": -13,
  1575. "z": 0
  1576. },
  1577. "_scale": {
  1578. "__type__": "cc.Vec3",
  1579. "x": 1,
  1580. "y": 1,
  1581. "z": 1
  1582. },
  1583. "_rotationX": 0,
  1584. "_rotationY": 0,
  1585. "_quat": {
  1586. "__type__": "cc.Quat",
  1587. "x": 0,
  1588. "y": 0,
  1589. "z": 0,
  1590. "w": 1
  1591. },
  1592. "_skewX": 0,
  1593. "_skewY": 0,
  1594. "_zIndex": -32768,
  1595. "groupIndex": 0,
  1596. "_id": ""
  1597. },
  1598. {
  1599. "__type__": "cc.Label",
  1600. "_name": "",
  1601. "_objFlags": 0,
  1602. "node": {
  1603. "__id__": 41
  1604. },
  1605. "_enabled": true,
  1606. "_srcBlendFactor": 1,
  1607. "_dstBlendFactor": 771,
  1608. "_useOriginalSize": true,
  1609. "_string": "Text",
  1610. "_N$string": "Text",
  1611. "_fontSize": 24,
  1612. "_lineHeight": 26,
  1613. "_enableWrapText": true,
  1614. "_N$file": null,
  1615. "_isSystemFontUsed": true,
  1616. "_spacingX": 0,
  1617. "_N$horizontalAlign": 0,
  1618. "_N$verticalAlign": 1,
  1619. "_N$fontFamily": "Arial",
  1620. "_N$overflow": 0,
  1621. "_id": ""
  1622. },
  1623. {
  1624. "__type__": "cc.PrefabInfo",
  1625. "root": {
  1626. "__id__": 1
  1627. },
  1628. "asset": {
  1629. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  1630. },
  1631. "fileId": "3c+d1QxQ9H368MVym3THq2",
  1632. "sync": false
  1633. },
  1634. {
  1635. "__type__": "cc.RichText",
  1636. "_name": "",
  1637. "_objFlags": 0,
  1638. "node": {
  1639. "__id__": 37
  1640. },
  1641. "_enabled": true,
  1642. "_N$string": "<color=#00ff00>Rich</c><color=#0fffff>Text</color>",
  1643. "_N$horizontalAlign": 1,
  1644. "_N$fontSize": 24,
  1645. "_N$font": null,
  1646. "_N$maxWidth": 190,
  1647. "_N$lineHeight": 26,
  1648. "_N$imageAtlas": {
  1649. "__uuid__": "9a199f9b-2e79-467b-85f6-b6ebe5f54f18"
  1650. },
  1651. "_N$handleTouchEvent": true,
  1652. "_id": ""
  1653. },
  1654. {
  1655. "__type__": "cc.PrefabInfo",
  1656. "root": {
  1657. "__id__": 1
  1658. },
  1659. "asset": {
  1660. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  1661. },
  1662. "fileId": "23GDMw6gpDi6945vy5q5Gn",
  1663. "sync": false
  1664. },
  1665. {
  1666. "__type__": "cc.Button",
  1667. "_name": "",
  1668. "_objFlags": 0,
  1669. "node": {
  1670. "__id__": 33
  1671. },
  1672. "_enabled": true,
  1673. "transition": 1,
  1674. "pressedColor": {
  1675. "__type__": "cc.Color",
  1676. "r": 120,
  1677. "g": 120,
  1678. "b": 120,
  1679. "a": 255
  1680. },
  1681. "hoverColor": {
  1682. "__type__": "cc.Color",
  1683. "r": 255,
  1684. "g": 255,
  1685. "b": 255,
  1686. "a": 255
  1687. },
  1688. "duration": 0.1,
  1689. "zoomScale": 1.2,
  1690. "clickEvents": [
  1691. {
  1692. "__id__": 47
  1693. }
  1694. ],
  1695. "_N$interactable": true,
  1696. "_N$enableAutoGrayEffect": false,
  1697. "_N$normalColor": {
  1698. "__type__": "cc.Color",
  1699. "r": 255,
  1700. "g": 255,
  1701. "b": 255,
  1702. "a": 255
  1703. },
  1704. "_N$disabledColor": {
  1705. "__type__": "cc.Color",
  1706. "r": 120,
  1707. "g": 120,
  1708. "b": 120,
  1709. "a": 255
  1710. },
  1711. "_N$normalSprite": null,
  1712. "_N$pressedSprite": null,
  1713. "pressedSprite": null,
  1714. "_N$hoverSprite": null,
  1715. "hoverSprite": null,
  1716. "_N$disabledSprite": null,
  1717. "_N$target": {
  1718. "__id__": 34
  1719. },
  1720. "_id": ""
  1721. },
  1722. {
  1723. "__type__": "cc.ClickEvent",
  1724. "target": {
  1725. "__id__": 1
  1726. },
  1727. "component": "DrawContent",
  1728. "handler": "adNodeAction",
  1729. "customEventData": ""
  1730. },
  1731. {
  1732. "__type__": "cc.Widget",
  1733. "_name": "",
  1734. "_objFlags": 0,
  1735. "node": {
  1736. "__id__": 33
  1737. },
  1738. "_enabled": true,
  1739. "alignMode": 1,
  1740. "_target": null,
  1741. "_alignFlags": 20,
  1742. "_left": 0,
  1743. "_right": 0,
  1744. "_top": 0,
  1745. "_bottom": 0,
  1746. "_verticalCenter": 0,
  1747. "_horizontalCenter": 0,
  1748. "_isAbsLeft": true,
  1749. "_isAbsRight": true,
  1750. "_isAbsTop": true,
  1751. "_isAbsBottom": true,
  1752. "_isAbsHorizontalCenter": true,
  1753. "_isAbsVerticalCenter": true,
  1754. "_originalWidth": 0,
  1755. "_originalHeight": 0,
  1756. "_id": ""
  1757. },
  1758. {
  1759. "__type__": "cc.PrefabInfo",
  1760. "root": {
  1761. "__id__": 1
  1762. },
  1763. "asset": {
  1764. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  1765. },
  1766. "fileId": "a4YaGkeJlAE7/FwjbU/nch",
  1767. "sync": false
  1768. },
  1769. {
  1770. "__type__": "cc.PrefabInfo",
  1771. "root": {
  1772. "__id__": 1
  1773. },
  1774. "asset": {
  1775. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  1776. },
  1777. "fileId": "b1Si9EwXJDdpmHc0TQdfVO",
  1778. "sync": false
  1779. },
  1780. {
  1781. "__type__": "cc.Node",
  1782. "_name": "drawEement",
  1783. "_objFlags": 0,
  1784. "_parent": {
  1785. "__id__": 27
  1786. },
  1787. "_children": [
  1788. {
  1789. "__id__": 52
  1790. },
  1791. {
  1792. "__id__": 56
  1793. }
  1794. ],
  1795. "_active": true,
  1796. "_level": 4,
  1797. "_components": [],
  1798. "_prefab": {
  1799. "__id__": 73
  1800. },
  1801. "_opacity": 255,
  1802. "_color": {
  1803. "__type__": "cc.Color",
  1804. "r": 255,
  1805. "g": 255,
  1806. "b": 255,
  1807. "a": 255
  1808. },
  1809. "_contentSize": {
  1810. "__type__": "cc.Size",
  1811. "width": 200,
  1812. "height": 335
  1813. },
  1814. "_anchorPoint": {
  1815. "__type__": "cc.Vec2",
  1816. "x": 0.5,
  1817. "y": 0.5
  1818. },
  1819. "_position": {
  1820. "__type__": "cc.Vec3",
  1821. "x": 0,
  1822. "y": 0,
  1823. "z": 0
  1824. },
  1825. "_scale": {
  1826. "__type__": "cc.Vec3",
  1827. "x": 1,
  1828. "y": 1,
  1829. "z": 1
  1830. },
  1831. "_rotationX": 0,
  1832. "_rotationY": 0,
  1833. "_quat": {
  1834. "__type__": "cc.Quat",
  1835. "x": 0,
  1836. "y": 0,
  1837. "z": 0,
  1838. "w": 1
  1839. },
  1840. "_skewX": 0,
  1841. "_skewY": 0,
  1842. "_zIndex": 0,
  1843. "groupIndex": 0,
  1844. "_id": ""
  1845. },
  1846. {
  1847. "__type__": "cc.Node",
  1848. "_name": "content_sprite",
  1849. "_objFlags": 0,
  1850. "_parent": {
  1851. "__id__": 51
  1852. },
  1853. "_children": [],
  1854. "_active": true,
  1855. "_level": 2,
  1856. "_components": [
  1857. {
  1858. "__id__": 53
  1859. },
  1860. {
  1861. "__id__": 54
  1862. }
  1863. ],
  1864. "_prefab": {
  1865. "__id__": 55
  1866. },
  1867. "_opacity": 255,
  1868. "_color": {
  1869. "__type__": "cc.Color",
  1870. "r": 255,
  1871. "g": 255,
  1872. "b": 255,
  1873. "a": 255
  1874. },
  1875. "_contentSize": {
  1876. "__type__": "cc.Size",
  1877. "width": 200,
  1878. "height": 235
  1879. },
  1880. "_anchorPoint": {
  1881. "__type__": "cc.Vec2",
  1882. "x": 0.5,
  1883. "y": 0.5
  1884. },
  1885. "_position": {
  1886. "__type__": "cc.Vec3",
  1887. "x": 0,
  1888. "y": 50,
  1889. "z": 0
  1890. },
  1891. "_scale": {
  1892. "__type__": "cc.Vec3",
  1893. "x": 1,
  1894. "y": 1,
  1895. "z": 1
  1896. },
  1897. "_rotationX": 0,
  1898. "_rotationY": 0,
  1899. "_quat": {
  1900. "__type__": "cc.Quat",
  1901. "x": 0,
  1902. "y": 0,
  1903. "z": 0,
  1904. "w": 1
  1905. },
  1906. "_skewX": 0,
  1907. "_skewY": 0,
  1908. "_zIndex": 0,
  1909. "groupIndex": 0,
  1910. "_id": ""
  1911. },
  1912. {
  1913. "__type__": "cc.Sprite",
  1914. "_name": "",
  1915. "_objFlags": 0,
  1916. "node": {
  1917. "__id__": 52
  1918. },
  1919. "_enabled": true,
  1920. "_srcBlendFactor": 770,
  1921. "_dstBlendFactor": 771,
  1922. "_spriteFrame": {
  1923. "__uuid__": "2be3e645-13d1-4dcf-84c1-886acc296b5c"
  1924. },
  1925. "_type": 0,
  1926. "_sizeMode": 0,
  1927. "_fillType": 0,
  1928. "_fillCenter": {
  1929. "__type__": "cc.Vec2",
  1930. "x": 0,
  1931. "y": 0
  1932. },
  1933. "_fillStart": 0,
  1934. "_fillRange": 0,
  1935. "_isTrimmedMode": true,
  1936. "_state": 0,
  1937. "_atlas": null,
  1938. "_id": ""
  1939. },
  1940. {
  1941. "__type__": "cc.Widget",
  1942. "_name": "",
  1943. "_objFlags": 0,
  1944. "node": {
  1945. "__id__": 52
  1946. },
  1947. "_enabled": true,
  1948. "alignMode": 1,
  1949. "_target": null,
  1950. "_alignFlags": 41,
  1951. "_left": 0,
  1952. "_right": 0,
  1953. "_top": 0,
  1954. "_bottom": 0,
  1955. "_verticalCenter": 0,
  1956. "_horizontalCenter": 0,
  1957. "_isAbsLeft": true,
  1958. "_isAbsRight": true,
  1959. "_isAbsTop": true,
  1960. "_isAbsBottom": true,
  1961. "_isAbsHorizontalCenter": true,
  1962. "_isAbsVerticalCenter": true,
  1963. "_originalWidth": 200,
  1964. "_originalHeight": 0,
  1965. "_id": ""
  1966. },
  1967. {
  1968. "__type__": "cc.PrefabInfo",
  1969. "root": {
  1970. "__id__": 1
  1971. },
  1972. "asset": {
  1973. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  1974. },
  1975. "fileId": "fablgUZt5G+Lg6rXh7Galn",
  1976. "sync": false
  1977. },
  1978. {
  1979. "__type__": "cc.Node",
  1980. "_name": "button",
  1981. "_objFlags": 0,
  1982. "_parent": {
  1983. "__id__": 51
  1984. },
  1985. "_children": [
  1986. {
  1987. "__id__": 57
  1988. },
  1989. {
  1990. "__id__": 60
  1991. }
  1992. ],
  1993. "_active": true,
  1994. "_level": 2,
  1995. "_components": [
  1996. {
  1997. "__id__": 69
  1998. },
  1999. {
  2000. "__id__": 71
  2001. }
  2002. ],
  2003. "_prefab": {
  2004. "__id__": 72
  2005. },
  2006. "_opacity": 255,
  2007. "_color": {
  2008. "__type__": "cc.Color",
  2009. "r": 255,
  2010. "g": 255,
  2011. "b": 255,
  2012. "a": 255
  2013. },
  2014. "_contentSize": {
  2015. "__type__": "cc.Size",
  2016. "width": 200,
  2017. "height": 78
  2018. },
  2019. "_anchorPoint": {
  2020. "__type__": "cc.Vec2",
  2021. "x": 0.5,
  2022. "y": 0.5
  2023. },
  2024. "_position": {
  2025. "__type__": "cc.Vec3",
  2026. "x": 0,
  2027. "y": -128.5,
  2028. "z": 0
  2029. },
  2030. "_scale": {
  2031. "__type__": "cc.Vec3",
  2032. "x": 1,
  2033. "y": 1,
  2034. "z": 1
  2035. },
  2036. "_rotationX": 0,
  2037. "_rotationY": 0,
  2038. "_quat": {
  2039. "__type__": "cc.Quat",
  2040. "x": 0,
  2041. "y": 0,
  2042. "z": 0,
  2043. "w": 1
  2044. },
  2045. "_skewX": 0,
  2046. "_skewY": 0,
  2047. "_zIndex": 0,
  2048. "groupIndex": 0,
  2049. "_id": ""
  2050. },
  2051. {
  2052. "__type__": "cc.Node",
  2053. "_name": "moreChanceSprite",
  2054. "_objFlags": 0,
  2055. "_parent": {
  2056. "__id__": 56
  2057. },
  2058. "_children": [],
  2059. "_active": true,
  2060. "_level": 3,
  2061. "_components": [
  2062. {
  2063. "__id__": 58
  2064. }
  2065. ],
  2066. "_prefab": {
  2067. "__id__": 59
  2068. },
  2069. "_opacity": 255,
  2070. "_color": {
  2071. "__type__": "cc.Color",
  2072. "r": 255,
  2073. "g": 255,
  2074. "b": 255,
  2075. "a": 255
  2076. },
  2077. "_contentSize": {
  2078. "__type__": "cc.Size",
  2079. "width": 200,
  2080. "height": 80
  2081. },
  2082. "_anchorPoint": {
  2083. "__type__": "cc.Vec2",
  2084. "x": 0.5,
  2085. "y": 0.5
  2086. },
  2087. "_position": {
  2088. "__type__": "cc.Vec3",
  2089. "x": 0,
  2090. "y": 0,
  2091. "z": 0
  2092. },
  2093. "_scale": {
  2094. "__type__": "cc.Vec3",
  2095. "x": 1,
  2096. "y": 1,
  2097. "z": 1
  2098. },
  2099. "_rotationX": 0,
  2100. "_rotationY": 0,
  2101. "_quat": {
  2102. "__type__": "cc.Quat",
  2103. "x": 0,
  2104. "y": 0,
  2105. "z": 0,
  2106. "w": 1
  2107. },
  2108. "_skewX": 0,
  2109. "_skewY": 0,
  2110. "_zIndex": 0,
  2111. "groupIndex": 0,
  2112. "_id": ""
  2113. },
  2114. {
  2115. "__type__": "cc.Sprite",
  2116. "_name": "",
  2117. "_objFlags": 0,
  2118. "node": {
  2119. "__id__": 57
  2120. },
  2121. "_enabled": true,
  2122. "_srcBlendFactor": 770,
  2123. "_dstBlendFactor": 771,
  2124. "_spriteFrame": {
  2125. "__uuid__": "da3589c6-6a16-4cd6-8ec2-78a1ae063bb6"
  2126. },
  2127. "_type": 0,
  2128. "_sizeMode": 1,
  2129. "_fillType": 0,
  2130. "_fillCenter": {
  2131. "__type__": "cc.Vec2",
  2132. "x": 0,
  2133. "y": 0
  2134. },
  2135. "_fillStart": 0,
  2136. "_fillRange": 0,
  2137. "_isTrimmedMode": true,
  2138. "_state": 0,
  2139. "_atlas": null,
  2140. "_id": ""
  2141. },
  2142. {
  2143. "__type__": "cc.PrefabInfo",
  2144. "root": {
  2145. "__id__": 1
  2146. },
  2147. "asset": {
  2148. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  2149. },
  2150. "fileId": "10LSbUZiZNWonKDT2pHEQK",
  2151. "sync": false
  2152. },
  2153. {
  2154. "__type__": "cc.Node",
  2155. "_name": "moreChanceRichText",
  2156. "_objFlags": 0,
  2157. "_parent": {
  2158. "__id__": 56
  2159. },
  2160. "_children": [
  2161. {
  2162. "__id__": 61
  2163. },
  2164. {
  2165. "__id__": 64
  2166. }
  2167. ],
  2168. "_active": true,
  2169. "_level": 3,
  2170. "_components": [
  2171. {
  2172. "__id__": 67
  2173. }
  2174. ],
  2175. "_prefab": {
  2176. "__id__": 68
  2177. },
  2178. "_opacity": 255,
  2179. "_color": {
  2180. "__type__": "cc.Color",
  2181. "r": 255,
  2182. "g": 255,
  2183. "b": 255,
  2184. "a": 255
  2185. },
  2186. "_contentSize": {
  2187. "__type__": "cc.Size",
  2188. "width": 190,
  2189. "height": 40
  2190. },
  2191. "_anchorPoint": {
  2192. "__type__": "cc.Vec2",
  2193. "x": 0.5,
  2194. "y": 0.5
  2195. },
  2196. "_position": {
  2197. "__type__": "cc.Vec3",
  2198. "x": 0,
  2199. "y": 0,
  2200. "z": 0
  2201. },
  2202. "_scale": {
  2203. "__type__": "cc.Vec3",
  2204. "x": 1,
  2205. "y": 1,
  2206. "z": 1
  2207. },
  2208. "_rotationX": 0,
  2209. "_rotationY": 0,
  2210. "_quat": {
  2211. "__type__": "cc.Quat",
  2212. "x": 0,
  2213. "y": 0,
  2214. "z": 0,
  2215. "w": 1
  2216. },
  2217. "_skewX": 0,
  2218. "_skewY": 0,
  2219. "_zIndex": 0,
  2220. "groupIndex": 0,
  2221. "_id": ""
  2222. },
  2223. {
  2224. "__type__": "cc.PrivateNode",
  2225. "_name": "RICHTEXT_CHILD",
  2226. "_objFlags": 0,
  2227. "_parent": {
  2228. "__id__": 60
  2229. },
  2230. "_children": [],
  2231. "_active": true,
  2232. "_level": 4,
  2233. "_components": [
  2234. {
  2235. "__id__": 62
  2236. }
  2237. ],
  2238. "_prefab": {
  2239. "__id__": 63
  2240. },
  2241. "_opacity": 255,
  2242. "_color": {
  2243. "__type__": "cc.Color",
  2244. "r": 0,
  2245. "g": 255,
  2246. "b": 0,
  2247. "a": 255
  2248. },
  2249. "_contentSize": {
  2250. "__type__": "cc.Size",
  2251. "width": 52.01,
  2252. "height": 40
  2253. },
  2254. "_anchorPoint": {
  2255. "__type__": "cc.Vec2",
  2256. "x": 0,
  2257. "y": 0
  2258. },
  2259. "_position": {
  2260. "__type__": "cc.Vec3",
  2261. "x": -49.845,
  2262. "y": -20,
  2263. "z": 0
  2264. },
  2265. "_scale": {
  2266. "__type__": "cc.Vec3",
  2267. "x": 1,
  2268. "y": 1,
  2269. "z": 1
  2270. },
  2271. "_rotationX": 0,
  2272. "_rotationY": 0,
  2273. "_quat": {
  2274. "__type__": "cc.Quat",
  2275. "x": 0,
  2276. "y": 0,
  2277. "z": 0,
  2278. "w": 1
  2279. },
  2280. "_skewX": 0,
  2281. "_skewY": 0,
  2282. "_zIndex": -32768,
  2283. "groupIndex": 0,
  2284. "_id": ""
  2285. },
  2286. {
  2287. "__type__": "cc.Label",
  2288. "_name": "",
  2289. "_objFlags": 0,
  2290. "node": {
  2291. "__id__": 61
  2292. },
  2293. "_enabled": true,
  2294. "_srcBlendFactor": 1,
  2295. "_dstBlendFactor": 771,
  2296. "_useOriginalSize": true,
  2297. "_string": "Rich",
  2298. "_N$string": "Rich",
  2299. "_fontSize": 26,
  2300. "_lineHeight": 40,
  2301. "_enableWrapText": true,
  2302. "_N$file": null,
  2303. "_isSystemFontUsed": true,
  2304. "_spacingX": 0,
  2305. "_N$horizontalAlign": 0,
  2306. "_N$verticalAlign": 1,
  2307. "_N$fontFamily": "Arial",
  2308. "_N$overflow": 0,
  2309. "_id": ""
  2310. },
  2311. {
  2312. "__type__": "cc.PrefabInfo",
  2313. "root": {
  2314. "__id__": 1
  2315. },
  2316. "asset": {
  2317. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  2318. },
  2319. "fileId": "13FPUlgcFP2pKFTJ5Yl7O7",
  2320. "sync": false
  2321. },
  2322. {
  2323. "__type__": "cc.PrivateNode",
  2324. "_name": "RICHTEXT_CHILD",
  2325. "_objFlags": 0,
  2326. "_parent": {
  2327. "__id__": 60
  2328. },
  2329. "_children": [],
  2330. "_active": true,
  2331. "_level": 4,
  2332. "_components": [
  2333. {
  2334. "__id__": 65
  2335. }
  2336. ],
  2337. "_prefab": {
  2338. "__id__": 66
  2339. },
  2340. "_opacity": 255,
  2341. "_color": {
  2342. "__type__": "cc.Color",
  2343. "r": 15,
  2344. "g": 255,
  2345. "b": 255,
  2346. "a": 255
  2347. },
  2348. "_contentSize": {
  2349. "__type__": "cc.Size",
  2350. "width": 47.68,
  2351. "height": 40
  2352. },
  2353. "_anchorPoint": {
  2354. "__type__": "cc.Vec2",
  2355. "x": 0,
  2356. "y": 0
  2357. },
  2358. "_position": {
  2359. "__type__": "cc.Vec3",
  2360. "x": 2.164999999999999,
  2361. "y": -20,
  2362. "z": 0
  2363. },
  2364. "_scale": {
  2365. "__type__": "cc.Vec3",
  2366. "x": 1,
  2367. "y": 1,
  2368. "z": 1
  2369. },
  2370. "_rotationX": 0,
  2371. "_rotationY": 0,
  2372. "_quat": {
  2373. "__type__": "cc.Quat",
  2374. "x": 0,
  2375. "y": 0,
  2376. "z": 0,
  2377. "w": 1
  2378. },
  2379. "_skewX": 0,
  2380. "_skewY": 0,
  2381. "_zIndex": -32768,
  2382. "groupIndex": 0,
  2383. "_id": ""
  2384. },
  2385. {
  2386. "__type__": "cc.Label",
  2387. "_name": "",
  2388. "_objFlags": 0,
  2389. "node": {
  2390. "__id__": 64
  2391. },
  2392. "_enabled": true,
  2393. "_srcBlendFactor": 1,
  2394. "_dstBlendFactor": 771,
  2395. "_useOriginalSize": true,
  2396. "_string": "Text",
  2397. "_N$string": "Text",
  2398. "_fontSize": 26,
  2399. "_lineHeight": 40,
  2400. "_enableWrapText": true,
  2401. "_N$file": null,
  2402. "_isSystemFontUsed": true,
  2403. "_spacingX": 0,
  2404. "_N$horizontalAlign": 0,
  2405. "_N$verticalAlign": 1,
  2406. "_N$fontFamily": "Arial",
  2407. "_N$overflow": 0,
  2408. "_id": ""
  2409. },
  2410. {
  2411. "__type__": "cc.PrefabInfo",
  2412. "root": {
  2413. "__id__": 1
  2414. },
  2415. "asset": {
  2416. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  2417. },
  2418. "fileId": "87GVtyTHZOJoJqjddvQkDI",
  2419. "sync": false
  2420. },
  2421. {
  2422. "__type__": "cc.RichText",
  2423. "_name": "",
  2424. "_objFlags": 0,
  2425. "node": {
  2426. "__id__": 60
  2427. },
  2428. "_enabled": true,
  2429. "_N$string": "<color=#00ff00>Rich</c><color=#0fffff>Text</color>",
  2430. "_N$horizontalAlign": 1,
  2431. "_N$fontSize": 26,
  2432. "_N$font": null,
  2433. "_N$maxWidth": 190,
  2434. "_N$lineHeight": 40,
  2435. "_N$imageAtlas": {
  2436. "__uuid__": "9a199f9b-2e79-467b-85f6-b6ebe5f54f18"
  2437. },
  2438. "_N$handleTouchEvent": true,
  2439. "_id": ""
  2440. },
  2441. {
  2442. "__type__": "cc.PrefabInfo",
  2443. "root": {
  2444. "__id__": 1
  2445. },
  2446. "asset": {
  2447. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  2448. },
  2449. "fileId": "c1k7FwUTdF/I643DNV0W8A",
  2450. "sync": false
  2451. },
  2452. {
  2453. "__type__": "cc.Button",
  2454. "_name": "",
  2455. "_objFlags": 0,
  2456. "node": {
  2457. "__id__": 56
  2458. },
  2459. "_enabled": true,
  2460. "transition": 1,
  2461. "pressedColor": {
  2462. "__type__": "cc.Color",
  2463. "r": 120,
  2464. "g": 120,
  2465. "b": 120,
  2466. "a": 255
  2467. },
  2468. "hoverColor": {
  2469. "__type__": "cc.Color",
  2470. "r": 255,
  2471. "g": 255,
  2472. "b": 255,
  2473. "a": 255
  2474. },
  2475. "duration": 0.1,
  2476. "zoomScale": 1.2,
  2477. "clickEvents": [
  2478. {
  2479. "__id__": 70
  2480. }
  2481. ],
  2482. "_N$interactable": true,
  2483. "_N$enableAutoGrayEffect": false,
  2484. "_N$normalColor": {
  2485. "__type__": "cc.Color",
  2486. "r": 255,
  2487. "g": 255,
  2488. "b": 255,
  2489. "a": 255
  2490. },
  2491. "_N$disabledColor": {
  2492. "__type__": "cc.Color",
  2493. "r": 255,
  2494. "g": 255,
  2495. "b": 255,
  2496. "a": 255
  2497. },
  2498. "_N$normalSprite": {
  2499. "__uuid__": "da3589c6-6a16-4cd6-8ec2-78a1ae063bb6"
  2500. },
  2501. "_N$pressedSprite": {
  2502. "__uuid__": "da3589c6-6a16-4cd6-8ec2-78a1ae063bb6"
  2503. },
  2504. "pressedSprite": {
  2505. "__uuid__": "da3589c6-6a16-4cd6-8ec2-78a1ae063bb6"
  2506. },
  2507. "_N$hoverSprite": {
  2508. "__uuid__": "da3589c6-6a16-4cd6-8ec2-78a1ae063bb6"
  2509. },
  2510. "hoverSprite": {
  2511. "__uuid__": "da3589c6-6a16-4cd6-8ec2-78a1ae063bb6"
  2512. },
  2513. "_N$disabledSprite": {
  2514. "__uuid__": "da3589c6-6a16-4cd6-8ec2-78a1ae063bb6"
  2515. },
  2516. "_N$target": {
  2517. "__id__": 57
  2518. },
  2519. "_id": ""
  2520. },
  2521. {
  2522. "__type__": "cc.ClickEvent",
  2523. "target": {
  2524. "__id__": 1
  2525. },
  2526. "component": "DrawContent",
  2527. "handler": "moreChanceNodeAction",
  2528. "customEventData": ""
  2529. },
  2530. {
  2531. "__type__": "cc.Widget",
  2532. "_name": "",
  2533. "_objFlags": 0,
  2534. "node": {
  2535. "__id__": 56
  2536. },
  2537. "_enabled": true,
  2538. "alignMode": 1,
  2539. "_target": null,
  2540. "_alignFlags": 20,
  2541. "_left": 0,
  2542. "_right": 0,
  2543. "_top": 0,
  2544. "_bottom": 0,
  2545. "_verticalCenter": 0,
  2546. "_horizontalCenter": 0,
  2547. "_isAbsLeft": true,
  2548. "_isAbsRight": true,
  2549. "_isAbsTop": true,
  2550. "_isAbsBottom": true,
  2551. "_isAbsHorizontalCenter": true,
  2552. "_isAbsVerticalCenter": true,
  2553. "_originalWidth": 0,
  2554. "_originalHeight": 0,
  2555. "_id": ""
  2556. },
  2557. {
  2558. "__type__": "cc.PrefabInfo",
  2559. "root": {
  2560. "__id__": 1
  2561. },
  2562. "asset": {
  2563. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  2564. },
  2565. "fileId": "816SuL36BDZLbcJNC45Xpv",
  2566. "sync": false
  2567. },
  2568. {
  2569. "__type__": "cc.PrefabInfo",
  2570. "root": {
  2571. "__id__": 1
  2572. },
  2573. "asset": {
  2574. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  2575. },
  2576. "fileId": "235mrniSVIlKNEvoT6i+XF",
  2577. "sync": false
  2578. },
  2579. {
  2580. "__type__": "cc.Node",
  2581. "_name": "drawEement",
  2582. "_objFlags": 0,
  2583. "_parent": {
  2584. "__id__": 27
  2585. },
  2586. "_children": [
  2587. {
  2588. "__id__": 75
  2589. },
  2590. {
  2591. "__id__": 79
  2592. }
  2593. ],
  2594. "_active": true,
  2595. "_level": 4,
  2596. "_components": [],
  2597. "_prefab": {
  2598. "__id__": 96
  2599. },
  2600. "_opacity": 255,
  2601. "_color": {
  2602. "__type__": "cc.Color",
  2603. "r": 255,
  2604. "g": 255,
  2605. "b": 255,
  2606. "a": 255
  2607. },
  2608. "_contentSize": {
  2609. "__type__": "cc.Size",
  2610. "width": 200,
  2611. "height": 335
  2612. },
  2613. "_anchorPoint": {
  2614. "__type__": "cc.Vec2",
  2615. "x": 0.5,
  2616. "y": 0.5
  2617. },
  2618. "_position": {
  2619. "__type__": "cc.Vec3",
  2620. "x": 220,
  2621. "y": 0,
  2622. "z": 0
  2623. },
  2624. "_scale": {
  2625. "__type__": "cc.Vec3",
  2626. "x": 1,
  2627. "y": 1,
  2628. "z": 1
  2629. },
  2630. "_rotationX": 0,
  2631. "_rotationY": 0,
  2632. "_quat": {
  2633. "__type__": "cc.Quat",
  2634. "x": 0,
  2635. "y": 0,
  2636. "z": 0,
  2637. "w": 1
  2638. },
  2639. "_skewX": 0,
  2640. "_skewY": 0,
  2641. "_zIndex": 0,
  2642. "groupIndex": 0,
  2643. "_id": ""
  2644. },
  2645. {
  2646. "__type__": "cc.Node",
  2647. "_name": "content_sprite",
  2648. "_objFlags": 0,
  2649. "_parent": {
  2650. "__id__": 74
  2651. },
  2652. "_children": [],
  2653. "_active": true,
  2654. "_level": 2,
  2655. "_components": [
  2656. {
  2657. "__id__": 76
  2658. },
  2659. {
  2660. "__id__": 77
  2661. }
  2662. ],
  2663. "_prefab": {
  2664. "__id__": 78
  2665. },
  2666. "_opacity": 255,
  2667. "_color": {
  2668. "__type__": "cc.Color",
  2669. "r": 255,
  2670. "g": 255,
  2671. "b": 255,
  2672. "a": 255
  2673. },
  2674. "_contentSize": {
  2675. "__type__": "cc.Size",
  2676. "width": 200,
  2677. "height": 235
  2678. },
  2679. "_anchorPoint": {
  2680. "__type__": "cc.Vec2",
  2681. "x": 0.5,
  2682. "y": 0.5
  2683. },
  2684. "_position": {
  2685. "__type__": "cc.Vec3",
  2686. "x": 0,
  2687. "y": 50,
  2688. "z": 0
  2689. },
  2690. "_scale": {
  2691. "__type__": "cc.Vec3",
  2692. "x": 1,
  2693. "y": 1,
  2694. "z": 1
  2695. },
  2696. "_rotationX": 0,
  2697. "_rotationY": 0,
  2698. "_quat": {
  2699. "__type__": "cc.Quat",
  2700. "x": 0,
  2701. "y": 0,
  2702. "z": 0,
  2703. "w": 1
  2704. },
  2705. "_skewX": 0,
  2706. "_skewY": 0,
  2707. "_zIndex": 0,
  2708. "groupIndex": 0,
  2709. "_id": ""
  2710. },
  2711. {
  2712. "__type__": "cc.Sprite",
  2713. "_name": "",
  2714. "_objFlags": 0,
  2715. "node": {
  2716. "__id__": 75
  2717. },
  2718. "_enabled": true,
  2719. "_srcBlendFactor": 770,
  2720. "_dstBlendFactor": 771,
  2721. "_spriteFrame": {
  2722. "__uuid__": "efc91440-961c-413f-8fae-9fa9d0a39edf"
  2723. },
  2724. "_type": 0,
  2725. "_sizeMode": 0,
  2726. "_fillType": 0,
  2727. "_fillCenter": {
  2728. "__type__": "cc.Vec2",
  2729. "x": 0,
  2730. "y": 0
  2731. },
  2732. "_fillStart": 0,
  2733. "_fillRange": 0,
  2734. "_isTrimmedMode": true,
  2735. "_state": 0,
  2736. "_atlas": null,
  2737. "_id": ""
  2738. },
  2739. {
  2740. "__type__": "cc.Widget",
  2741. "_name": "",
  2742. "_objFlags": 0,
  2743. "node": {
  2744. "__id__": 75
  2745. },
  2746. "_enabled": true,
  2747. "alignMode": 1,
  2748. "_target": null,
  2749. "_alignFlags": 41,
  2750. "_left": 0,
  2751. "_right": 0,
  2752. "_top": 0,
  2753. "_bottom": 0,
  2754. "_verticalCenter": 0,
  2755. "_horizontalCenter": 0,
  2756. "_isAbsLeft": true,
  2757. "_isAbsRight": true,
  2758. "_isAbsTop": true,
  2759. "_isAbsBottom": true,
  2760. "_isAbsHorizontalCenter": true,
  2761. "_isAbsVerticalCenter": true,
  2762. "_originalWidth": 200,
  2763. "_originalHeight": 0,
  2764. "_id": ""
  2765. },
  2766. {
  2767. "__type__": "cc.PrefabInfo",
  2768. "root": {
  2769. "__id__": 1
  2770. },
  2771. "asset": {
  2772. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  2773. },
  2774. "fileId": "5d6byyYlBCB7nENBCMbHfZ",
  2775. "sync": false
  2776. },
  2777. {
  2778. "__type__": "cc.Node",
  2779. "_name": "button",
  2780. "_objFlags": 0,
  2781. "_parent": {
  2782. "__id__": 74
  2783. },
  2784. "_children": [
  2785. {
  2786. "__id__": 80
  2787. },
  2788. {
  2789. "__id__": 83
  2790. }
  2791. ],
  2792. "_active": true,
  2793. "_level": 2,
  2794. "_components": [
  2795. {
  2796. "__id__": 92
  2797. },
  2798. {
  2799. "__id__": 94
  2800. }
  2801. ],
  2802. "_prefab": {
  2803. "__id__": 95
  2804. },
  2805. "_opacity": 255,
  2806. "_color": {
  2807. "__type__": "cc.Color",
  2808. "r": 255,
  2809. "g": 255,
  2810. "b": 255,
  2811. "a": 255
  2812. },
  2813. "_contentSize": {
  2814. "__type__": "cc.Size",
  2815. "width": 200,
  2816. "height": 78
  2817. },
  2818. "_anchorPoint": {
  2819. "__type__": "cc.Vec2",
  2820. "x": 0.5,
  2821. "y": 0.5
  2822. },
  2823. "_position": {
  2824. "__type__": "cc.Vec3",
  2825. "x": 0,
  2826. "y": -128.5,
  2827. "z": 0
  2828. },
  2829. "_scale": {
  2830. "__type__": "cc.Vec3",
  2831. "x": 1,
  2832. "y": 1,
  2833. "z": 1
  2834. },
  2835. "_rotationX": 0,
  2836. "_rotationY": 0,
  2837. "_quat": {
  2838. "__type__": "cc.Quat",
  2839. "x": 0,
  2840. "y": 0,
  2841. "z": 0,
  2842. "w": 1
  2843. },
  2844. "_skewX": 0,
  2845. "_skewY": 0,
  2846. "_zIndex": 0,
  2847. "groupIndex": 0,
  2848. "_id": ""
  2849. },
  2850. {
  2851. "__type__": "cc.Node",
  2852. "_name": "bestChanceSprite",
  2853. "_objFlags": 0,
  2854. "_parent": {
  2855. "__id__": 79
  2856. },
  2857. "_children": [],
  2858. "_active": true,
  2859. "_level": 3,
  2860. "_components": [
  2861. {
  2862. "__id__": 81
  2863. }
  2864. ],
  2865. "_prefab": {
  2866. "__id__": 82
  2867. },
  2868. "_opacity": 255,
  2869. "_color": {
  2870. "__type__": "cc.Color",
  2871. "r": 255,
  2872. "g": 255,
  2873. "b": 255,
  2874. "a": 255
  2875. },
  2876. "_contentSize": {
  2877. "__type__": "cc.Size",
  2878. "width": 200,
  2879. "height": 80
  2880. },
  2881. "_anchorPoint": {
  2882. "__type__": "cc.Vec2",
  2883. "x": 0.5,
  2884. "y": 0.5
  2885. },
  2886. "_position": {
  2887. "__type__": "cc.Vec3",
  2888. "x": 0,
  2889. "y": 0,
  2890. "z": 0
  2891. },
  2892. "_scale": {
  2893. "__type__": "cc.Vec3",
  2894. "x": 1,
  2895. "y": 1,
  2896. "z": 1
  2897. },
  2898. "_rotationX": 0,
  2899. "_rotationY": 0,
  2900. "_quat": {
  2901. "__type__": "cc.Quat",
  2902. "x": 0,
  2903. "y": 0,
  2904. "z": 0,
  2905. "w": 1
  2906. },
  2907. "_skewX": 0,
  2908. "_skewY": 0,
  2909. "_zIndex": 0,
  2910. "groupIndex": 0,
  2911. "_id": ""
  2912. },
  2913. {
  2914. "__type__": "cc.Sprite",
  2915. "_name": "",
  2916. "_objFlags": 0,
  2917. "node": {
  2918. "__id__": 80
  2919. },
  2920. "_enabled": true,
  2921. "_srcBlendFactor": 770,
  2922. "_dstBlendFactor": 771,
  2923. "_spriteFrame": {
  2924. "__uuid__": "da3589c6-6a16-4cd6-8ec2-78a1ae063bb6"
  2925. },
  2926. "_type": 0,
  2927. "_sizeMode": 1,
  2928. "_fillType": 0,
  2929. "_fillCenter": {
  2930. "__type__": "cc.Vec2",
  2931. "x": 0,
  2932. "y": 0
  2933. },
  2934. "_fillStart": 0,
  2935. "_fillRange": 0,
  2936. "_isTrimmedMode": true,
  2937. "_state": 0,
  2938. "_atlas": null,
  2939. "_id": ""
  2940. },
  2941. {
  2942. "__type__": "cc.PrefabInfo",
  2943. "root": {
  2944. "__id__": 1
  2945. },
  2946. "asset": {
  2947. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  2948. },
  2949. "fileId": "5aCFeSZS1FAL0Xi9FoNiuP",
  2950. "sync": false
  2951. },
  2952. {
  2953. "__type__": "cc.Node",
  2954. "_name": "bestChanceRichText",
  2955. "_objFlags": 0,
  2956. "_parent": {
  2957. "__id__": 79
  2958. },
  2959. "_children": [
  2960. {
  2961. "__id__": 84
  2962. },
  2963. {
  2964. "__id__": 87
  2965. }
  2966. ],
  2967. "_active": true,
  2968. "_level": 3,
  2969. "_components": [
  2970. {
  2971. "__id__": 90
  2972. }
  2973. ],
  2974. "_prefab": {
  2975. "__id__": 91
  2976. },
  2977. "_opacity": 255,
  2978. "_color": {
  2979. "__type__": "cc.Color",
  2980. "r": 255,
  2981. "g": 255,
  2982. "b": 255,
  2983. "a": 255
  2984. },
  2985. "_contentSize": {
  2986. "__type__": "cc.Size",
  2987. "width": 190,
  2988. "height": 40
  2989. },
  2990. "_anchorPoint": {
  2991. "__type__": "cc.Vec2",
  2992. "x": 0.5,
  2993. "y": 0.5
  2994. },
  2995. "_position": {
  2996. "__type__": "cc.Vec3",
  2997. "x": 0,
  2998. "y": 0,
  2999. "z": 0
  3000. },
  3001. "_scale": {
  3002. "__type__": "cc.Vec3",
  3003. "x": 1,
  3004. "y": 1,
  3005. "z": 1
  3006. },
  3007. "_rotationX": 0,
  3008. "_rotationY": 0,
  3009. "_quat": {
  3010. "__type__": "cc.Quat",
  3011. "x": 0,
  3012. "y": 0,
  3013. "z": 0,
  3014. "w": 1
  3015. },
  3016. "_skewX": 0,
  3017. "_skewY": 0,
  3018. "_zIndex": 0,
  3019. "groupIndex": 0,
  3020. "_id": ""
  3021. },
  3022. {
  3023. "__type__": "cc.PrivateNode",
  3024. "_name": "RICHTEXT_CHILD",
  3025. "_objFlags": 0,
  3026. "_parent": {
  3027. "__id__": 83
  3028. },
  3029. "_children": [],
  3030. "_active": true,
  3031. "_level": 4,
  3032. "_components": [
  3033. {
  3034. "__id__": 85
  3035. }
  3036. ],
  3037. "_prefab": {
  3038. "__id__": 86
  3039. },
  3040. "_opacity": 255,
  3041. "_color": {
  3042. "__type__": "cc.Color",
  3043. "r": 0,
  3044. "g": 255,
  3045. "b": 0,
  3046. "a": 255
  3047. },
  3048. "_contentSize": {
  3049. "__type__": "cc.Size",
  3050. "width": 52.01,
  3051. "height": 40
  3052. },
  3053. "_anchorPoint": {
  3054. "__type__": "cc.Vec2",
  3055. "x": 0,
  3056. "y": 0
  3057. },
  3058. "_position": {
  3059. "__type__": "cc.Vec3",
  3060. "x": -49.845,
  3061. "y": -20,
  3062. "z": 0
  3063. },
  3064. "_scale": {
  3065. "__type__": "cc.Vec3",
  3066. "x": 1,
  3067. "y": 1,
  3068. "z": 1
  3069. },
  3070. "_rotationX": 0,
  3071. "_rotationY": 0,
  3072. "_quat": {
  3073. "__type__": "cc.Quat",
  3074. "x": 0,
  3075. "y": 0,
  3076. "z": 0,
  3077. "w": 1
  3078. },
  3079. "_skewX": 0,
  3080. "_skewY": 0,
  3081. "_zIndex": -32768,
  3082. "groupIndex": 0,
  3083. "_id": ""
  3084. },
  3085. {
  3086. "__type__": "cc.Label",
  3087. "_name": "",
  3088. "_objFlags": 0,
  3089. "node": {
  3090. "__id__": 84
  3091. },
  3092. "_enabled": true,
  3093. "_srcBlendFactor": 1,
  3094. "_dstBlendFactor": 771,
  3095. "_useOriginalSize": true,
  3096. "_string": "Rich",
  3097. "_N$string": "Rich",
  3098. "_fontSize": 26,
  3099. "_lineHeight": 40,
  3100. "_enableWrapText": true,
  3101. "_N$file": null,
  3102. "_isSystemFontUsed": true,
  3103. "_spacingX": 0,
  3104. "_N$horizontalAlign": 0,
  3105. "_N$verticalAlign": 1,
  3106. "_N$fontFamily": "Arial",
  3107. "_N$overflow": 0,
  3108. "_id": ""
  3109. },
  3110. {
  3111. "__type__": "cc.PrefabInfo",
  3112. "root": {
  3113. "__id__": 1
  3114. },
  3115. "asset": {
  3116. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  3117. },
  3118. "fileId": "eajVuXZiZA86v+rNclIijq",
  3119. "sync": false
  3120. },
  3121. {
  3122. "__type__": "cc.PrivateNode",
  3123. "_name": "RICHTEXT_CHILD",
  3124. "_objFlags": 0,
  3125. "_parent": {
  3126. "__id__": 83
  3127. },
  3128. "_children": [],
  3129. "_active": true,
  3130. "_level": 4,
  3131. "_components": [
  3132. {
  3133. "__id__": 88
  3134. }
  3135. ],
  3136. "_prefab": {
  3137. "__id__": 89
  3138. },
  3139. "_opacity": 255,
  3140. "_color": {
  3141. "__type__": "cc.Color",
  3142. "r": 15,
  3143. "g": 255,
  3144. "b": 255,
  3145. "a": 255
  3146. },
  3147. "_contentSize": {
  3148. "__type__": "cc.Size",
  3149. "width": 47.68,
  3150. "height": 40
  3151. },
  3152. "_anchorPoint": {
  3153. "__type__": "cc.Vec2",
  3154. "x": 0,
  3155. "y": 0
  3156. },
  3157. "_position": {
  3158. "__type__": "cc.Vec3",
  3159. "x": 2.164999999999999,
  3160. "y": -20,
  3161. "z": 0
  3162. },
  3163. "_scale": {
  3164. "__type__": "cc.Vec3",
  3165. "x": 1,
  3166. "y": 1,
  3167. "z": 1
  3168. },
  3169. "_rotationX": 0,
  3170. "_rotationY": 0,
  3171. "_quat": {
  3172. "__type__": "cc.Quat",
  3173. "x": 0,
  3174. "y": 0,
  3175. "z": 0,
  3176. "w": 1
  3177. },
  3178. "_skewX": 0,
  3179. "_skewY": 0,
  3180. "_zIndex": -32768,
  3181. "groupIndex": 0,
  3182. "_id": ""
  3183. },
  3184. {
  3185. "__type__": "cc.Label",
  3186. "_name": "",
  3187. "_objFlags": 0,
  3188. "node": {
  3189. "__id__": 87
  3190. },
  3191. "_enabled": true,
  3192. "_srcBlendFactor": 1,
  3193. "_dstBlendFactor": 771,
  3194. "_useOriginalSize": true,
  3195. "_string": "Text",
  3196. "_N$string": "Text",
  3197. "_fontSize": 26,
  3198. "_lineHeight": 40,
  3199. "_enableWrapText": true,
  3200. "_N$file": null,
  3201. "_isSystemFontUsed": true,
  3202. "_spacingX": 0,
  3203. "_N$horizontalAlign": 0,
  3204. "_N$verticalAlign": 1,
  3205. "_N$fontFamily": "Arial",
  3206. "_N$overflow": 0,
  3207. "_id": ""
  3208. },
  3209. {
  3210. "__type__": "cc.PrefabInfo",
  3211. "root": {
  3212. "__id__": 1
  3213. },
  3214. "asset": {
  3215. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  3216. },
  3217. "fileId": "a3wFEB6vhOF7Av0+ZcyKo9",
  3218. "sync": false
  3219. },
  3220. {
  3221. "__type__": "cc.RichText",
  3222. "_name": "",
  3223. "_objFlags": 0,
  3224. "node": {
  3225. "__id__": 83
  3226. },
  3227. "_enabled": true,
  3228. "_N$string": "<color=#00ff00>Rich</c><color=#0fffff>Text</color>",
  3229. "_N$horizontalAlign": 1,
  3230. "_N$fontSize": 26,
  3231. "_N$font": null,
  3232. "_N$maxWidth": 190,
  3233. "_N$lineHeight": 40,
  3234. "_N$imageAtlas": {
  3235. "__uuid__": "9a199f9b-2e79-467b-85f6-b6ebe5f54f18"
  3236. },
  3237. "_N$handleTouchEvent": true,
  3238. "_id": ""
  3239. },
  3240. {
  3241. "__type__": "cc.PrefabInfo",
  3242. "root": {
  3243. "__id__": 1
  3244. },
  3245. "asset": {
  3246. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  3247. },
  3248. "fileId": "6dqNLRESxA3Z5jvJxsBzEt",
  3249. "sync": false
  3250. },
  3251. {
  3252. "__type__": "cc.Button",
  3253. "_name": "",
  3254. "_objFlags": 0,
  3255. "node": {
  3256. "__id__": 79
  3257. },
  3258. "_enabled": true,
  3259. "transition": 1,
  3260. "pressedColor": {
  3261. "__type__": "cc.Color",
  3262. "r": 120,
  3263. "g": 120,
  3264. "b": 120,
  3265. "a": 255
  3266. },
  3267. "hoverColor": {
  3268. "__type__": "cc.Color",
  3269. "r": 255,
  3270. "g": 255,
  3271. "b": 255,
  3272. "a": 255
  3273. },
  3274. "duration": 0.1,
  3275. "zoomScale": 1.2,
  3276. "clickEvents": [
  3277. {
  3278. "__id__": 93
  3279. }
  3280. ],
  3281. "_N$interactable": true,
  3282. "_N$enableAutoGrayEffect": false,
  3283. "_N$normalColor": {
  3284. "__type__": "cc.Color",
  3285. "r": 255,
  3286. "g": 255,
  3287. "b": 255,
  3288. "a": 255
  3289. },
  3290. "_N$disabledColor": {
  3291. "__type__": "cc.Color",
  3292. "r": 255,
  3293. "g": 255,
  3294. "b": 255,
  3295. "a": 255
  3296. },
  3297. "_N$normalSprite": {
  3298. "__uuid__": "da3589c6-6a16-4cd6-8ec2-78a1ae063bb6"
  3299. },
  3300. "_N$pressedSprite": {
  3301. "__uuid__": "da3589c6-6a16-4cd6-8ec2-78a1ae063bb6"
  3302. },
  3303. "pressedSprite": {
  3304. "__uuid__": "da3589c6-6a16-4cd6-8ec2-78a1ae063bb6"
  3305. },
  3306. "_N$hoverSprite": {
  3307. "__uuid__": "da3589c6-6a16-4cd6-8ec2-78a1ae063bb6"
  3308. },
  3309. "hoverSprite": {
  3310. "__uuid__": "da3589c6-6a16-4cd6-8ec2-78a1ae063bb6"
  3311. },
  3312. "_N$disabledSprite": {
  3313. "__uuid__": "da3589c6-6a16-4cd6-8ec2-78a1ae063bb6"
  3314. },
  3315. "_N$target": {
  3316. "__id__": 80
  3317. },
  3318. "_id": ""
  3319. },
  3320. {
  3321. "__type__": "cc.ClickEvent",
  3322. "target": {
  3323. "__id__": 1
  3324. },
  3325. "component": "DrawContent",
  3326. "handler": "bestChanceNodeAction",
  3327. "customEventData": ""
  3328. },
  3329. {
  3330. "__type__": "cc.Widget",
  3331. "_name": "",
  3332. "_objFlags": 0,
  3333. "node": {
  3334. "__id__": 79
  3335. },
  3336. "_enabled": true,
  3337. "alignMode": 1,
  3338. "_target": null,
  3339. "_alignFlags": 20,
  3340. "_left": 0,
  3341. "_right": 0,
  3342. "_top": 0,
  3343. "_bottom": 0,
  3344. "_verticalCenter": 0,
  3345. "_horizontalCenter": 0,
  3346. "_isAbsLeft": true,
  3347. "_isAbsRight": true,
  3348. "_isAbsTop": true,
  3349. "_isAbsBottom": true,
  3350. "_isAbsHorizontalCenter": true,
  3351. "_isAbsVerticalCenter": true,
  3352. "_originalWidth": 0,
  3353. "_originalHeight": 0,
  3354. "_id": ""
  3355. },
  3356. {
  3357. "__type__": "cc.PrefabInfo",
  3358. "root": {
  3359. "__id__": 1
  3360. },
  3361. "asset": {
  3362. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  3363. },
  3364. "fileId": "392gduIphESJPwHTVY7b6x",
  3365. "sync": false
  3366. },
  3367. {
  3368. "__type__": "cc.PrefabInfo",
  3369. "root": {
  3370. "__id__": 1
  3371. },
  3372. "asset": {
  3373. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  3374. },
  3375. "fileId": "1e0+RRoRpOUIRNX7wJJPpj",
  3376. "sync": false
  3377. },
  3378. {
  3379. "__type__": "cc.Sprite",
  3380. "_name": "",
  3381. "_objFlags": 0,
  3382. "node": {
  3383. "__id__": 27
  3384. },
  3385. "_enabled": true,
  3386. "_srcBlendFactor": 770,
  3387. "_dstBlendFactor": 771,
  3388. "_spriteFrame": {
  3389. "__uuid__": "9bbda31e-ad49-43c9-aaf2-f7d9896bac69"
  3390. },
  3391. "_type": 1,
  3392. "_sizeMode": 0,
  3393. "_fillType": 0,
  3394. "_fillCenter": {
  3395. "__type__": "cc.Vec2",
  3396. "x": 0,
  3397. "y": 0
  3398. },
  3399. "_fillStart": 0,
  3400. "_fillRange": 0,
  3401. "_isTrimmedMode": true,
  3402. "_state": 0,
  3403. "_atlas": null,
  3404. "_id": ""
  3405. },
  3406. {
  3407. "__type__": "cc.Layout",
  3408. "_name": "",
  3409. "_objFlags": 0,
  3410. "node": {
  3411. "__id__": 27
  3412. },
  3413. "_enabled": true,
  3414. "_layoutSize": {
  3415. "__type__": "cc.Size",
  3416. "width": 640,
  3417. "height": 335
  3418. },
  3419. "_resize": 1,
  3420. "_N$layoutType": 1,
  3421. "_N$padding": 0,
  3422. "_N$cellSize": {
  3423. "__type__": "cc.Size",
  3424. "width": 40,
  3425. "height": 40
  3426. },
  3427. "_N$startAxis": 0,
  3428. "_N$paddingLeft": 0,
  3429. "_N$paddingRight": 0,
  3430. "_N$paddingTop": 0,
  3431. "_N$paddingBottom": 0,
  3432. "_N$spacingX": 20,
  3433. "_N$spacingY": 0,
  3434. "_N$verticalDirection": 1,
  3435. "_N$horizontalDirection": 0,
  3436. "_id": ""
  3437. },
  3438. {
  3439. "__type__": "cc.PrefabInfo",
  3440. "root": {
  3441. "__id__": 1
  3442. },
  3443. "asset": {
  3444. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  3445. },
  3446. "fileId": "562UasoEpGDZ3Edoz3Axkx",
  3447. "sync": false
  3448. },
  3449. {
  3450. "__type__": "cc.Node",
  3451. "_name": "close",
  3452. "_objFlags": 0,
  3453. "_parent": {
  3454. "__id__": 6
  3455. },
  3456. "_children": [
  3457. {
  3458. "__id__": 101
  3459. }
  3460. ],
  3461. "_active": true,
  3462. "_level": 3,
  3463. "_components": [
  3464. {
  3465. "__id__": 104
  3466. },
  3467. {
  3468. "__id__": 105
  3469. },
  3470. {
  3471. "__id__": 107
  3472. }
  3473. ],
  3474. "_prefab": {
  3475. "__id__": 108
  3476. },
  3477. "_opacity": 255,
  3478. "_color": {
  3479. "__type__": "cc.Color",
  3480. "r": 255,
  3481. "g": 255,
  3482. "b": 255,
  3483. "a": 255
  3484. },
  3485. "_contentSize": {
  3486. "__type__": "cc.Size",
  3487. "width": 66,
  3488. "height": 71
  3489. },
  3490. "_anchorPoint": {
  3491. "__type__": "cc.Vec2",
  3492. "x": 0.5,
  3493. "y": 0.5
  3494. },
  3495. "_position": {
  3496. "__type__": "cc.Vec3",
  3497. "x": 332,
  3498. "y": 234,
  3499. "z": 0
  3500. },
  3501. "_scale": {
  3502. "__type__": "cc.Vec3",
  3503. "x": 1,
  3504. "y": 1,
  3505. "z": 1
  3506. },
  3507. "_rotationX": 0,
  3508. "_rotationY": 0,
  3509. "_quat": {
  3510. "__type__": "cc.Quat",
  3511. "x": 0,
  3512. "y": 0,
  3513. "z": 0,
  3514. "w": 1
  3515. },
  3516. "_skewX": 0,
  3517. "_skewY": 0,
  3518. "_zIndex": 0,
  3519. "groupIndex": 0,
  3520. "_id": ""
  3521. },
  3522. {
  3523. "__type__": "cc.Node",
  3524. "_name": "sprite",
  3525. "_objFlags": 0,
  3526. "_parent": {
  3527. "__id__": 100
  3528. },
  3529. "_children": [],
  3530. "_active": true,
  3531. "_level": 4,
  3532. "_components": [
  3533. {
  3534. "__id__": 102
  3535. }
  3536. ],
  3537. "_prefab": {
  3538. "__id__": 103
  3539. },
  3540. "_opacity": 255,
  3541. "_color": {
  3542. "__type__": "cc.Color",
  3543. "r": 255,
  3544. "g": 255,
  3545. "b": 255,
  3546. "a": 255
  3547. },
  3548. "_contentSize": {
  3549. "__type__": "cc.Size",
  3550. "width": 66,
  3551. "height": 71
  3552. },
  3553. "_anchorPoint": {
  3554. "__type__": "cc.Vec2",
  3555. "x": 0.5,
  3556. "y": 0.5
  3557. },
  3558. "_position": {
  3559. "__type__": "cc.Vec3",
  3560. "x": 0,
  3561. "y": 0,
  3562. "z": 0
  3563. },
  3564. "_scale": {
  3565. "__type__": "cc.Vec3",
  3566. "x": 1,
  3567. "y": 1,
  3568. "z": 1
  3569. },
  3570. "_rotationX": 0,
  3571. "_rotationY": 0,
  3572. "_quat": {
  3573. "__type__": "cc.Quat",
  3574. "x": 0,
  3575. "y": 0,
  3576. "z": 0,
  3577. "w": 1
  3578. },
  3579. "_skewX": 0,
  3580. "_skewY": 0,
  3581. "_zIndex": 0,
  3582. "groupIndex": 0,
  3583. "_id": ""
  3584. },
  3585. {
  3586. "__type__": "cc.Sprite",
  3587. "_name": "",
  3588. "_objFlags": 0,
  3589. "node": {
  3590. "__id__": 101
  3591. },
  3592. "_enabled": true,
  3593. "_srcBlendFactor": 770,
  3594. "_dstBlendFactor": 771,
  3595. "_spriteFrame": {
  3596. "__uuid__": "3b53aea6-e62a-4433-9e69-df03a3a718a7"
  3597. },
  3598. "_type": 0,
  3599. "_sizeMode": 1,
  3600. "_fillType": 0,
  3601. "_fillCenter": {
  3602. "__type__": "cc.Vec2",
  3603. "x": 0,
  3604. "y": 0
  3605. },
  3606. "_fillStart": 0,
  3607. "_fillRange": 0,
  3608. "_isTrimmedMode": true,
  3609. "_state": 0,
  3610. "_atlas": null,
  3611. "_id": ""
  3612. },
  3613. {
  3614. "__type__": "cc.PrefabInfo",
  3615. "root": {
  3616. "__id__": 1
  3617. },
  3618. "asset": {
  3619. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  3620. },
  3621. "fileId": "23P9ht8nFA45VMPVwJKL0y",
  3622. "sync": false
  3623. },
  3624. {
  3625. "__type__": "cc.Sprite",
  3626. "_name": "",
  3627. "_objFlags": 0,
  3628. "node": {
  3629. "__id__": 100
  3630. },
  3631. "_enabled": true,
  3632. "_srcBlendFactor": 770,
  3633. "_dstBlendFactor": 771,
  3634. "_spriteFrame": null,
  3635. "_type": 1,
  3636. "_sizeMode": 0,
  3637. "_fillType": 0,
  3638. "_fillCenter": {
  3639. "__type__": "cc.Vec2",
  3640. "x": 0,
  3641. "y": 0
  3642. },
  3643. "_fillStart": 0,
  3644. "_fillRange": 0,
  3645. "_isTrimmedMode": true,
  3646. "_state": 0,
  3647. "_atlas": null,
  3648. "_id": ""
  3649. },
  3650. {
  3651. "__type__": "cc.Button",
  3652. "_name": "",
  3653. "_objFlags": 0,
  3654. "node": {
  3655. "__id__": 100
  3656. },
  3657. "_enabled": true,
  3658. "transition": 1,
  3659. "pressedColor": {
  3660. "__type__": "cc.Color",
  3661. "r": 120,
  3662. "g": 120,
  3663. "b": 120,
  3664. "a": 255
  3665. },
  3666. "hoverColor": {
  3667. "__type__": "cc.Color",
  3668. "r": 255,
  3669. "g": 255,
  3670. "b": 255,
  3671. "a": 255
  3672. },
  3673. "duration": 0.1,
  3674. "zoomScale": 1.2,
  3675. "clickEvents": [
  3676. {
  3677. "__id__": 106
  3678. }
  3679. ],
  3680. "_N$interactable": true,
  3681. "_N$enableAutoGrayEffect": false,
  3682. "_N$normalColor": {
  3683. "__type__": "cc.Color",
  3684. "r": 255,
  3685. "g": 255,
  3686. "b": 255,
  3687. "a": 255
  3688. },
  3689. "_N$disabledColor": {
  3690. "__type__": "cc.Color",
  3691. "r": 255,
  3692. "g": 255,
  3693. "b": 255,
  3694. "a": 255
  3695. },
  3696. "_N$normalSprite": null,
  3697. "_N$pressedSprite": null,
  3698. "pressedSprite": null,
  3699. "_N$hoverSprite": null,
  3700. "hoverSprite": null,
  3701. "_N$disabledSprite": null,
  3702. "_N$target": {
  3703. "__id__": 101
  3704. },
  3705. "_id": ""
  3706. },
  3707. {
  3708. "__type__": "cc.ClickEvent",
  3709. "target": {
  3710. "__id__": 1
  3711. },
  3712. "component": "DrawContent",
  3713. "handler": "closeNodeAction",
  3714. "customEventData": ""
  3715. },
  3716. {
  3717. "__type__": "cc.Widget",
  3718. "_name": "",
  3719. "_objFlags": 0,
  3720. "node": {
  3721. "__id__": 100
  3722. },
  3723. "_enabled": true,
  3724. "alignMode": 1,
  3725. "_target": null,
  3726. "_alignFlags": 33,
  3727. "_left": 0,
  3728. "_right": -365,
  3729. "_top": -269.5,
  3730. "_bottom": 0,
  3731. "_verticalCenter": 0,
  3732. "_horizontalCenter": 0,
  3733. "_isAbsLeft": true,
  3734. "_isAbsRight": true,
  3735. "_isAbsTop": true,
  3736. "_isAbsBottom": true,
  3737. "_isAbsHorizontalCenter": true,
  3738. "_isAbsVerticalCenter": true,
  3739. "_originalWidth": 0,
  3740. "_originalHeight": 0,
  3741. "_id": ""
  3742. },
  3743. {
  3744. "__type__": "cc.PrefabInfo",
  3745. "root": {
  3746. "__id__": 1
  3747. },
  3748. "asset": {
  3749. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  3750. },
  3751. "fileId": "caFbw+5zNE0Y3uQeHEoRn9",
  3752. "sync": false
  3753. },
  3754. {
  3755. "__type__": "cc.Node",
  3756. "_name": "drawRedButton",
  3757. "_objFlags": 0,
  3758. "_parent": {
  3759. "__id__": 6
  3760. },
  3761. "_children": [
  3762. {
  3763. "__id__": 110
  3764. },
  3765. {
  3766. "__id__": 116
  3767. },
  3768. {
  3769. "__id__": 119
  3770. }
  3771. ],
  3772. "_active": true,
  3773. "_level": 3,
  3774. "_components": [
  3775. {
  3776. "__id__": 122
  3777. }
  3778. ],
  3779. "_prefab": {
  3780. "__id__": 124
  3781. },
  3782. "_opacity": 255,
  3783. "_color": {
  3784. "__type__": "cc.Color",
  3785. "r": 255,
  3786. "g": 255,
  3787. "b": 255,
  3788. "a": 255
  3789. },
  3790. "_contentSize": {
  3791. "__type__": "cc.Size",
  3792. "width": 200,
  3793. "height": 200
  3794. },
  3795. "_anchorPoint": {
  3796. "__type__": "cc.Vec2",
  3797. "x": 0.5,
  3798. "y": 0.5
  3799. },
  3800. "_position": {
  3801. "__type__": "cc.Vec3",
  3802. "x": -250,
  3803. "y": 366,
  3804. "z": 0
  3805. },
  3806. "_scale": {
  3807. "__type__": "cc.Vec3",
  3808. "x": 1,
  3809. "y": 1,
  3810. "z": 1
  3811. },
  3812. "_rotationX": 0,
  3813. "_rotationY": 0,
  3814. "_quat": {
  3815. "__type__": "cc.Quat",
  3816. "x": 0,
  3817. "y": 0,
  3818. "z": 0,
  3819. "w": 1
  3820. },
  3821. "_skewX": 0,
  3822. "_skewY": 0,
  3823. "_zIndex": 0,
  3824. "groupIndex": 0,
  3825. "_id": ""
  3826. },
  3827. {
  3828. "__type__": "cc.Node",
  3829. "_name": "diamond_bg",
  3830. "_objFlags": 0,
  3831. "_parent": {
  3832. "__id__": 109
  3833. },
  3834. "_children": [
  3835. {
  3836. "__id__": 111
  3837. }
  3838. ],
  3839. "_active": true,
  3840. "_level": 4,
  3841. "_components": [
  3842. {
  3843. "__id__": 114
  3844. }
  3845. ],
  3846. "_prefab": {
  3847. "__id__": 115
  3848. },
  3849. "_opacity": 255,
  3850. "_color": {
  3851. "__type__": "cc.Color",
  3852. "r": 255,
  3853. "g": 255,
  3854. "b": 255,
  3855. "a": 255
  3856. },
  3857. "_contentSize": {
  3858. "__type__": "cc.Size",
  3859. "width": 180,
  3860. "height": 40
  3861. },
  3862. "_anchorPoint": {
  3863. "__type__": "cc.Vec2",
  3864. "x": 0.5,
  3865. "y": 0.5
  3866. },
  3867. "_position": {
  3868. "__type__": "cc.Vec3",
  3869. "x": -7,
  3870. "y": 20,
  3871. "z": 0
  3872. },
  3873. "_scale": {
  3874. "__type__": "cc.Vec3",
  3875. "x": 1,
  3876. "y": 1,
  3877. "z": 1
  3878. },
  3879. "_rotationX": 0,
  3880. "_rotationY": 0,
  3881. "_quat": {
  3882. "__type__": "cc.Quat",
  3883. "x": 0,
  3884. "y": 0,
  3885. "z": 0,
  3886. "w": 1
  3887. },
  3888. "_skewX": 0,
  3889. "_skewY": 0,
  3890. "_zIndex": 0,
  3891. "groupIndex": 0,
  3892. "_id": ""
  3893. },
  3894. {
  3895. "__type__": "cc.Node",
  3896. "_name": "richtext",
  3897. "_objFlags": 0,
  3898. "_parent": {
  3899. "__id__": 110
  3900. },
  3901. "_children": [],
  3902. "_active": true,
  3903. "_level": 5,
  3904. "_components": [
  3905. {
  3906. "__id__": 112
  3907. }
  3908. ],
  3909. "_prefab": {
  3910. "__id__": 113
  3911. },
  3912. "_opacity": 255,
  3913. "_color": {
  3914. "__type__": "cc.Color",
  3915. "r": 254,
  3916. "g": 200,
  3917. "b": 8,
  3918. "a": 255
  3919. },
  3920. "_contentSize": {
  3921. "__type__": "cc.Size",
  3922. "width": 0,
  3923. "height": 26
  3924. },
  3925. "_anchorPoint": {
  3926. "__type__": "cc.Vec2",
  3927. "x": 0,
  3928. "y": 0.5
  3929. },
  3930. "_position": {
  3931. "__type__": "cc.Vec3",
  3932. "x": -29,
  3933. "y": 0,
  3934. "z": 0
  3935. },
  3936. "_scale": {
  3937. "__type__": "cc.Vec3",
  3938. "x": 1,
  3939. "y": 1,
  3940. "z": 1
  3941. },
  3942. "_rotationX": 0,
  3943. "_rotationY": 0,
  3944. "_quat": {
  3945. "__type__": "cc.Quat",
  3946. "x": 0,
  3947. "y": 0,
  3948. "z": 0,
  3949. "w": 1
  3950. },
  3951. "_skewX": 0,
  3952. "_skewY": 0,
  3953. "_zIndex": 0,
  3954. "groupIndex": 0,
  3955. "_id": ""
  3956. },
  3957. {
  3958. "__type__": "cc.RichText",
  3959. "_name": "",
  3960. "_objFlags": 0,
  3961. "node": {
  3962. "__id__": 111
  3963. },
  3964. "_enabled": true,
  3965. "_N$string": "",
  3966. "_N$horizontalAlign": 1,
  3967. "_N$fontSize": 24,
  3968. "_N$font": null,
  3969. "_N$maxWidth": 0,
  3970. "_N$lineHeight": 26,
  3971. "_N$imageAtlas": null,
  3972. "_N$handleTouchEvent": true,
  3973. "_id": ""
  3974. },
  3975. {
  3976. "__type__": "cc.PrefabInfo",
  3977. "root": {
  3978. "__id__": 1
  3979. },
  3980. "asset": {
  3981. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  3982. },
  3983. "fileId": "74jT+JmptOTqZ+lbU04NiB",
  3984. "sync": false
  3985. },
  3986. {
  3987. "__type__": "cc.Sprite",
  3988. "_name": "",
  3989. "_objFlags": 0,
  3990. "node": {
  3991. "__id__": 110
  3992. },
  3993. "_enabled": true,
  3994. "_srcBlendFactor": 770,
  3995. "_dstBlendFactor": 771,
  3996. "_spriteFrame": {
  3997. "__uuid__": "e2c30aca-1dcb-4d15-8b5d-c219718e35df"
  3998. },
  3999. "_type": 0,
  4000. "_sizeMode": 1,
  4001. "_fillType": 0,
  4002. "_fillCenter": {
  4003. "__type__": "cc.Vec2",
  4004. "x": 0,
  4005. "y": 0
  4006. },
  4007. "_fillStart": 0,
  4008. "_fillRange": 0,
  4009. "_isTrimmedMode": true,
  4010. "_state": 0,
  4011. "_atlas": null,
  4012. "_id": ""
  4013. },
  4014. {
  4015. "__type__": "cc.PrefabInfo",
  4016. "root": {
  4017. "__id__": 1
  4018. },
  4019. "asset": {
  4020. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  4021. },
  4022. "fileId": "d4Kww/6ctGaoJgwA5fw+s+",
  4023. "sync": false
  4024. },
  4025. {
  4026. "__type__": "cc.Node",
  4027. "_name": "draw_red",
  4028. "_objFlags": 0,
  4029. "_parent": {
  4030. "__id__": 109
  4031. },
  4032. "_children": [],
  4033. "_active": true,
  4034. "_level": 4,
  4035. "_components": [
  4036. {
  4037. "__id__": 117
  4038. }
  4039. ],
  4040. "_prefab": {
  4041. "__id__": 118
  4042. },
  4043. "_opacity": 255,
  4044. "_color": {
  4045. "__type__": "cc.Color",
  4046. "r": 255,
  4047. "g": 255,
  4048. "b": 255,
  4049. "a": 255
  4050. },
  4051. "_contentSize": {
  4052. "__type__": "cc.Size",
  4053. "width": 48,
  4054. "height": 62
  4055. },
  4056. "_anchorPoint": {
  4057. "__type__": "cc.Vec2",
  4058. "x": 0.5,
  4059. "y": 0.5
  4060. },
  4061. "_position": {
  4062. "__type__": "cc.Vec3",
  4063. "x": -72,
  4064. "y": 9,
  4065. "z": 0
  4066. },
  4067. "_scale": {
  4068. "__type__": "cc.Vec3",
  4069. "x": 1,
  4070. "y": 1,
  4071. "z": 1
  4072. },
  4073. "_rotationX": 0,
  4074. "_rotationY": 0,
  4075. "_quat": {
  4076. "__type__": "cc.Quat",
  4077. "x": 0,
  4078. "y": 0,
  4079. "z": 0,
  4080. "w": 1
  4081. },
  4082. "_skewX": 0,
  4083. "_skewY": 0,
  4084. "_zIndex": 0,
  4085. "groupIndex": 0,
  4086. "_id": ""
  4087. },
  4088. {
  4089. "__type__": "cc.Sprite",
  4090. "_name": "",
  4091. "_objFlags": 0,
  4092. "node": {
  4093. "__id__": 116
  4094. },
  4095. "_enabled": true,
  4096. "_srcBlendFactor": 770,
  4097. "_dstBlendFactor": 771,
  4098. "_spriteFrame": {
  4099. "__uuid__": "1f52c3b4-77c6-4e84-9085-24b1edfe7e5f"
  4100. },
  4101. "_type": 0,
  4102. "_sizeMode": 1,
  4103. "_fillType": 0,
  4104. "_fillCenter": {
  4105. "__type__": "cc.Vec2",
  4106. "x": 0,
  4107. "y": 0
  4108. },
  4109. "_fillStart": 0,
  4110. "_fillRange": 0,
  4111. "_isTrimmedMode": true,
  4112. "_state": 0,
  4113. "_atlas": null,
  4114. "_id": ""
  4115. },
  4116. {
  4117. "__type__": "cc.PrefabInfo",
  4118. "root": {
  4119. "__id__": 1
  4120. },
  4121. "asset": {
  4122. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  4123. },
  4124. "fileId": "b29GdEtt1GuIuvxSwSUikg",
  4125. "sync": false
  4126. },
  4127. {
  4128. "__type__": "cc.Node",
  4129. "_name": "label",
  4130. "_objFlags": 0,
  4131. "_parent": {
  4132. "__id__": 109
  4133. },
  4134. "_children": [],
  4135. "_active": true,
  4136. "_level": 4,
  4137. "_components": [
  4138. {
  4139. "__id__": 120
  4140. }
  4141. ],
  4142. "_prefab": {
  4143. "__id__": 121
  4144. },
  4145. "_opacity": 255,
  4146. "_color": {
  4147. "__type__": "cc.Color",
  4148. "r": 148,
  4149. "g": 148,
  4150. "b": 148,
  4151. "a": 255
  4152. },
  4153. "_contentSize": {
  4154. "__type__": "cc.Size",
  4155. "width": 97.8,
  4156. "height": 18
  4157. },
  4158. "_anchorPoint": {
  4159. "__type__": "cc.Vec2",
  4160. "x": 0.5,
  4161. "y": 0.5
  4162. },
  4163. "_position": {
  4164. "__type__": "cc.Vec3",
  4165. "x": 3.6,
  4166. "y": -14,
  4167. "z": 0
  4168. },
  4169. "_scale": {
  4170. "__type__": "cc.Vec3",
  4171. "x": 1,
  4172. "y": 1,
  4173. "z": 1
  4174. },
  4175. "_rotationX": 0,
  4176. "_rotationY": 0,
  4177. "_quat": {
  4178. "__type__": "cc.Quat",
  4179. "x": 0,
  4180. "y": 0,
  4181. "z": 0,
  4182. "w": 1
  4183. },
  4184. "_skewX": 0,
  4185. "_skewY": 0,
  4186. "_zIndex": 0,
  4187. "groupIndex": 0,
  4188. "_id": ""
  4189. },
  4190. {
  4191. "__type__": "cc.Label",
  4192. "_name": "",
  4193. "_objFlags": 0,
  4194. "node": {
  4195. "__id__": 119
  4196. },
  4197. "_enabled": true,
  4198. "_srcBlendFactor": 1,
  4199. "_dstBlendFactor": 771,
  4200. "_useOriginalSize": false,
  4201. "_string": "满10元可提现",
  4202. "_N$string": "满10元可提现",
  4203. "_fontSize": 16,
  4204. "_lineHeight": 18,
  4205. "_enableWrapText": true,
  4206. "_N$file": null,
  4207. "_isSystemFontUsed": true,
  4208. "_spacingX": 0,
  4209. "_N$horizontalAlign": 1,
  4210. "_N$verticalAlign": 1,
  4211. "_N$fontFamily": "Arial",
  4212. "_N$overflow": 0,
  4213. "_id": ""
  4214. },
  4215. {
  4216. "__type__": "cc.PrefabInfo",
  4217. "root": {
  4218. "__id__": 1
  4219. },
  4220. "asset": {
  4221. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  4222. },
  4223. "fileId": "04RmfVzfRKi5TlxwUXX3ES",
  4224. "sync": false
  4225. },
  4226. {
  4227. "__type__": "cc.Button",
  4228. "_name": "",
  4229. "_objFlags": 0,
  4230. "node": {
  4231. "__id__": 109
  4232. },
  4233. "_enabled": true,
  4234. "transition": 1,
  4235. "pressedColor": {
  4236. "__type__": "cc.Color",
  4237. "r": 120,
  4238. "g": 120,
  4239. "b": 120,
  4240. "a": 255
  4241. },
  4242. "hoverColor": {
  4243. "__type__": "cc.Color",
  4244. "r": 255,
  4245. "g": 255,
  4246. "b": 255,
  4247. "a": 255
  4248. },
  4249. "duration": 0.1,
  4250. "zoomScale": 1.2,
  4251. "clickEvents": [
  4252. {
  4253. "__id__": 123
  4254. }
  4255. ],
  4256. "_N$interactable": true,
  4257. "_N$enableAutoGrayEffect": false,
  4258. "_N$normalColor": {
  4259. "__type__": "cc.Color",
  4260. "r": 255,
  4261. "g": 255,
  4262. "b": 255,
  4263. "a": 255
  4264. },
  4265. "_N$disabledColor": {
  4266. "__type__": "cc.Color",
  4267. "r": 255,
  4268. "g": 255,
  4269. "b": 255,
  4270. "a": 255
  4271. },
  4272. "_N$normalSprite": {
  4273. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4274. },
  4275. "_N$pressedSprite": {
  4276. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4277. },
  4278. "pressedSprite": {
  4279. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4280. },
  4281. "_N$hoverSprite": {
  4282. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4283. },
  4284. "hoverSprite": {
  4285. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4286. },
  4287. "_N$disabledSprite": {
  4288. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  4289. },
  4290. "_N$target": {
  4291. "__id__": 109
  4292. },
  4293. "_id": ""
  4294. },
  4295. {
  4296. "__type__": "cc.ClickEvent",
  4297. "target": {
  4298. "__id__": 1
  4299. },
  4300. "component": "DrawContent",
  4301. "handler": "showDrawRedAction",
  4302. "customEventData": ""
  4303. },
  4304. {
  4305. "__type__": "cc.PrefabInfo",
  4306. "root": {
  4307. "__id__": 1
  4308. },
  4309. "asset": {
  4310. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  4311. },
  4312. "fileId": "6fauAklUhNqY9iaIa1Ig9I",
  4313. "sync": false
  4314. },
  4315. {
  4316. "__type__": "cc.PrefabInfo",
  4317. "root": {
  4318. "__id__": 1
  4319. },
  4320. "asset": {
  4321. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  4322. },
  4323. "fileId": "d3m6Iwa0tAIrV3k8aiDmpz",
  4324. "sync": false
  4325. },
  4326. {
  4327. "__type__": "fc548afikRKLZd6az9TG8fw",
  4328. "_name": "",
  4329. "_objFlags": 0,
  4330. "node": {
  4331. "__id__": 1
  4332. },
  4333. "_enabled": true,
  4334. "moreRichText": {
  4335. "__id__": 67
  4336. },
  4337. "bestRichText": {
  4338. "__id__": 90
  4339. },
  4340. "normalRichText": {
  4341. "__id__": 44
  4342. },
  4343. "normalDrawButton": {
  4344. "__id__": 46
  4345. },
  4346. "bestChanceButton": {
  4347. "__id__": 92
  4348. },
  4349. "moreChanceButton": {
  4350. "__id__": 69
  4351. },
  4352. "normalDrawButtonSprite": {
  4353. "__id__": 35
  4354. },
  4355. "bestChanceButtonSprite": {
  4356. "__id__": 81
  4357. },
  4358. "moreChanceButtonSprite": {
  4359. "__id__": 58
  4360. },
  4361. "content": {
  4362. "__id__": 6
  4363. },
  4364. "shareActionNode": {
  4365. "__id__": 28
  4366. },
  4367. "drawMoneyLabel": {
  4368. "__id__": 112
  4369. },
  4370. "_id": ""
  4371. },
  4372. {
  4373. "__type__": "cc.PrefabInfo",
  4374. "root": {
  4375. "__id__": 1
  4376. },
  4377. "asset": {
  4378. "__uuid__": "ccee106e-a016-4055-9d7e-3862f77f1109"
  4379. },
  4380. "fileId": "478UEms4VCEZMwmV65/49m",
  4381. "sync": false
  4382. }
  4383. ]