9954563c-4a95-407c-8b4e-90d9fa077fcc.json 73 KB

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