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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266
  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__": 148
  38. },
  39. {
  40. "__id__": 156
  41. },
  42. {
  43. "__id__": 164
  44. }
  45. ],
  46. "_active": true,
  47. "_components": [
  48. {
  49. "__id__": 172
  50. },
  51. {
  52. "__id__": 174
  53. },
  54. {
  55. "__id__": 176
  56. }
  57. ],
  58. "_prefab": {
  59. "__id__": 178
  60. },
  61. "_lpos": {
  62. "__type__": "cc.Vec3",
  63. "x": 0,
  64. "y": 0,
  65. "z": 0
  66. },
  67. "_lrot": {
  68. "__type__": "cc.Quat",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0,
  72. "w": 1
  73. },
  74. "_lscale": {
  75. "__type__": "cc.Vec3",
  76. "x": 1,
  77. "y": 1,
  78. "z": 1
  79. },
  80. "_mobility": 0,
  81. "_layer": 33554432,
  82. "_euler": {
  83. "__type__": "cc.Vec3",
  84. "x": 0,
  85. "y": 0,
  86. "z": 0
  87. },
  88. "_id": ""
  89. },
  90. {
  91. "__type__": "cc.Node",
  92. "_name": "Pause_Btn",
  93. "_objFlags": 0,
  94. "__editorExtras__": {},
  95. "_parent": {
  96. "__id__": 1
  97. },
  98. "_children": [],
  99. "_active": true,
  100. "_components": [
  101. {
  102. "__id__": 3
  103. },
  104. {
  105. "__id__": 5
  106. },
  107. {
  108. "__id__": 7
  109. },
  110. {
  111. "__id__": 9
  112. }
  113. ],
  114. "_prefab": {
  115. "__id__": 11
  116. },
  117. "_lpos": {
  118. "__type__": "cc.Vec3",
  119. "x": -312.473,
  120. "y": 753.9860000000001,
  121. "z": 0
  122. },
  123. "_lrot": {
  124. "__type__": "cc.Quat",
  125. "x": 0,
  126. "y": 0,
  127. "z": 0,
  128. "w": 1
  129. },
  130. "_lscale": {
  131. "__type__": "cc.Vec3",
  132. "x": 1,
  133. "y": 1,
  134. "z": 1
  135. },
  136. "_mobility": 0,
  137. "_layer": 33554432,
  138. "_euler": {
  139. "__type__": "cc.Vec3",
  140. "x": 0,
  141. "y": 0,
  142. "z": 0
  143. },
  144. "_id": ""
  145. },
  146. {
  147. "__type__": "cc.UITransform",
  148. "_name": "",
  149. "_objFlags": 0,
  150. "__editorExtras__": {},
  151. "node": {
  152. "__id__": 2
  153. },
  154. "_enabled": true,
  155. "__prefab": {
  156. "__id__": 4
  157. },
  158. "_contentSize": {
  159. "__type__": "cc.Size",
  160. "width": 78,
  161. "height": 77
  162. },
  163. "_anchorPoint": {
  164. "__type__": "cc.Vec2",
  165. "x": 0.5,
  166. "y": 0.5
  167. },
  168. "_id": ""
  169. },
  170. {
  171. "__type__": "cc.CompPrefabInfo",
  172. "fileId": "77ELnRYgRIWoyYrVyWcAou"
  173. },
  174. {
  175. "__type__": "cc.Sprite",
  176. "_name": "",
  177. "_objFlags": 0,
  178. "__editorExtras__": {},
  179. "node": {
  180. "__id__": 2
  181. },
  182. "_enabled": true,
  183. "__prefab": {
  184. "__id__": 6
  185. },
  186. "_customMaterial": null,
  187. "_srcBlendFactor": 2,
  188. "_dstBlendFactor": 4,
  189. "_color": {
  190. "__type__": "cc.Color",
  191. "r": 255,
  192. "g": 255,
  193. "b": 255,
  194. "a": 255
  195. },
  196. "_spriteFrame": {
  197. "__uuid__": "f24835f5-9ea9-4151-a9d7-c6aac5f300aa@f9941",
  198. "__expectedType__": "cc.SpriteFrame"
  199. },
  200. "_type": 1,
  201. "_fillType": 0,
  202. "_sizeMode": 0,
  203. "_fillCenter": {
  204. "__type__": "cc.Vec2",
  205. "x": 0,
  206. "y": 0
  207. },
  208. "_fillStart": 0,
  209. "_fillRange": 0,
  210. "_isTrimmedMode": true,
  211. "_useGrayscale": false,
  212. "_atlas": null,
  213. "_id": ""
  214. },
  215. {
  216. "__type__": "cc.CompPrefabInfo",
  217. "fileId": "a7G2vP5aFK4pqJHhDUhRrg"
  218. },
  219. {
  220. "__type__": "cc.Button",
  221. "_name": "",
  222. "_objFlags": 0,
  223. "__editorExtras__": {},
  224. "node": {
  225. "__id__": 2
  226. },
  227. "_enabled": true,
  228. "__prefab": {
  229. "__id__": 8
  230. },
  231. "clickEvents": [],
  232. "_interactable": true,
  233. "_transition": 3,
  234. "_normalColor": {
  235. "__type__": "cc.Color",
  236. "r": 214,
  237. "g": 214,
  238. "b": 214,
  239. "a": 255
  240. },
  241. "_hoverColor": {
  242. "__type__": "cc.Color",
  243. "r": 211,
  244. "g": 211,
  245. "b": 211,
  246. "a": 255
  247. },
  248. "_pressedColor": {
  249. "__type__": "cc.Color",
  250. "r": 255,
  251. "g": 255,
  252. "b": 255,
  253. "a": 255
  254. },
  255. "_disabledColor": {
  256. "__type__": "cc.Color",
  257. "r": 124,
  258. "g": 124,
  259. "b": 124,
  260. "a": 255
  261. },
  262. "_normalSprite": {
  263. "__uuid__": "f24835f5-9ea9-4151-a9d7-c6aac5f300aa@f9941",
  264. "__expectedType__": "cc.SpriteFrame"
  265. },
  266. "_hoverSprite": {
  267. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  268. "__expectedType__": "cc.SpriteFrame"
  269. },
  270. "_pressedSprite": {
  271. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  272. "__expectedType__": "cc.SpriteFrame"
  273. },
  274. "_disabledSprite": {
  275. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  276. "__expectedType__": "cc.SpriteFrame"
  277. },
  278. "_duration": 0.1,
  279. "_zoomScale": 1.2,
  280. "_target": {
  281. "__id__": 2
  282. },
  283. "_id": ""
  284. },
  285. {
  286. "__type__": "cc.CompPrefabInfo",
  287. "fileId": "2938cfPP9Lt6DAtF9X/07b"
  288. },
  289. {
  290. "__type__": "cc.Widget",
  291. "_name": "",
  292. "_objFlags": 0,
  293. "__editorExtras__": {},
  294. "node": {
  295. "__id__": 2
  296. },
  297. "_enabled": true,
  298. "__prefab": {
  299. "__id__": 10
  300. },
  301. "_alignFlags": 9,
  302. "_target": null,
  303. "_left": -301.473,
  304. "_right": 0,
  305. "_top": -742.4860000000001,
  306. "_bottom": 0,
  307. "_horizontalCenter": 0,
  308. "_verticalCenter": 0,
  309. "_isAbsLeft": true,
  310. "_isAbsRight": true,
  311. "_isAbsTop": true,
  312. "_isAbsBottom": true,
  313. "_isAbsHorizontalCenter": true,
  314. "_isAbsVerticalCenter": true,
  315. "_originalWidth": 0,
  316. "_originalHeight": 0,
  317. "_alignMode": 2,
  318. "_lockFlags": 0,
  319. "_id": ""
  320. },
  321. {
  322. "__type__": "cc.CompPrefabInfo",
  323. "fileId": "156xQKi+BISoHfdZ/v4+eU"
  324. },
  325. {
  326. "__type__": "cc.PrefabInfo",
  327. "root": {
  328. "__id__": 1
  329. },
  330. "asset": {
  331. "__id__": 0
  332. },
  333. "fileId": "b9AKG9OlxIMIb3pLDiDwPs",
  334. "instance": null,
  335. "targetOverrides": null,
  336. "nestedPrefabInstanceRoots": null
  337. },
  338. {
  339. "__type__": "cc.Node",
  340. "_name": "Rules_Btn",
  341. "_objFlags": 0,
  342. "__editorExtras__": {},
  343. "_parent": {
  344. "__id__": 1
  345. },
  346. "_children": [],
  347. "_active": true,
  348. "_components": [
  349. {
  350. "__id__": 13
  351. },
  352. {
  353. "__id__": 15
  354. },
  355. {
  356. "__id__": 17
  357. },
  358. {
  359. "__id__": 19
  360. }
  361. ],
  362. "_prefab": {
  363. "__id__": 21
  364. },
  365. "_lpos": {
  366. "__type__": "cc.Vec3",
  367. "x": -201.411,
  368. "y": 750.8119999999999,
  369. "z": 0
  370. },
  371. "_lrot": {
  372. "__type__": "cc.Quat",
  373. "x": 0,
  374. "y": 0,
  375. "z": 0,
  376. "w": 1
  377. },
  378. "_lscale": {
  379. "__type__": "cc.Vec3",
  380. "x": 1,
  381. "y": 1,
  382. "z": 1
  383. },
  384. "_mobility": 0,
  385. "_layer": 33554432,
  386. "_euler": {
  387. "__type__": "cc.Vec3",
  388. "x": 0,
  389. "y": 0,
  390. "z": 0
  391. },
  392. "_id": ""
  393. },
  394. {
  395. "__type__": "cc.UITransform",
  396. "_name": "",
  397. "_objFlags": 0,
  398. "__editorExtras__": {},
  399. "node": {
  400. "__id__": 12
  401. },
  402. "_enabled": true,
  403. "__prefab": {
  404. "__id__": 14
  405. },
  406. "_contentSize": {
  407. "__type__": "cc.Size",
  408. "width": 78,
  409. "height": 77
  410. },
  411. "_anchorPoint": {
  412. "__type__": "cc.Vec2",
  413. "x": 0.5,
  414. "y": 0.5
  415. },
  416. "_id": ""
  417. },
  418. {
  419. "__type__": "cc.CompPrefabInfo",
  420. "fileId": "2fu89HEpBFTK4sc5+Su1Hi"
  421. },
  422. {
  423. "__type__": "cc.Sprite",
  424. "_name": "",
  425. "_objFlags": 0,
  426. "__editorExtras__": {},
  427. "node": {
  428. "__id__": 12
  429. },
  430. "_enabled": true,
  431. "__prefab": {
  432. "__id__": 16
  433. },
  434. "_customMaterial": null,
  435. "_srcBlendFactor": 2,
  436. "_dstBlendFactor": 4,
  437. "_color": {
  438. "__type__": "cc.Color",
  439. "r": 255,
  440. "g": 255,
  441. "b": 255,
  442. "a": 255
  443. },
  444. "_spriteFrame": {
  445. "__uuid__": "c980100e-53e9-44e8-bfc4-9adce17d5f86@f9941",
  446. "__expectedType__": "cc.SpriteFrame"
  447. },
  448. "_type": 1,
  449. "_fillType": 0,
  450. "_sizeMode": 0,
  451. "_fillCenter": {
  452. "__type__": "cc.Vec2",
  453. "x": 0,
  454. "y": 0
  455. },
  456. "_fillStart": 0,
  457. "_fillRange": 0,
  458. "_isTrimmedMode": true,
  459. "_useGrayscale": false,
  460. "_atlas": null,
  461. "_id": ""
  462. },
  463. {
  464. "__type__": "cc.CompPrefabInfo",
  465. "fileId": "143qyk+z1B2pilmiZt7MC9"
  466. },
  467. {
  468. "__type__": "cc.Button",
  469. "_name": "",
  470. "_objFlags": 0,
  471. "__editorExtras__": {},
  472. "node": {
  473. "__id__": 12
  474. },
  475. "_enabled": true,
  476. "__prefab": {
  477. "__id__": 18
  478. },
  479. "clickEvents": [],
  480. "_interactable": true,
  481. "_transition": 3,
  482. "_normalColor": {
  483. "__type__": "cc.Color",
  484. "r": 214,
  485. "g": 214,
  486. "b": 214,
  487. "a": 255
  488. },
  489. "_hoverColor": {
  490. "__type__": "cc.Color",
  491. "r": 211,
  492. "g": 211,
  493. "b": 211,
  494. "a": 255
  495. },
  496. "_pressedColor": {
  497. "__type__": "cc.Color",
  498. "r": 255,
  499. "g": 255,
  500. "b": 255,
  501. "a": 255
  502. },
  503. "_disabledColor": {
  504. "__type__": "cc.Color",
  505. "r": 124,
  506. "g": 124,
  507. "b": 124,
  508. "a": 255
  509. },
  510. "_normalSprite": {
  511. "__uuid__": "c980100e-53e9-44e8-bfc4-9adce17d5f86@f9941",
  512. "__expectedType__": "cc.SpriteFrame"
  513. },
  514. "_hoverSprite": {
  515. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  516. "__expectedType__": "cc.SpriteFrame"
  517. },
  518. "_pressedSprite": {
  519. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  520. "__expectedType__": "cc.SpriteFrame"
  521. },
  522. "_disabledSprite": {
  523. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  524. "__expectedType__": "cc.SpriteFrame"
  525. },
  526. "_duration": 0.1,
  527. "_zoomScale": 1.2,
  528. "_target": {
  529. "__id__": 12
  530. },
  531. "_id": ""
  532. },
  533. {
  534. "__type__": "cc.CompPrefabInfo",
  535. "fileId": "feKGsSB8tDm5C/iDNzI6oV"
  536. },
  537. {
  538. "__type__": "cc.Widget",
  539. "_name": "",
  540. "_objFlags": 0,
  541. "__editorExtras__": {},
  542. "node": {
  543. "__id__": 12
  544. },
  545. "_enabled": true,
  546. "__prefab": {
  547. "__id__": 20
  548. },
  549. "_alignFlags": 9,
  550. "_target": null,
  551. "_left": -190.411,
  552. "_right": 0,
  553. "_top": -739.3119999999999,
  554. "_bottom": 0,
  555. "_horizontalCenter": 0,
  556. "_verticalCenter": 0,
  557. "_isAbsLeft": true,
  558. "_isAbsRight": true,
  559. "_isAbsTop": true,
  560. "_isAbsBottom": true,
  561. "_isAbsHorizontalCenter": true,
  562. "_isAbsVerticalCenter": true,
  563. "_originalWidth": 0,
  564. "_originalHeight": 0,
  565. "_alignMode": 2,
  566. "_lockFlags": 0,
  567. "_id": ""
  568. },
  569. {
  570. "__type__": "cc.CompPrefabInfo",
  571. "fileId": "22mVD5VFBMOZ79IFxXVijI"
  572. },
  573. {
  574. "__type__": "cc.PrefabInfo",
  575. "root": {
  576. "__id__": 1
  577. },
  578. "asset": {
  579. "__id__": 0
  580. },
  581. "fileId": "70cUqBunxP2KZc9XaZWS31",
  582. "instance": null,
  583. "targetOverrides": null,
  584. "nestedPrefabInstanceRoots": null
  585. },
  586. {
  587. "__type__": "cc.Node",
  588. "_name": "Remain_Cube",
  589. "_objFlags": 0,
  590. "__editorExtras__": {},
  591. "_parent": {
  592. "__id__": 1
  593. },
  594. "_children": [
  595. {
  596. "__id__": 23
  597. },
  598. {
  599. "__id__": 29
  600. }
  601. ],
  602. "_active": true,
  603. "_components": [
  604. {
  605. "__id__": 35
  606. },
  607. {
  608. "__id__": 37
  609. }
  610. ],
  611. "_prefab": {
  612. "__id__": 39
  613. },
  614. "_lpos": {
  615. "__type__": "cc.Vec3",
  616. "x": 162.68100000000004,
  617. "y": 722.577,
  618. "z": 0
  619. },
  620. "_lrot": {
  621. "__type__": "cc.Quat",
  622. "x": 0,
  623. "y": 0,
  624. "z": 0,
  625. "w": 1
  626. },
  627. "_lscale": {
  628. "__type__": "cc.Vec3",
  629. "x": 1,
  630. "y": 1,
  631. "z": 1
  632. },
  633. "_mobility": 0,
  634. "_layer": 33554432,
  635. "_euler": {
  636. "__type__": "cc.Vec3",
  637. "x": 0,
  638. "y": 0,
  639. "z": 0
  640. },
  641. "_id": ""
  642. },
  643. {
  644. "__type__": "cc.Node",
  645. "_name": "Bg",
  646. "_objFlags": 0,
  647. "__editorExtras__": {},
  648. "_parent": {
  649. "__id__": 22
  650. },
  651. "_children": [],
  652. "_active": true,
  653. "_components": [
  654. {
  655. "__id__": 24
  656. },
  657. {
  658. "__id__": 26
  659. }
  660. ],
  661. "_prefab": {
  662. "__id__": 28
  663. },
  664. "_lpos": {
  665. "__type__": "cc.Vec3",
  666. "x": 0,
  667. "y": 0,
  668. "z": 0
  669. },
  670. "_lrot": {
  671. "__type__": "cc.Quat",
  672. "x": 0,
  673. "y": 0,
  674. "z": 0,
  675. "w": 1
  676. },
  677. "_lscale": {
  678. "__type__": "cc.Vec3",
  679. "x": 1,
  680. "y": 1,
  681. "z": 1
  682. },
  683. "_mobility": 0,
  684. "_layer": 33554432,
  685. "_euler": {
  686. "__type__": "cc.Vec3",
  687. "x": 0,
  688. "y": 0,
  689. "z": 0
  690. },
  691. "_id": ""
  692. },
  693. {
  694. "__type__": "cc.UITransform",
  695. "_name": "",
  696. "_objFlags": 0,
  697. "__editorExtras__": {},
  698. "node": {
  699. "__id__": 23
  700. },
  701. "_enabled": true,
  702. "__prefab": {
  703. "__id__": 25
  704. },
  705. "_contentSize": {
  706. "__type__": "cc.Size",
  707. "width": 129,
  708. "height": 48
  709. },
  710. "_anchorPoint": {
  711. "__type__": "cc.Vec2",
  712. "x": 0.5,
  713. "y": 0.5
  714. },
  715. "_id": ""
  716. },
  717. {
  718. "__type__": "cc.CompPrefabInfo",
  719. "fileId": "682QNdx1hOIpgQWOLJTqhQ"
  720. },
  721. {
  722. "__type__": "cc.Sprite",
  723. "_name": "",
  724. "_objFlags": 0,
  725. "__editorExtras__": {},
  726. "node": {
  727. "__id__": 23
  728. },
  729. "_enabled": true,
  730. "__prefab": {
  731. "__id__": 27
  732. },
  733. "_customMaterial": null,
  734. "_srcBlendFactor": 2,
  735. "_dstBlendFactor": 4,
  736. "_color": {
  737. "__type__": "cc.Color",
  738. "r": 255,
  739. "g": 255,
  740. "b": 255,
  741. "a": 255
  742. },
  743. "_spriteFrame": {
  744. "__uuid__": "6c59841b-cdd4-4d77-9a60-1c04308c2275@f9941",
  745. "__expectedType__": "cc.SpriteFrame"
  746. },
  747. "_type": 0,
  748. "_fillType": 0,
  749. "_sizeMode": 1,
  750. "_fillCenter": {
  751. "__type__": "cc.Vec2",
  752. "x": 0,
  753. "y": 0
  754. },
  755. "_fillStart": 0,
  756. "_fillRange": 0,
  757. "_isTrimmedMode": true,
  758. "_useGrayscale": false,
  759. "_atlas": null,
  760. "_id": ""
  761. },
  762. {
  763. "__type__": "cc.CompPrefabInfo",
  764. "fileId": "b1B101PQdHf56pj6Z2G+Zs"
  765. },
  766. {
  767. "__type__": "cc.PrefabInfo",
  768. "root": {
  769. "__id__": 1
  770. },
  771. "asset": {
  772. "__id__": 0
  773. },
  774. "fileId": "ac5/RLmfZK/YuCmDDSDeRI",
  775. "instance": null,
  776. "targetOverrides": null,
  777. "nestedPrefabInstanceRoots": null
  778. },
  779. {
  780. "__type__": "cc.Node",
  781. "_name": "Des",
  782. "_objFlags": 0,
  783. "__editorExtras__": {},
  784. "_parent": {
  785. "__id__": 22
  786. },
  787. "_children": [],
  788. "_active": true,
  789. "_components": [
  790. {
  791. "__id__": 30
  792. },
  793. {
  794. "__id__": 32
  795. }
  796. ],
  797. "_prefab": {
  798. "__id__": 34
  799. },
  800. "_lpos": {
  801. "__type__": "cc.Vec3",
  802. "x": 0,
  803. "y": 0,
  804. "z": 0
  805. },
  806. "_lrot": {
  807. "__type__": "cc.Quat",
  808. "x": 0,
  809. "y": 0,
  810. "z": 0,
  811. "w": 1
  812. },
  813. "_lscale": {
  814. "__type__": "cc.Vec3",
  815. "x": 1,
  816. "y": 1,
  817. "z": 1
  818. },
  819. "_mobility": 0,
  820. "_layer": 33554432,
  821. "_euler": {
  822. "__type__": "cc.Vec3",
  823. "x": 0,
  824. "y": 0,
  825. "z": 0
  826. },
  827. "_id": ""
  828. },
  829. {
  830. "__type__": "cc.UITransform",
  831. "_name": "",
  832. "_objFlags": 0,
  833. "__editorExtras__": {},
  834. "node": {
  835. "__id__": 29
  836. },
  837. "_enabled": true,
  838. "__prefab": {
  839. "__id__": 31
  840. },
  841. "_contentSize": {
  842. "__type__": "cc.Size",
  843. "width": 108.0380859375,
  844. "height": 54.4
  845. },
  846. "_anchorPoint": {
  847. "__type__": "cc.Vec2",
  848. "x": 0.5,
  849. "y": 0.5
  850. },
  851. "_id": ""
  852. },
  853. {
  854. "__type__": "cc.CompPrefabInfo",
  855. "fileId": "88e/N1wh5B+oL+yHxiiEcf"
  856. },
  857. {
  858. "__type__": "cc.Label",
  859. "_name": "",
  860. "_objFlags": 0,
  861. "__editorExtras__": {},
  862. "node": {
  863. "__id__": 29
  864. },
  865. "_enabled": true,
  866. "__prefab": {
  867. "__id__": 33
  868. },
  869. "_customMaterial": null,
  870. "_srcBlendFactor": 2,
  871. "_dstBlendFactor": 4,
  872. "_color": {
  873. "__type__": "cc.Color",
  874. "r": 255,
  875. "g": 255,
  876. "b": 255,
  877. "a": 255
  878. },
  879. "_string": "剩余:200",
  880. "_horizontalAlign": 0,
  881. "_verticalAlign": 1,
  882. "_actualFontSize": 26,
  883. "_fontSize": 26,
  884. "_fontFamily": "Arial",
  885. "_lineHeight": 40,
  886. "_overflow": 0,
  887. "_enableWrapText": true,
  888. "_font": null,
  889. "_isSystemFontUsed": true,
  890. "_spacingX": 0,
  891. "_isItalic": false,
  892. "_isBold": true,
  893. "_isUnderline": false,
  894. "_underlineHeight": 2,
  895. "_cacheMode": 1,
  896. "_enableOutline": true,
  897. "_outlineColor": {
  898. "__type__": "cc.Color",
  899. "r": 255,
  900. "g": 133,
  901. "b": 0,
  902. "a": 255
  903. },
  904. "_outlineWidth": 2,
  905. "_enableShadow": false,
  906. "_shadowColor": {
  907. "__type__": "cc.Color",
  908. "r": 0,
  909. "g": 0,
  910. "b": 0,
  911. "a": 255
  912. },
  913. "_shadowOffset": {
  914. "__type__": "cc.Vec2",
  915. "x": 2,
  916. "y": 2
  917. },
  918. "_shadowBlur": 2,
  919. "_id": ""
  920. },
  921. {
  922. "__type__": "cc.CompPrefabInfo",
  923. "fileId": "a1m5WAN+VJArIbQMNzYboZ"
  924. },
  925. {
  926. "__type__": "cc.PrefabInfo",
  927. "root": {
  928. "__id__": 1
  929. },
  930. "asset": {
  931. "__id__": 0
  932. },
  933. "fileId": "286hbs7pZBZojVuf30NBa9",
  934. "instance": null,
  935. "targetOverrides": null,
  936. "nestedPrefabInstanceRoots": null
  937. },
  938. {
  939. "__type__": "cc.UITransform",
  940. "_name": "",
  941. "_objFlags": 0,
  942. "__editorExtras__": {},
  943. "node": {
  944. "__id__": 22
  945. },
  946. "_enabled": true,
  947. "__prefab": {
  948. "__id__": 36
  949. },
  950. "_contentSize": {
  951. "__type__": "cc.Size",
  952. "width": 100,
  953. "height": 100
  954. },
  955. "_anchorPoint": {
  956. "__type__": "cc.Vec2",
  957. "x": 0.5,
  958. "y": 0.5
  959. },
  960. "_id": ""
  961. },
  962. {
  963. "__type__": "cc.CompPrefabInfo",
  964. "fileId": "77EqqjkTBI56AOayzwzizd"
  965. },
  966. {
  967. "__type__": "cc.Widget",
  968. "_name": "",
  969. "_objFlags": 0,
  970. "__editorExtras__": {},
  971. "node": {
  972. "__id__": 22
  973. },
  974. "_enabled": true,
  975. "__prefab": {
  976. "__id__": 38
  977. },
  978. "_alignFlags": 33,
  979. "_target": null,
  980. "_left": 0,
  981. "_right": -162.68100000000004,
  982. "_top": -722.577,
  983. "_bottom": 0,
  984. "_horizontalCenter": 0,
  985. "_verticalCenter": 0,
  986. "_isAbsLeft": true,
  987. "_isAbsRight": true,
  988. "_isAbsTop": true,
  989. "_isAbsBottom": true,
  990. "_isAbsHorizontalCenter": true,
  991. "_isAbsVerticalCenter": true,
  992. "_originalWidth": 0,
  993. "_originalHeight": 0,
  994. "_alignMode": 2,
  995. "_lockFlags": 0,
  996. "_id": ""
  997. },
  998. {
  999. "__type__": "cc.CompPrefabInfo",
  1000. "fileId": "060KdbxJdOb4uiLmnrWWeI"
  1001. },
  1002. {
  1003. "__type__": "cc.PrefabInfo",
  1004. "root": {
  1005. "__id__": 1
  1006. },
  1007. "asset": {
  1008. "__id__": 0
  1009. },
  1010. "fileId": "56Pu3SunVKzrC7NNOSt7FY",
  1011. "instance": null,
  1012. "targetOverrides": null,
  1013. "nestedPrefabInstanceRoots": null
  1014. },
  1015. {
  1016. "__type__": "cc.Node",
  1017. "_name": "CountDown",
  1018. "_objFlags": 0,
  1019. "__editorExtras__": {},
  1020. "_parent": {
  1021. "__id__": 1
  1022. },
  1023. "_children": [
  1024. {
  1025. "__id__": 41
  1026. },
  1027. {
  1028. "__id__": 47
  1029. }
  1030. ],
  1031. "_active": true,
  1032. "_components": [
  1033. {
  1034. "__id__": 53
  1035. },
  1036. {
  1037. "__id__": 55
  1038. }
  1039. ],
  1040. "_prefab": {
  1041. "__id__": 57
  1042. },
  1043. "_lpos": {
  1044. "__type__": "cc.Vec3",
  1045. "x": 297.94100000000003,
  1046. "y": 722.577,
  1047. "z": 0
  1048. },
  1049. "_lrot": {
  1050. "__type__": "cc.Quat",
  1051. "x": 0,
  1052. "y": 0,
  1053. "z": 0,
  1054. "w": 1
  1055. },
  1056. "_lscale": {
  1057. "__type__": "cc.Vec3",
  1058. "x": 1,
  1059. "y": 1,
  1060. "z": 1
  1061. },
  1062. "_mobility": 0,
  1063. "_layer": 33554432,
  1064. "_euler": {
  1065. "__type__": "cc.Vec3",
  1066. "x": 0,
  1067. "y": 0,
  1068. "z": 0
  1069. },
  1070. "_id": ""
  1071. },
  1072. {
  1073. "__type__": "cc.Node",
  1074. "_name": "Bg",
  1075. "_objFlags": 0,
  1076. "__editorExtras__": {},
  1077. "_parent": {
  1078. "__id__": 40
  1079. },
  1080. "_children": [],
  1081. "_active": true,
  1082. "_components": [
  1083. {
  1084. "__id__": 42
  1085. },
  1086. {
  1087. "__id__": 44
  1088. }
  1089. ],
  1090. "_prefab": {
  1091. "__id__": 46
  1092. },
  1093. "_lpos": {
  1094. "__type__": "cc.Vec3",
  1095. "x": 0,
  1096. "y": 0,
  1097. "z": 0
  1098. },
  1099. "_lrot": {
  1100. "__type__": "cc.Quat",
  1101. "x": 0,
  1102. "y": 0,
  1103. "z": 0,
  1104. "w": 1
  1105. },
  1106. "_lscale": {
  1107. "__type__": "cc.Vec3",
  1108. "x": 1,
  1109. "y": 1,
  1110. "z": 1
  1111. },
  1112. "_mobility": 0,
  1113. "_layer": 33554432,
  1114. "_euler": {
  1115. "__type__": "cc.Vec3",
  1116. "x": 0,
  1117. "y": 0,
  1118. "z": 0
  1119. },
  1120. "_id": ""
  1121. },
  1122. {
  1123. "__type__": "cc.UITransform",
  1124. "_name": "",
  1125. "_objFlags": 0,
  1126. "__editorExtras__": {},
  1127. "node": {
  1128. "__id__": 41
  1129. },
  1130. "_enabled": true,
  1131. "__prefab": {
  1132. "__id__": 43
  1133. },
  1134. "_contentSize": {
  1135. "__type__": "cc.Size",
  1136. "width": 129,
  1137. "height": 48
  1138. },
  1139. "_anchorPoint": {
  1140. "__type__": "cc.Vec2",
  1141. "x": 0.5,
  1142. "y": 0.5
  1143. },
  1144. "_id": ""
  1145. },
  1146. {
  1147. "__type__": "cc.CompPrefabInfo",
  1148. "fileId": "ceuKJ/Xb5HxIUj3V4esYbX"
  1149. },
  1150. {
  1151. "__type__": "cc.Sprite",
  1152. "_name": "",
  1153. "_objFlags": 0,
  1154. "__editorExtras__": {},
  1155. "node": {
  1156. "__id__": 41
  1157. },
  1158. "_enabled": true,
  1159. "__prefab": {
  1160. "__id__": 45
  1161. },
  1162. "_customMaterial": null,
  1163. "_srcBlendFactor": 2,
  1164. "_dstBlendFactor": 4,
  1165. "_color": {
  1166. "__type__": "cc.Color",
  1167. "r": 255,
  1168. "g": 255,
  1169. "b": 255,
  1170. "a": 255
  1171. },
  1172. "_spriteFrame": {
  1173. "__uuid__": "6c59841b-cdd4-4d77-9a60-1c04308c2275@f9941",
  1174. "__expectedType__": "cc.SpriteFrame"
  1175. },
  1176. "_type": 0,
  1177. "_fillType": 0,
  1178. "_sizeMode": 1,
  1179. "_fillCenter": {
  1180. "__type__": "cc.Vec2",
  1181. "x": 0,
  1182. "y": 0
  1183. },
  1184. "_fillStart": 0,
  1185. "_fillRange": 0,
  1186. "_isTrimmedMode": true,
  1187. "_useGrayscale": false,
  1188. "_atlas": null,
  1189. "_id": ""
  1190. },
  1191. {
  1192. "__type__": "cc.CompPrefabInfo",
  1193. "fileId": "d9XkOz9aJF/IYSsEjC/oag"
  1194. },
  1195. {
  1196. "__type__": "cc.PrefabInfo",
  1197. "root": {
  1198. "__id__": 1
  1199. },
  1200. "asset": {
  1201. "__id__": 0
  1202. },
  1203. "fileId": "fcpLZo8QNKWobw1CPZSdGT",
  1204. "instance": null,
  1205. "targetOverrides": null,
  1206. "nestedPrefabInstanceRoots": null
  1207. },
  1208. {
  1209. "__type__": "cc.Node",
  1210. "_name": "Des",
  1211. "_objFlags": 0,
  1212. "__editorExtras__": {},
  1213. "_parent": {
  1214. "__id__": 40
  1215. },
  1216. "_children": [],
  1217. "_active": true,
  1218. "_components": [
  1219. {
  1220. "__id__": 48
  1221. },
  1222. {
  1223. "__id__": 50
  1224. }
  1225. ],
  1226. "_prefab": {
  1227. "__id__": 52
  1228. },
  1229. "_lpos": {
  1230. "__type__": "cc.Vec3",
  1231. "x": 0,
  1232. "y": 0,
  1233. "z": 0
  1234. },
  1235. "_lrot": {
  1236. "__type__": "cc.Quat",
  1237. "x": 0,
  1238. "y": 0,
  1239. "z": 0,
  1240. "w": 1
  1241. },
  1242. "_lscale": {
  1243. "__type__": "cc.Vec3",
  1244. "x": 1,
  1245. "y": 1,
  1246. "z": 1
  1247. },
  1248. "_mobility": 0,
  1249. "_layer": 33554432,
  1250. "_euler": {
  1251. "__type__": "cc.Vec3",
  1252. "x": 0,
  1253. "y": 0,
  1254. "z": 0
  1255. },
  1256. "_id": ""
  1257. },
  1258. {
  1259. "__type__": "cc.UITransform",
  1260. "_name": "",
  1261. "_objFlags": 0,
  1262. "__editorExtras__": {},
  1263. "node": {
  1264. "__id__": 47
  1265. },
  1266. "_enabled": true,
  1267. "__prefab": {
  1268. "__id__": 49
  1269. },
  1270. "_contentSize": {
  1271. "__type__": "cc.Size",
  1272. "width": 70.498046875,
  1273. "height": 54.4
  1274. },
  1275. "_anchorPoint": {
  1276. "__type__": "cc.Vec2",
  1277. "x": 0.5,
  1278. "y": 0.5
  1279. },
  1280. "_id": ""
  1281. },
  1282. {
  1283. "__type__": "cc.CompPrefabInfo",
  1284. "fileId": "b75OC9GplEYopCfanWg+cg"
  1285. },
  1286. {
  1287. "__type__": "cc.Label",
  1288. "_name": "",
  1289. "_objFlags": 0,
  1290. "__editorExtras__": {},
  1291. "node": {
  1292. "__id__": 47
  1293. },
  1294. "_enabled": true,
  1295. "__prefab": {
  1296. "__id__": 51
  1297. },
  1298. "_customMaterial": null,
  1299. "_srcBlendFactor": 2,
  1300. "_dstBlendFactor": 4,
  1301. "_color": {
  1302. "__type__": "cc.Color",
  1303. "r": 255,
  1304. "g": 255,
  1305. "b": 255,
  1306. "a": 255
  1307. },
  1308. "_string": "05:00",
  1309. "_horizontalAlign": 1,
  1310. "_verticalAlign": 1,
  1311. "_actualFontSize": 26,
  1312. "_fontSize": 26,
  1313. "_fontFamily": "Arial",
  1314. "_lineHeight": 40,
  1315. "_overflow": 0,
  1316. "_enableWrapText": true,
  1317. "_font": null,
  1318. "_isSystemFontUsed": true,
  1319. "_spacingX": 0,
  1320. "_isItalic": false,
  1321. "_isBold": true,
  1322. "_isUnderline": false,
  1323. "_underlineHeight": 2,
  1324. "_cacheMode": 1,
  1325. "_enableOutline": true,
  1326. "_outlineColor": {
  1327. "__type__": "cc.Color",
  1328. "r": 255,
  1329. "g": 133,
  1330. "b": 0,
  1331. "a": 255
  1332. },
  1333. "_outlineWidth": 2,
  1334. "_enableShadow": false,
  1335. "_shadowColor": {
  1336. "__type__": "cc.Color",
  1337. "r": 0,
  1338. "g": 0,
  1339. "b": 0,
  1340. "a": 255
  1341. },
  1342. "_shadowOffset": {
  1343. "__type__": "cc.Vec2",
  1344. "x": 2,
  1345. "y": 2
  1346. },
  1347. "_shadowBlur": 2,
  1348. "_id": ""
  1349. },
  1350. {
  1351. "__type__": "cc.CompPrefabInfo",
  1352. "fileId": "d0vkQyf+1Lj4RKdYylYxGQ"
  1353. },
  1354. {
  1355. "__type__": "cc.PrefabInfo",
  1356. "root": {
  1357. "__id__": 1
  1358. },
  1359. "asset": {
  1360. "__id__": 0
  1361. },
  1362. "fileId": "8fzit4b7pFN4llKCl6Euat",
  1363. "instance": null,
  1364. "targetOverrides": null,
  1365. "nestedPrefabInstanceRoots": null
  1366. },
  1367. {
  1368. "__type__": "cc.UITransform",
  1369. "_name": "",
  1370. "_objFlags": 0,
  1371. "__editorExtras__": {},
  1372. "node": {
  1373. "__id__": 40
  1374. },
  1375. "_enabled": true,
  1376. "__prefab": {
  1377. "__id__": 54
  1378. },
  1379. "_contentSize": {
  1380. "__type__": "cc.Size",
  1381. "width": 100,
  1382. "height": 100
  1383. },
  1384. "_anchorPoint": {
  1385. "__type__": "cc.Vec2",
  1386. "x": 0.5,
  1387. "y": 0.5
  1388. },
  1389. "_id": ""
  1390. },
  1391. {
  1392. "__type__": "cc.CompPrefabInfo",
  1393. "fileId": "27FMudhz5E/Y8FTvzyv4rX"
  1394. },
  1395. {
  1396. "__type__": "cc.Widget",
  1397. "_name": "",
  1398. "_objFlags": 0,
  1399. "__editorExtras__": {},
  1400. "node": {
  1401. "__id__": 40
  1402. },
  1403. "_enabled": true,
  1404. "__prefab": {
  1405. "__id__": 56
  1406. },
  1407. "_alignFlags": 33,
  1408. "_target": null,
  1409. "_left": 0,
  1410. "_right": -297.94100000000003,
  1411. "_top": -722.577,
  1412. "_bottom": 0,
  1413. "_horizontalCenter": 0,
  1414. "_verticalCenter": 0,
  1415. "_isAbsLeft": true,
  1416. "_isAbsRight": true,
  1417. "_isAbsTop": true,
  1418. "_isAbsBottom": true,
  1419. "_isAbsHorizontalCenter": true,
  1420. "_isAbsVerticalCenter": true,
  1421. "_originalWidth": 0,
  1422. "_originalHeight": 0,
  1423. "_alignMode": 2,
  1424. "_lockFlags": 0,
  1425. "_id": ""
  1426. },
  1427. {
  1428. "__type__": "cc.CompPrefabInfo",
  1429. "fileId": "68c+IHlmtMr6q9ReqPg3hh"
  1430. },
  1431. {
  1432. "__type__": "cc.PrefabInfo",
  1433. "root": {
  1434. "__id__": 1
  1435. },
  1436. "asset": {
  1437. "__id__": 0
  1438. },
  1439. "fileId": "309fBZmo1Pib3Ziebd0FfX",
  1440. "instance": null,
  1441. "targetOverrides": null,
  1442. "nestedPrefabInstanceRoots": null
  1443. },
  1444. {
  1445. "__type__": "cc.Node",
  1446. "_name": "Props_Btns",
  1447. "_objFlags": 0,
  1448. "__editorExtras__": {},
  1449. "_parent": {
  1450. "__id__": 1
  1451. },
  1452. "_children": [
  1453. {
  1454. "__id__": 59
  1455. },
  1456. {
  1457. "__id__": 87
  1458. },
  1459. {
  1460. "__id__": 115
  1461. }
  1462. ],
  1463. "_active": true,
  1464. "_components": [
  1465. {
  1466. "__id__": 143
  1467. },
  1468. {
  1469. "__id__": 145
  1470. }
  1471. ],
  1472. "_prefab": {
  1473. "__id__": 147
  1474. },
  1475. "_lpos": {
  1476. "__type__": "cc.Vec3",
  1477. "x": 0,
  1478. "y": -752.185,
  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": -237.858,
  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": 2.6129999999999995,
  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": 242.23800000000006,
  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.Widget",
  3559. "_name": "",
  3560. "_objFlags": 0,
  3561. "__editorExtras__": {},
  3562. "node": {
  3563. "__id__": 58
  3564. },
  3565. "_enabled": true,
  3566. "__prefab": {
  3567. "__id__": 146
  3568. },
  3569. "_alignFlags": 45,
  3570. "_target": null,
  3571. "_left": 0,
  3572. "_right": 0,
  3573. "_top": 752.185,
  3574. "_bottom": -752.185,
  3575. "_horizontalCenter": -296.804,
  3576. "_verticalCenter": 0,
  3577. "_isAbsLeft": true,
  3578. "_isAbsRight": true,
  3579. "_isAbsTop": true,
  3580. "_isAbsBottom": true,
  3581. "_isAbsHorizontalCenter": true,
  3582. "_isAbsVerticalCenter": true,
  3583. "_originalWidth": 100,
  3584. "_originalHeight": 100,
  3585. "_alignMode": 2,
  3586. "_lockFlags": 0,
  3587. "_id": ""
  3588. },
  3589. {
  3590. "__type__": "cc.CompPrefabInfo",
  3591. "fileId": "97hwrk97tE557cCtXFjZvy"
  3592. },
  3593. {
  3594. "__type__": "cc.PrefabInfo",
  3595. "root": {
  3596. "__id__": 1
  3597. },
  3598. "asset": {
  3599. "__id__": 0
  3600. },
  3601. "fileId": "062U0Rj1ZCn6KhYUvhunwH",
  3602. "instance": null,
  3603. "targetOverrides": null,
  3604. "nestedPrefabInstanceRoots": null
  3605. },
  3606. {
  3607. "__type__": "cc.Node",
  3608. "_name": "Level",
  3609. "_objFlags": 0,
  3610. "__editorExtras__": {},
  3611. "_parent": {
  3612. "__id__": 1
  3613. },
  3614. "_children": [],
  3615. "_active": true,
  3616. "_components": [
  3617. {
  3618. "__id__": 149
  3619. },
  3620. {
  3621. "__id__": 151
  3622. },
  3623. {
  3624. "__id__": 153
  3625. }
  3626. ],
  3627. "_prefab": {
  3628. "__id__": 155
  3629. },
  3630. "_lpos": {
  3631. "__type__": "cc.Vec3",
  3632. "x": 0,
  3633. "y": 723.096,
  3634. "z": 0
  3635. },
  3636. "_lrot": {
  3637. "__type__": "cc.Quat",
  3638. "x": 0,
  3639. "y": 0,
  3640. "z": 0,
  3641. "w": 1
  3642. },
  3643. "_lscale": {
  3644. "__type__": "cc.Vec3",
  3645. "x": 1,
  3646. "y": 1,
  3647. "z": 1
  3648. },
  3649. "_mobility": 0,
  3650. "_layer": 33554432,
  3651. "_euler": {
  3652. "__type__": "cc.Vec3",
  3653. "x": 0,
  3654. "y": 0,
  3655. "z": 0
  3656. },
  3657. "_id": ""
  3658. },
  3659. {
  3660. "__type__": "cc.UITransform",
  3661. "_name": "",
  3662. "_objFlags": 0,
  3663. "__editorExtras__": {},
  3664. "node": {
  3665. "__id__": 148
  3666. },
  3667. "_enabled": true,
  3668. "__prefab": {
  3669. "__id__": 150
  3670. },
  3671. "_contentSize": {
  3672. "__type__": "cc.Size",
  3673. "width": 106.24609375,
  3674. "height": 54.4
  3675. },
  3676. "_anchorPoint": {
  3677. "__type__": "cc.Vec2",
  3678. "x": 0.5,
  3679. "y": 0.5
  3680. },
  3681. "_id": ""
  3682. },
  3683. {
  3684. "__type__": "cc.CompPrefabInfo",
  3685. "fileId": "58IuQfZQFINKunB0UR/7od"
  3686. },
  3687. {
  3688. "__type__": "cc.Label",
  3689. "_name": "",
  3690. "_objFlags": 0,
  3691. "__editorExtras__": {},
  3692. "node": {
  3693. "__id__": 148
  3694. },
  3695. "_enabled": true,
  3696. "__prefab": {
  3697. "__id__": 152
  3698. },
  3699. "_customMaterial": null,
  3700. "_srcBlendFactor": 2,
  3701. "_dstBlendFactor": 4,
  3702. "_color": {
  3703. "__type__": "cc.Color",
  3704. "r": 255,
  3705. "g": 255,
  3706. "b": 255,
  3707. "a": 255
  3708. },
  3709. "_string": "第2关",
  3710. "_horizontalAlign": 1,
  3711. "_verticalAlign": 1,
  3712. "_actualFontSize": 40,
  3713. "_fontSize": 40,
  3714. "_fontFamily": "Arial",
  3715. "_lineHeight": 40,
  3716. "_overflow": 0,
  3717. "_enableWrapText": true,
  3718. "_font": null,
  3719. "_isSystemFontUsed": true,
  3720. "_spacingX": 0,
  3721. "_isItalic": false,
  3722. "_isBold": true,
  3723. "_isUnderline": false,
  3724. "_underlineHeight": 2,
  3725. "_cacheMode": 1,
  3726. "_enableOutline": true,
  3727. "_outlineColor": {
  3728. "__type__": "cc.Color",
  3729. "r": 75,
  3730. "g": 75,
  3731. "b": 75,
  3732. "a": 255
  3733. },
  3734. "_outlineWidth": 2,
  3735. "_enableShadow": false,
  3736. "_shadowColor": {
  3737. "__type__": "cc.Color",
  3738. "r": 0,
  3739. "g": 0,
  3740. "b": 0,
  3741. "a": 255
  3742. },
  3743. "_shadowOffset": {
  3744. "__type__": "cc.Vec2",
  3745. "x": 2,
  3746. "y": 2
  3747. },
  3748. "_shadowBlur": 2,
  3749. "_id": ""
  3750. },
  3751. {
  3752. "__type__": "cc.CompPrefabInfo",
  3753. "fileId": "f1/8OdWSFHq4XNVmlo2mvN"
  3754. },
  3755. {
  3756. "__type__": "cc.Widget",
  3757. "_name": "",
  3758. "_objFlags": 0,
  3759. "__editorExtras__": {},
  3760. "node": {
  3761. "__id__": 148
  3762. },
  3763. "_enabled": true,
  3764. "__prefab": {
  3765. "__id__": 154
  3766. },
  3767. "_alignFlags": 17,
  3768. "_target": null,
  3769. "_left": 0,
  3770. "_right": 0,
  3771. "_top": -700.296,
  3772. "_bottom": 0,
  3773. "_horizontalCenter": 0,
  3774. "_verticalCenter": 0,
  3775. "_isAbsLeft": true,
  3776. "_isAbsRight": true,
  3777. "_isAbsTop": true,
  3778. "_isAbsBottom": true,
  3779. "_isAbsHorizontalCenter": true,
  3780. "_isAbsVerticalCenter": true,
  3781. "_originalWidth": 0,
  3782. "_originalHeight": 0,
  3783. "_alignMode": 2,
  3784. "_lockFlags": 0,
  3785. "_id": ""
  3786. },
  3787. {
  3788. "__type__": "cc.CompPrefabInfo",
  3789. "fileId": "904egpqa5F471Kx3dLHXdJ"
  3790. },
  3791. {
  3792. "__type__": "cc.PrefabInfo",
  3793. "root": {
  3794. "__id__": 1
  3795. },
  3796. "asset": {
  3797. "__id__": 0
  3798. },
  3799. "fileId": "a3Ekuz0v1O34wVHLKx96/6",
  3800. "instance": null,
  3801. "targetOverrides": null,
  3802. "nestedPrefabInstanceRoots": null
  3803. },
  3804. {
  3805. "__type__": "cc.Node",
  3806. "_name": "Hand1",
  3807. "_objFlags": 0,
  3808. "__editorExtras__": {},
  3809. "_parent": {
  3810. "__id__": 1
  3811. },
  3812. "_children": [],
  3813. "_active": true,
  3814. "_components": [
  3815. {
  3816. "__id__": 157
  3817. },
  3818. {
  3819. "__id__": 159
  3820. },
  3821. {
  3822. "__id__": 161
  3823. }
  3824. ],
  3825. "_prefab": {
  3826. "__id__": 163
  3827. },
  3828. "_lpos": {
  3829. "__type__": "cc.Vec3",
  3830. "x": -70.195,
  3831. "y": 191.96500000000003,
  3832. "z": 0
  3833. },
  3834. "_lrot": {
  3835. "__type__": "cc.Quat",
  3836. "x": 0,
  3837. "y": 0,
  3838. "z": 0,
  3839. "w": 1
  3840. },
  3841. "_lscale": {
  3842. "__type__": "cc.Vec3",
  3843. "x": 0.3,
  3844. "y": 0.3,
  3845. "z": 1
  3846. },
  3847. "_mobility": 0,
  3848. "_layer": 33554432,
  3849. "_euler": {
  3850. "__type__": "cc.Vec3",
  3851. "x": 0,
  3852. "y": 0,
  3853. "z": 0
  3854. },
  3855. "_id": ""
  3856. },
  3857. {
  3858. "__type__": "cc.UITransform",
  3859. "_name": "",
  3860. "_objFlags": 0,
  3861. "__editorExtras__": {},
  3862. "node": {
  3863. "__id__": 156
  3864. },
  3865. "_enabled": true,
  3866. "__prefab": {
  3867. "__id__": 158
  3868. },
  3869. "_contentSize": {
  3870. "__type__": "cc.Size",
  3871. "width": 104,
  3872. "height": 112.5
  3873. },
  3874. "_anchorPoint": {
  3875. "__type__": "cc.Vec2",
  3876. "x": 0.5,
  3877. "y": 0.5
  3878. },
  3879. "_id": ""
  3880. },
  3881. {
  3882. "__type__": "cc.CompPrefabInfo",
  3883. "fileId": "5cjussPNBEcrAUBSXmmw36"
  3884. },
  3885. {
  3886. "__type__": "cc.Sprite",
  3887. "_name": "",
  3888. "_objFlags": 0,
  3889. "__editorExtras__": {},
  3890. "node": {
  3891. "__id__": 156
  3892. },
  3893. "_enabled": true,
  3894. "__prefab": {
  3895. "__id__": 160
  3896. },
  3897. "_customMaterial": null,
  3898. "_srcBlendFactor": 2,
  3899. "_dstBlendFactor": 4,
  3900. "_color": {
  3901. "__type__": "cc.Color",
  3902. "r": 255,
  3903. "g": 255,
  3904. "b": 255,
  3905. "a": 255
  3906. },
  3907. "_spriteFrame": {
  3908. "__uuid__": "9ba84cf9-5e5e-4592-a843-be5c1358ef8f@f9941",
  3909. "__expectedType__": "cc.SpriteFrame"
  3910. },
  3911. "_type": 0,
  3912. "_fillType": 0,
  3913. "_sizeMode": 0,
  3914. "_fillCenter": {
  3915. "__type__": "cc.Vec2",
  3916. "x": 0,
  3917. "y": 0
  3918. },
  3919. "_fillStart": 0,
  3920. "_fillRange": 0,
  3921. "_isTrimmedMode": true,
  3922. "_useGrayscale": false,
  3923. "_atlas": null,
  3924. "_id": ""
  3925. },
  3926. {
  3927. "__type__": "cc.CompPrefabInfo",
  3928. "fileId": "78LF0fOWFMuYakhIGB4Va+"
  3929. },
  3930. {
  3931. "__type__": "cc.Animation",
  3932. "_name": "",
  3933. "_objFlags": 0,
  3934. "__editorExtras__": {},
  3935. "node": {
  3936. "__id__": 156
  3937. },
  3938. "_enabled": true,
  3939. "__prefab": {
  3940. "__id__": 162
  3941. },
  3942. "playOnLoad": true,
  3943. "_clips": [
  3944. {
  3945. "__uuid__": "053785e5-c314-4345-8dd6-df10e0fc9e52",
  3946. "__expectedType__": "cc.AnimationClip"
  3947. }
  3948. ],
  3949. "_defaultClip": {
  3950. "__uuid__": "053785e5-c314-4345-8dd6-df10e0fc9e52",
  3951. "__expectedType__": "cc.AnimationClip"
  3952. },
  3953. "_id": ""
  3954. },
  3955. {
  3956. "__type__": "cc.CompPrefabInfo",
  3957. "fileId": "4bbLVB5A5IaJEAfWgMpLD6"
  3958. },
  3959. {
  3960. "__type__": "cc.PrefabInfo",
  3961. "root": {
  3962. "__id__": 1
  3963. },
  3964. "asset": {
  3965. "__id__": 0
  3966. },
  3967. "fileId": "e5n50xSYxL563Z4vrGRnDZ",
  3968. "instance": null,
  3969. "targetOverrides": null,
  3970. "nestedPrefabInstanceRoots": null
  3971. },
  3972. {
  3973. "__type__": "cc.Node",
  3974. "_name": "Hand2",
  3975. "_objFlags": 0,
  3976. "__editorExtras__": {},
  3977. "_parent": {
  3978. "__id__": 1
  3979. },
  3980. "_children": [],
  3981. "_active": true,
  3982. "_components": [
  3983. {
  3984. "__id__": 165
  3985. },
  3986. {
  3987. "__id__": 167
  3988. },
  3989. {
  3990. "__id__": 169
  3991. }
  3992. ],
  3993. "_prefab": {
  3994. "__id__": 171
  3995. },
  3996. "_lpos": {
  3997. "__type__": "cc.Vec3",
  3998. "x": 239.51099999999997,
  3999. "y": -405.929,
  4000. "z": 0
  4001. },
  4002. "_lrot": {
  4003. "__type__": "cc.Quat",
  4004. "x": 0,
  4005. "y": 0,
  4006. "z": 0,
  4007. "w": 1
  4008. },
  4009. "_lscale": {
  4010. "__type__": "cc.Vec3",
  4011. "x": 0.3,
  4012. "y": 0.3,
  4013. "z": 1
  4014. },
  4015. "_mobility": 0,
  4016. "_layer": 33554432,
  4017. "_euler": {
  4018. "__type__": "cc.Vec3",
  4019. "x": 0,
  4020. "y": 0,
  4021. "z": 0
  4022. },
  4023. "_id": ""
  4024. },
  4025. {
  4026. "__type__": "cc.UITransform",
  4027. "_name": "",
  4028. "_objFlags": 0,
  4029. "__editorExtras__": {},
  4030. "node": {
  4031. "__id__": 164
  4032. },
  4033. "_enabled": true,
  4034. "__prefab": {
  4035. "__id__": 166
  4036. },
  4037. "_contentSize": {
  4038. "__type__": "cc.Size",
  4039. "width": 104,
  4040. "height": 112.5
  4041. },
  4042. "_anchorPoint": {
  4043. "__type__": "cc.Vec2",
  4044. "x": 0.5,
  4045. "y": 0.5
  4046. },
  4047. "_id": ""
  4048. },
  4049. {
  4050. "__type__": "cc.CompPrefabInfo",
  4051. "fileId": "78gO7A9mBGrIkTCSpgFArY"
  4052. },
  4053. {
  4054. "__type__": "cc.Sprite",
  4055. "_name": "",
  4056. "_objFlags": 0,
  4057. "__editorExtras__": {},
  4058. "node": {
  4059. "__id__": 164
  4060. },
  4061. "_enabled": true,
  4062. "__prefab": {
  4063. "__id__": 168
  4064. },
  4065. "_customMaterial": null,
  4066. "_srcBlendFactor": 2,
  4067. "_dstBlendFactor": 4,
  4068. "_color": {
  4069. "__type__": "cc.Color",
  4070. "r": 255,
  4071. "g": 255,
  4072. "b": 255,
  4073. "a": 255
  4074. },
  4075. "_spriteFrame": {
  4076. "__uuid__": "9ba84cf9-5e5e-4592-a843-be5c1358ef8f@f9941",
  4077. "__expectedType__": "cc.SpriteFrame"
  4078. },
  4079. "_type": 0,
  4080. "_fillType": 0,
  4081. "_sizeMode": 0,
  4082. "_fillCenter": {
  4083. "__type__": "cc.Vec2",
  4084. "x": 0,
  4085. "y": 0
  4086. },
  4087. "_fillStart": 0,
  4088. "_fillRange": 0,
  4089. "_isTrimmedMode": true,
  4090. "_useGrayscale": false,
  4091. "_atlas": null,
  4092. "_id": ""
  4093. },
  4094. {
  4095. "__type__": "cc.CompPrefabInfo",
  4096. "fileId": "1eKYw6LyNJpZ0GsCu/iAsq"
  4097. },
  4098. {
  4099. "__type__": "cc.Animation",
  4100. "_name": "",
  4101. "_objFlags": 0,
  4102. "__editorExtras__": {},
  4103. "node": {
  4104. "__id__": 164
  4105. },
  4106. "_enabled": true,
  4107. "__prefab": {
  4108. "__id__": 170
  4109. },
  4110. "playOnLoad": true,
  4111. "_clips": [
  4112. {
  4113. "__uuid__": "053785e5-c314-4345-8dd6-df10e0fc9e52",
  4114. "__expectedType__": "cc.AnimationClip"
  4115. }
  4116. ],
  4117. "_defaultClip": {
  4118. "__uuid__": "053785e5-c314-4345-8dd6-df10e0fc9e52",
  4119. "__expectedType__": "cc.AnimationClip"
  4120. },
  4121. "_id": ""
  4122. },
  4123. {
  4124. "__type__": "cc.CompPrefabInfo",
  4125. "fileId": "8aP/0FQGxGGLUdMa/Hx1Y0"
  4126. },
  4127. {
  4128. "__type__": "cc.PrefabInfo",
  4129. "root": {
  4130. "__id__": 1
  4131. },
  4132. "asset": {
  4133. "__id__": 0
  4134. },
  4135. "fileId": "1eP/tSW1BLLI3npNa0cf3Q",
  4136. "instance": null,
  4137. "targetOverrides": null,
  4138. "nestedPrefabInstanceRoots": null
  4139. },
  4140. {
  4141. "__type__": "cc.UITransform",
  4142. "_name": "",
  4143. "_objFlags": 0,
  4144. "__editorExtras__": {},
  4145. "node": {
  4146. "__id__": 1
  4147. },
  4148. "_enabled": true,
  4149. "__prefab": {
  4150. "__id__": 173
  4151. },
  4152. "_contentSize": {
  4153. "__type__": "cc.Size",
  4154. "width": 100,
  4155. "height": 100
  4156. },
  4157. "_anchorPoint": {
  4158. "__type__": "cc.Vec2",
  4159. "x": 0.5,
  4160. "y": 0.5
  4161. },
  4162. "_id": ""
  4163. },
  4164. {
  4165. "__type__": "cc.CompPrefabInfo",
  4166. "fileId": "b2nMNjVHlIQ7pWti9Wi07t"
  4167. },
  4168. {
  4169. "__type__": "e3f72nzJUVGJo/WY8fbriTs",
  4170. "_name": "",
  4171. "_objFlags": 0,
  4172. "__editorExtras__": {},
  4173. "node": {
  4174. "__id__": 1
  4175. },
  4176. "_enabled": true,
  4177. "__prefab": {
  4178. "__id__": 175
  4179. },
  4180. "Pause_Btn": {
  4181. "__id__": 7
  4182. },
  4183. "Rules_Btn": {
  4184. "__id__": 17
  4185. },
  4186. "Level": {
  4187. "__id__": 151
  4188. },
  4189. "Remain_Cube_Des": {
  4190. "__id__": 32
  4191. },
  4192. "Count_Down_Des": {
  4193. "__id__": 50
  4194. },
  4195. "Eliminate_Btn": {
  4196. "__id__": 82
  4197. },
  4198. "Shuffle_Btn": {
  4199. "__id__": 110
  4200. },
  4201. "Empty_Btn": {
  4202. "__id__": 138
  4203. },
  4204. "Hands": [
  4205. {
  4206. "__id__": 156
  4207. },
  4208. {
  4209. "__id__": 164
  4210. }
  4211. ],
  4212. "_id": ""
  4213. },
  4214. {
  4215. "__type__": "cc.CompPrefabInfo",
  4216. "fileId": "9eW0KURjBJ56ICeFliZj/d"
  4217. },
  4218. {
  4219. "__type__": "cc.Widget",
  4220. "_name": "",
  4221. "_objFlags": 0,
  4222. "__editorExtras__": {},
  4223. "node": {
  4224. "__id__": 1
  4225. },
  4226. "_enabled": true,
  4227. "__prefab": {
  4228. "__id__": 177
  4229. },
  4230. "_alignFlags": 45,
  4231. "_target": null,
  4232. "_left": 325,
  4233. "_right": 325,
  4234. "_top": 767,
  4235. "_bottom": 767,
  4236. "_horizontalCenter": 0,
  4237. "_verticalCenter": 0,
  4238. "_isAbsLeft": true,
  4239. "_isAbsRight": true,
  4240. "_isAbsTop": true,
  4241. "_isAbsBottom": true,
  4242. "_isAbsHorizontalCenter": true,
  4243. "_isAbsVerticalCenter": true,
  4244. "_originalWidth": 100,
  4245. "_originalHeight": 100,
  4246. "_alignMode": 2,
  4247. "_lockFlags": 0,
  4248. "_id": ""
  4249. },
  4250. {
  4251. "__type__": "cc.CompPrefabInfo",
  4252. "fileId": "86rm1CsHVIIIPV//I2PaaZ"
  4253. },
  4254. {
  4255. "__type__": "cc.PrefabInfo",
  4256. "root": {
  4257. "__id__": 1
  4258. },
  4259. "asset": {
  4260. "__id__": 0
  4261. },
  4262. "fileId": "6eTfbVN9VITrbnf1hrA70Z",
  4263. "instance": null,
  4264. "targetOverrides": null
  4265. }
  4266. ]