Main.prefab 63 KB

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