draw_content.prefab 68 KB

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