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