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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456
  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__": 134
  44. },
  45. {
  46. "__id__": 136
  47. },
  48. {
  49. "__id__": 138
  50. }
  51. ],
  52. "_prefab": {
  53. "__id__": 140
  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": 0,
  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": 1,
  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": 0,
  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": 0,
  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__": 87
  1650. },
  1651. {
  1652. "__id__": 107
  1653. }
  1654. ],
  1655. "_active": true,
  1656. "_components": [
  1657. {
  1658. "__id__": 127
  1659. },
  1660. {
  1661. "__id__": 129
  1662. },
  1663. {
  1664. "__id__": 131
  1665. }
  1666. ],
  1667. "_prefab": {
  1668. "__id__": 133
  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. "_prefab": {
  1725. "__id__": 86
  1726. },
  1727. "_lpos": {
  1728. "__type__": "cc.Vec3",
  1729. "x": 61.5,
  1730. "y": 1.4210854715202004e-14,
  1731. "z": 0
  1732. },
  1733. "_lrot": {
  1734. "__type__": "cc.Quat",
  1735. "x": 0,
  1736. "y": 0,
  1737. "z": 0,
  1738. "w": 1
  1739. },
  1740. "_lscale": {
  1741. "__type__": "cc.Vec3",
  1742. "x": 1,
  1743. "y": 1,
  1744. "z": 1
  1745. },
  1746. "_mobility": 0,
  1747. "_layer": 33554432,
  1748. "_euler": {
  1749. "__type__": "cc.Vec3",
  1750. "x": 0,
  1751. "y": 0,
  1752. "z": 0
  1753. },
  1754. "_id": ""
  1755. },
  1756. {
  1757. "__type__": "cc.Node",
  1758. "_name": "RedPoint",
  1759. "_objFlags": 0,
  1760. "__editorExtras__": {},
  1761. "_parent": {
  1762. "__id__": 67
  1763. },
  1764. "_children": [
  1765. {
  1766. "__id__": 69
  1767. }
  1768. ],
  1769. "_active": true,
  1770. "_components": [
  1771. {
  1772. "__id__": 75
  1773. },
  1774. {
  1775. "__id__": 77
  1776. }
  1777. ],
  1778. "_prefab": {
  1779. "__id__": 79
  1780. },
  1781. "_lpos": {
  1782. "__type__": "cc.Vec3",
  1783. "x": 100,
  1784. "y": 40,
  1785. "z": 0
  1786. },
  1787. "_lrot": {
  1788. "__type__": "cc.Quat",
  1789. "x": 0,
  1790. "y": 0,
  1791. "z": 0,
  1792. "w": 1
  1793. },
  1794. "_lscale": {
  1795. "__type__": "cc.Vec3",
  1796. "x": 1,
  1797. "y": 1,
  1798. "z": 1
  1799. },
  1800. "_mobility": 0,
  1801. "_layer": 33554432,
  1802. "_euler": {
  1803. "__type__": "cc.Vec3",
  1804. "x": 0,
  1805. "y": 0,
  1806. "z": 0
  1807. },
  1808. "_id": ""
  1809. },
  1810. {
  1811. "__type__": "cc.Node",
  1812. "_name": "Num",
  1813. "_objFlags": 0,
  1814. "__editorExtras__": {},
  1815. "_parent": {
  1816. "__id__": 68
  1817. },
  1818. "_children": [],
  1819. "_active": true,
  1820. "_components": [
  1821. {
  1822. "__id__": 70
  1823. },
  1824. {
  1825. "__id__": 72
  1826. }
  1827. ],
  1828. "_prefab": {
  1829. "__id__": 74
  1830. },
  1831. "_lpos": {
  1832. "__type__": "cc.Vec3",
  1833. "x": 0,
  1834. "y": 0,
  1835. "z": 0
  1836. },
  1837. "_lrot": {
  1838. "__type__": "cc.Quat",
  1839. "x": 0,
  1840. "y": 0,
  1841. "z": 0,
  1842. "w": 1
  1843. },
  1844. "_lscale": {
  1845. "__type__": "cc.Vec3",
  1846. "x": 1,
  1847. "y": 1,
  1848. "z": 1
  1849. },
  1850. "_mobility": 0,
  1851. "_layer": 33554432,
  1852. "_euler": {
  1853. "__type__": "cc.Vec3",
  1854. "x": 0,
  1855. "y": 0,
  1856. "z": 0
  1857. },
  1858. "_id": ""
  1859. },
  1860. {
  1861. "__type__": "cc.UITransform",
  1862. "_name": "",
  1863. "_objFlags": 0,
  1864. "__editorExtras__": {},
  1865. "node": {
  1866. "__id__": 69
  1867. },
  1868. "_enabled": true,
  1869. "__prefab": {
  1870. "__id__": 71
  1871. },
  1872. "_contentSize": {
  1873. "__type__": "cc.Size",
  1874. "width": 11.123046875,
  1875. "height": 50.4
  1876. },
  1877. "_anchorPoint": {
  1878. "__type__": "cc.Vec2",
  1879. "x": 0.5,
  1880. "y": 0.5
  1881. },
  1882. "_id": ""
  1883. },
  1884. {
  1885. "__type__": "cc.CompPrefabInfo",
  1886. "fileId": "b8WJQ/ABFC5J0mFFwB9BBU"
  1887. },
  1888. {
  1889. "__type__": "cc.Label",
  1890. "_name": "",
  1891. "_objFlags": 0,
  1892. "__editorExtras__": {},
  1893. "node": {
  1894. "__id__": 69
  1895. },
  1896. "_enabled": true,
  1897. "__prefab": {
  1898. "__id__": 73
  1899. },
  1900. "_customMaterial": null,
  1901. "_srcBlendFactor": 2,
  1902. "_dstBlendFactor": 4,
  1903. "_color": {
  1904. "__type__": "cc.Color",
  1905. "r": 255,
  1906. "g": 255,
  1907. "b": 255,
  1908. "a": 255
  1909. },
  1910. "_string": "1",
  1911. "_horizontalAlign": 1,
  1912. "_verticalAlign": 1,
  1913. "_actualFontSize": 20,
  1914. "_fontSize": 20,
  1915. "_fontFamily": "Arial",
  1916. "_lineHeight": 40,
  1917. "_overflow": 0,
  1918. "_enableWrapText": true,
  1919. "_font": null,
  1920. "_isSystemFontUsed": true,
  1921. "_spacingX": 0,
  1922. "_isItalic": false,
  1923. "_isBold": false,
  1924. "_isUnderline": false,
  1925. "_underlineHeight": 2,
  1926. "_cacheMode": 1,
  1927. "_enableOutline": false,
  1928. "_outlineColor": {
  1929. "__type__": "cc.Color",
  1930. "r": 0,
  1931. "g": 0,
  1932. "b": 0,
  1933. "a": 255
  1934. },
  1935. "_outlineWidth": 2,
  1936. "_enableShadow": false,
  1937. "_shadowColor": {
  1938. "__type__": "cc.Color",
  1939. "r": 0,
  1940. "g": 0,
  1941. "b": 0,
  1942. "a": 255
  1943. },
  1944. "_shadowOffset": {
  1945. "__type__": "cc.Vec2",
  1946. "x": 2,
  1947. "y": 2
  1948. },
  1949. "_shadowBlur": 2,
  1950. "_id": ""
  1951. },
  1952. {
  1953. "__type__": "cc.CompPrefabInfo",
  1954. "fileId": "16dyBs6zlL+40JxWBJaY4q"
  1955. },
  1956. {
  1957. "__type__": "cc.PrefabInfo",
  1958. "root": {
  1959. "__id__": 1
  1960. },
  1961. "asset": {
  1962. "__id__": 0
  1963. },
  1964. "fileId": "e6v67L8XJCPJ9qMf1o2xTU",
  1965. "instance": null,
  1966. "targetOverrides": null,
  1967. "nestedPrefabInstanceRoots": null
  1968. },
  1969. {
  1970. "__type__": "cc.UITransform",
  1971. "_name": "",
  1972. "_objFlags": 0,
  1973. "__editorExtras__": {},
  1974. "node": {
  1975. "__id__": 68
  1976. },
  1977. "_enabled": true,
  1978. "__prefab": {
  1979. "__id__": 76
  1980. },
  1981. "_contentSize": {
  1982. "__type__": "cc.Size",
  1983. "width": 34,
  1984. "height": 34
  1985. },
  1986. "_anchorPoint": {
  1987. "__type__": "cc.Vec2",
  1988. "x": 0.5,
  1989. "y": 0.5
  1990. },
  1991. "_id": ""
  1992. },
  1993. {
  1994. "__type__": "cc.CompPrefabInfo",
  1995. "fileId": "62DY9ET5RNzIRaeB8m2XD1"
  1996. },
  1997. {
  1998. "__type__": "cc.Sprite",
  1999. "_name": "",
  2000. "_objFlags": 0,
  2001. "__editorExtras__": {},
  2002. "node": {
  2003. "__id__": 68
  2004. },
  2005. "_enabled": true,
  2006. "__prefab": {
  2007. "__id__": 78
  2008. },
  2009. "_customMaterial": null,
  2010. "_srcBlendFactor": 2,
  2011. "_dstBlendFactor": 4,
  2012. "_color": {
  2013. "__type__": "cc.Color",
  2014. "r": 255,
  2015. "g": 255,
  2016. "b": 255,
  2017. "a": 255
  2018. },
  2019. "_spriteFrame": {
  2020. "__uuid__": "e34a4d2d-d74e-4b2e-a5b4-02cf2f0763d0@f9941",
  2021. "__expectedType__": "cc.SpriteFrame"
  2022. },
  2023. "_type": 0,
  2024. "_fillType": 0,
  2025. "_sizeMode": 1,
  2026. "_fillCenter": {
  2027. "__type__": "cc.Vec2",
  2028. "x": 0,
  2029. "y": 0
  2030. },
  2031. "_fillStart": 0,
  2032. "_fillRange": 0,
  2033. "_isTrimmedMode": true,
  2034. "_useGrayscale": false,
  2035. "_atlas": null,
  2036. "_id": ""
  2037. },
  2038. {
  2039. "__type__": "cc.CompPrefabInfo",
  2040. "fileId": "ffxVGHJsdI8acfrfeGXIAr"
  2041. },
  2042. {
  2043. "__type__": "cc.PrefabInfo",
  2044. "root": {
  2045. "__id__": 1
  2046. },
  2047. "asset": {
  2048. "__id__": 0
  2049. },
  2050. "fileId": "fc8RPcI59A+qwmMhPQvcxS",
  2051. "instance": null,
  2052. "targetOverrides": null,
  2053. "nestedPrefabInstanceRoots": null
  2054. },
  2055. {
  2056. "__type__": "cc.UITransform",
  2057. "_name": "",
  2058. "_objFlags": 0,
  2059. "__editorExtras__": {},
  2060. "node": {
  2061. "__id__": 67
  2062. },
  2063. "_enabled": true,
  2064. "__prefab": {
  2065. "__id__": 81
  2066. },
  2067. "_contentSize": {
  2068. "__type__": "cc.Size",
  2069. "width": 223,
  2070. "height": 104
  2071. },
  2072. "_anchorPoint": {
  2073. "__type__": "cc.Vec2",
  2074. "x": 0.5,
  2075. "y": 0.5
  2076. },
  2077. "_id": ""
  2078. },
  2079. {
  2080. "__type__": "cc.CompPrefabInfo",
  2081. "fileId": "6enAfP0yBPh5EXOI9ZE3gj"
  2082. },
  2083. {
  2084. "__type__": "cc.Sprite",
  2085. "_name": "",
  2086. "_objFlags": 0,
  2087. "__editorExtras__": {},
  2088. "node": {
  2089. "__id__": 67
  2090. },
  2091. "_enabled": true,
  2092. "__prefab": {
  2093. "__id__": 83
  2094. },
  2095. "_customMaterial": null,
  2096. "_srcBlendFactor": 2,
  2097. "_dstBlendFactor": 4,
  2098. "_color": {
  2099. "__type__": "cc.Color",
  2100. "r": 255,
  2101. "g": 255,
  2102. "b": 255,
  2103. "a": 255
  2104. },
  2105. "_spriteFrame": {
  2106. "__uuid__": "5de5a1cd-d6b9-4103-931a-05786bb08b8e@f9941",
  2107. "__expectedType__": "cc.SpriteFrame"
  2108. },
  2109. "_type": 1,
  2110. "_fillType": 0,
  2111. "_sizeMode": 0,
  2112. "_fillCenter": {
  2113. "__type__": "cc.Vec2",
  2114. "x": 0,
  2115. "y": 0
  2116. },
  2117. "_fillStart": 0,
  2118. "_fillRange": 0,
  2119. "_isTrimmedMode": true,
  2120. "_useGrayscale": false,
  2121. "_atlas": null,
  2122. "_id": ""
  2123. },
  2124. {
  2125. "__type__": "cc.CompPrefabInfo",
  2126. "fileId": "baC43slHFCW6ryeDQOn3HO"
  2127. },
  2128. {
  2129. "__type__": "cc.Button",
  2130. "_name": "",
  2131. "_objFlags": 0,
  2132. "__editorExtras__": {},
  2133. "node": {
  2134. "__id__": 67
  2135. },
  2136. "_enabled": true,
  2137. "__prefab": {
  2138. "__id__": 85
  2139. },
  2140. "clickEvents": [],
  2141. "_interactable": true,
  2142. "_transition": 3,
  2143. "_normalColor": {
  2144. "__type__": "cc.Color",
  2145. "r": 214,
  2146. "g": 214,
  2147. "b": 214,
  2148. "a": 255
  2149. },
  2150. "_hoverColor": {
  2151. "__type__": "cc.Color",
  2152. "r": 211,
  2153. "g": 211,
  2154. "b": 211,
  2155. "a": 255
  2156. },
  2157. "_pressedColor": {
  2158. "__type__": "cc.Color",
  2159. "r": 255,
  2160. "g": 255,
  2161. "b": 255,
  2162. "a": 255
  2163. },
  2164. "_disabledColor": {
  2165. "__type__": "cc.Color",
  2166. "r": 124,
  2167. "g": 124,
  2168. "b": 124,
  2169. "a": 255
  2170. },
  2171. "_normalSprite": {
  2172. "__uuid__": "5de5a1cd-d6b9-4103-931a-05786bb08b8e@f9941",
  2173. "__expectedType__": "cc.SpriteFrame"
  2174. },
  2175. "_hoverSprite": {
  2176. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2177. "__expectedType__": "cc.SpriteFrame"
  2178. },
  2179. "_pressedSprite": {
  2180. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  2181. "__expectedType__": "cc.SpriteFrame"
  2182. },
  2183. "_disabledSprite": {
  2184. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  2185. "__expectedType__": "cc.SpriteFrame"
  2186. },
  2187. "_duration": 0.1,
  2188. "_zoomScale": 1.2,
  2189. "_target": {
  2190. "__id__": 67
  2191. },
  2192. "_id": ""
  2193. },
  2194. {
  2195. "__type__": "cc.CompPrefabInfo",
  2196. "fileId": "74PgcNc3pLOIz/zrsMJ5KE"
  2197. },
  2198. {
  2199. "__type__": "cc.PrefabInfo",
  2200. "root": {
  2201. "__id__": 1
  2202. },
  2203. "asset": {
  2204. "__id__": 0
  2205. },
  2206. "fileId": "7fhz08iYZBsp2du6Qb9EWW",
  2207. "instance": null,
  2208. "targetOverrides": null,
  2209. "nestedPrefabInstanceRoots": null
  2210. },
  2211. {
  2212. "__type__": "cc.Node",
  2213. "_name": "Shuffle_Btn",
  2214. "_objFlags": 0,
  2215. "__editorExtras__": {},
  2216. "_parent": {
  2217. "__id__": 66
  2218. },
  2219. "_children": [
  2220. {
  2221. "__id__": 88
  2222. }
  2223. ],
  2224. "_active": true,
  2225. "_components": [
  2226. {
  2227. "__id__": 100
  2228. },
  2229. {
  2230. "__id__": 102
  2231. },
  2232. {
  2233. "__id__": 104
  2234. }
  2235. ],
  2236. "_prefab": {
  2237. "__id__": 106
  2238. },
  2239. "_lpos": {
  2240. "__type__": "cc.Vec3",
  2241. "x": 314.5,
  2242. "y": 1.4210854715202004e-14,
  2243. "z": 0
  2244. },
  2245. "_lrot": {
  2246. "__type__": "cc.Quat",
  2247. "x": 0,
  2248. "y": 0,
  2249. "z": 0,
  2250. "w": 1
  2251. },
  2252. "_lscale": {
  2253. "__type__": "cc.Vec3",
  2254. "x": 1,
  2255. "y": 1,
  2256. "z": 1
  2257. },
  2258. "_mobility": 0,
  2259. "_layer": 33554432,
  2260. "_euler": {
  2261. "__type__": "cc.Vec3",
  2262. "x": 0,
  2263. "y": 0,
  2264. "z": 0
  2265. },
  2266. "_id": ""
  2267. },
  2268. {
  2269. "__type__": "cc.Node",
  2270. "_name": "RedPoint",
  2271. "_objFlags": 0,
  2272. "__editorExtras__": {},
  2273. "_parent": {
  2274. "__id__": 87
  2275. },
  2276. "_children": [
  2277. {
  2278. "__id__": 89
  2279. }
  2280. ],
  2281. "_active": true,
  2282. "_components": [
  2283. {
  2284. "__id__": 95
  2285. },
  2286. {
  2287. "__id__": 97
  2288. }
  2289. ],
  2290. "_prefab": {
  2291. "__id__": 99
  2292. },
  2293. "_lpos": {
  2294. "__type__": "cc.Vec3",
  2295. "x": 100,
  2296. "y": 40,
  2297. "z": 0
  2298. },
  2299. "_lrot": {
  2300. "__type__": "cc.Quat",
  2301. "x": 0,
  2302. "y": 0,
  2303. "z": 0,
  2304. "w": 1
  2305. },
  2306. "_lscale": {
  2307. "__type__": "cc.Vec3",
  2308. "x": 1,
  2309. "y": 1,
  2310. "z": 1
  2311. },
  2312. "_mobility": 0,
  2313. "_layer": 33554432,
  2314. "_euler": {
  2315. "__type__": "cc.Vec3",
  2316. "x": 0,
  2317. "y": 0,
  2318. "z": 0
  2319. },
  2320. "_id": ""
  2321. },
  2322. {
  2323. "__type__": "cc.Node",
  2324. "_name": "Num",
  2325. "_objFlags": 0,
  2326. "__editorExtras__": {},
  2327. "_parent": {
  2328. "__id__": 88
  2329. },
  2330. "_children": [],
  2331. "_active": true,
  2332. "_components": [
  2333. {
  2334. "__id__": 90
  2335. },
  2336. {
  2337. "__id__": 92
  2338. }
  2339. ],
  2340. "_prefab": {
  2341. "__id__": 94
  2342. },
  2343. "_lpos": {
  2344. "__type__": "cc.Vec3",
  2345. "x": 0,
  2346. "y": 0,
  2347. "z": 0
  2348. },
  2349. "_lrot": {
  2350. "__type__": "cc.Quat",
  2351. "x": 0,
  2352. "y": 0,
  2353. "z": 0,
  2354. "w": 1
  2355. },
  2356. "_lscale": {
  2357. "__type__": "cc.Vec3",
  2358. "x": 1,
  2359. "y": 1,
  2360. "z": 1
  2361. },
  2362. "_mobility": 0,
  2363. "_layer": 33554432,
  2364. "_euler": {
  2365. "__type__": "cc.Vec3",
  2366. "x": 0,
  2367. "y": 0,
  2368. "z": 0
  2369. },
  2370. "_id": ""
  2371. },
  2372. {
  2373. "__type__": "cc.UITransform",
  2374. "_name": "",
  2375. "_objFlags": 0,
  2376. "__editorExtras__": {},
  2377. "node": {
  2378. "__id__": 89
  2379. },
  2380. "_enabled": true,
  2381. "__prefab": {
  2382. "__id__": 91
  2383. },
  2384. "_contentSize": {
  2385. "__type__": "cc.Size",
  2386. "width": 11.123046875,
  2387. "height": 50.4
  2388. },
  2389. "_anchorPoint": {
  2390. "__type__": "cc.Vec2",
  2391. "x": 0.5,
  2392. "y": 0.5
  2393. },
  2394. "_id": ""
  2395. },
  2396. {
  2397. "__type__": "cc.CompPrefabInfo",
  2398. "fileId": "58bNT1KuFO/IEB9GGKcra6"
  2399. },
  2400. {
  2401. "__type__": "cc.Label",
  2402. "_name": "",
  2403. "_objFlags": 0,
  2404. "__editorExtras__": {},
  2405. "node": {
  2406. "__id__": 89
  2407. },
  2408. "_enabled": true,
  2409. "__prefab": {
  2410. "__id__": 93
  2411. },
  2412. "_customMaterial": null,
  2413. "_srcBlendFactor": 2,
  2414. "_dstBlendFactor": 4,
  2415. "_color": {
  2416. "__type__": "cc.Color",
  2417. "r": 255,
  2418. "g": 255,
  2419. "b": 255,
  2420. "a": 255
  2421. },
  2422. "_string": "1",
  2423. "_horizontalAlign": 1,
  2424. "_verticalAlign": 1,
  2425. "_actualFontSize": 20,
  2426. "_fontSize": 20,
  2427. "_fontFamily": "Arial",
  2428. "_lineHeight": 40,
  2429. "_overflow": 0,
  2430. "_enableWrapText": true,
  2431. "_font": null,
  2432. "_isSystemFontUsed": true,
  2433. "_spacingX": 0,
  2434. "_isItalic": false,
  2435. "_isBold": false,
  2436. "_isUnderline": false,
  2437. "_underlineHeight": 2,
  2438. "_cacheMode": 1,
  2439. "_enableOutline": false,
  2440. "_outlineColor": {
  2441. "__type__": "cc.Color",
  2442. "r": 0,
  2443. "g": 0,
  2444. "b": 0,
  2445. "a": 255
  2446. },
  2447. "_outlineWidth": 2,
  2448. "_enableShadow": false,
  2449. "_shadowColor": {
  2450. "__type__": "cc.Color",
  2451. "r": 0,
  2452. "g": 0,
  2453. "b": 0,
  2454. "a": 255
  2455. },
  2456. "_shadowOffset": {
  2457. "__type__": "cc.Vec2",
  2458. "x": 2,
  2459. "y": 2
  2460. },
  2461. "_shadowBlur": 2,
  2462. "_id": ""
  2463. },
  2464. {
  2465. "__type__": "cc.CompPrefabInfo",
  2466. "fileId": "c1dGfdHTRKw5RV7Z4YEc/5"
  2467. },
  2468. {
  2469. "__type__": "cc.PrefabInfo",
  2470. "root": {
  2471. "__id__": 1
  2472. },
  2473. "asset": {
  2474. "__id__": 0
  2475. },
  2476. "fileId": "068Bhnlb1LIqjWStjE4zA/",
  2477. "instance": null,
  2478. "targetOverrides": null,
  2479. "nestedPrefabInstanceRoots": null
  2480. },
  2481. {
  2482. "__type__": "cc.UITransform",
  2483. "_name": "",
  2484. "_objFlags": 0,
  2485. "__editorExtras__": {},
  2486. "node": {
  2487. "__id__": 88
  2488. },
  2489. "_enabled": true,
  2490. "__prefab": {
  2491. "__id__": 96
  2492. },
  2493. "_contentSize": {
  2494. "__type__": "cc.Size",
  2495. "width": 34,
  2496. "height": 34
  2497. },
  2498. "_anchorPoint": {
  2499. "__type__": "cc.Vec2",
  2500. "x": 0.5,
  2501. "y": 0.5
  2502. },
  2503. "_id": ""
  2504. },
  2505. {
  2506. "__type__": "cc.CompPrefabInfo",
  2507. "fileId": "433cishbtDd4IhgBVqeUKP"
  2508. },
  2509. {
  2510. "__type__": "cc.Sprite",
  2511. "_name": "",
  2512. "_objFlags": 0,
  2513. "__editorExtras__": {},
  2514. "node": {
  2515. "__id__": 88
  2516. },
  2517. "_enabled": true,
  2518. "__prefab": {
  2519. "__id__": 98
  2520. },
  2521. "_customMaterial": null,
  2522. "_srcBlendFactor": 2,
  2523. "_dstBlendFactor": 4,
  2524. "_color": {
  2525. "__type__": "cc.Color",
  2526. "r": 255,
  2527. "g": 255,
  2528. "b": 255,
  2529. "a": 255
  2530. },
  2531. "_spriteFrame": {
  2532. "__uuid__": "e34a4d2d-d74e-4b2e-a5b4-02cf2f0763d0@f9941",
  2533. "__expectedType__": "cc.SpriteFrame"
  2534. },
  2535. "_type": 0,
  2536. "_fillType": 0,
  2537. "_sizeMode": 1,
  2538. "_fillCenter": {
  2539. "__type__": "cc.Vec2",
  2540. "x": 0,
  2541. "y": 0
  2542. },
  2543. "_fillStart": 0,
  2544. "_fillRange": 0,
  2545. "_isTrimmedMode": true,
  2546. "_useGrayscale": false,
  2547. "_atlas": null,
  2548. "_id": ""
  2549. },
  2550. {
  2551. "__type__": "cc.CompPrefabInfo",
  2552. "fileId": "66DE5x/hNMB6Ylv9jrpi4M"
  2553. },
  2554. {
  2555. "__type__": "cc.PrefabInfo",
  2556. "root": {
  2557. "__id__": 1
  2558. },
  2559. "asset": {
  2560. "__id__": 0
  2561. },
  2562. "fileId": "65qOmb5vlHb5uKiUNbuYoW",
  2563. "instance": null,
  2564. "targetOverrides": null,
  2565. "nestedPrefabInstanceRoots": null
  2566. },
  2567. {
  2568. "__type__": "cc.UITransform",
  2569. "_name": "",
  2570. "_objFlags": 0,
  2571. "__editorExtras__": {},
  2572. "node": {
  2573. "__id__": 87
  2574. },
  2575. "_enabled": true,
  2576. "__prefab": {
  2577. "__id__": 101
  2578. },
  2579. "_contentSize": {
  2580. "__type__": "cc.Size",
  2581. "width": 223,
  2582. "height": 104
  2583. },
  2584. "_anchorPoint": {
  2585. "__type__": "cc.Vec2",
  2586. "x": 0.5,
  2587. "y": 0.5
  2588. },
  2589. "_id": ""
  2590. },
  2591. {
  2592. "__type__": "cc.CompPrefabInfo",
  2593. "fileId": "14Tu3Ds2ZEZaONRQ7B3b4T"
  2594. },
  2595. {
  2596. "__type__": "cc.Sprite",
  2597. "_name": "",
  2598. "_objFlags": 0,
  2599. "__editorExtras__": {},
  2600. "node": {
  2601. "__id__": 87
  2602. },
  2603. "_enabled": true,
  2604. "__prefab": {
  2605. "__id__": 103
  2606. },
  2607. "_customMaterial": null,
  2608. "_srcBlendFactor": 2,
  2609. "_dstBlendFactor": 4,
  2610. "_color": {
  2611. "__type__": "cc.Color",
  2612. "r": 255,
  2613. "g": 255,
  2614. "b": 255,
  2615. "a": 255
  2616. },
  2617. "_spriteFrame": {
  2618. "__uuid__": "9a83692c-469c-4f6b-965b-5f892ad4e6c4@f9941",
  2619. "__expectedType__": "cc.SpriteFrame"
  2620. },
  2621. "_type": 1,
  2622. "_fillType": 0,
  2623. "_sizeMode": 0,
  2624. "_fillCenter": {
  2625. "__type__": "cc.Vec2",
  2626. "x": 0,
  2627. "y": 0
  2628. },
  2629. "_fillStart": 0,
  2630. "_fillRange": 0,
  2631. "_isTrimmedMode": true,
  2632. "_useGrayscale": false,
  2633. "_atlas": null,
  2634. "_id": ""
  2635. },
  2636. {
  2637. "__type__": "cc.CompPrefabInfo",
  2638. "fileId": "8eYa9rDt1AmpyL3E2Zcewm"
  2639. },
  2640. {
  2641. "__type__": "cc.Button",
  2642. "_name": "",
  2643. "_objFlags": 0,
  2644. "__editorExtras__": {},
  2645. "node": {
  2646. "__id__": 87
  2647. },
  2648. "_enabled": true,
  2649. "__prefab": {
  2650. "__id__": 105
  2651. },
  2652. "clickEvents": [],
  2653. "_interactable": true,
  2654. "_transition": 3,
  2655. "_normalColor": {
  2656. "__type__": "cc.Color",
  2657. "r": 214,
  2658. "g": 214,
  2659. "b": 214,
  2660. "a": 255
  2661. },
  2662. "_hoverColor": {
  2663. "__type__": "cc.Color",
  2664. "r": 211,
  2665. "g": 211,
  2666. "b": 211,
  2667. "a": 255
  2668. },
  2669. "_pressedColor": {
  2670. "__type__": "cc.Color",
  2671. "r": 255,
  2672. "g": 255,
  2673. "b": 255,
  2674. "a": 255
  2675. },
  2676. "_disabledColor": {
  2677. "__type__": "cc.Color",
  2678. "r": 124,
  2679. "g": 124,
  2680. "b": 124,
  2681. "a": 255
  2682. },
  2683. "_normalSprite": {
  2684. "__uuid__": "9a83692c-469c-4f6b-965b-5f892ad4e6c4@f9941",
  2685. "__expectedType__": "cc.SpriteFrame"
  2686. },
  2687. "_hoverSprite": {
  2688. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2689. "__expectedType__": "cc.SpriteFrame"
  2690. },
  2691. "_pressedSprite": {
  2692. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  2693. "__expectedType__": "cc.SpriteFrame"
  2694. },
  2695. "_disabledSprite": {
  2696. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  2697. "__expectedType__": "cc.SpriteFrame"
  2698. },
  2699. "_duration": 0.1,
  2700. "_zoomScale": 1.2,
  2701. "_target": {
  2702. "__id__": 87
  2703. },
  2704. "_id": ""
  2705. },
  2706. {
  2707. "__type__": "cc.CompPrefabInfo",
  2708. "fileId": "5dWY0DnexLkoVDEu9KnLwg"
  2709. },
  2710. {
  2711. "__type__": "cc.PrefabInfo",
  2712. "root": {
  2713. "__id__": 1
  2714. },
  2715. "asset": {
  2716. "__id__": 0
  2717. },
  2718. "fileId": "62f4QOedtJ2aYg50A6qOay",
  2719. "instance": null,
  2720. "targetOverrides": null,
  2721. "nestedPrefabInstanceRoots": null
  2722. },
  2723. {
  2724. "__type__": "cc.Node",
  2725. "_name": "Empty_Btn",
  2726. "_objFlags": 0,
  2727. "__editorExtras__": {},
  2728. "_parent": {
  2729. "__id__": 66
  2730. },
  2731. "_children": [
  2732. {
  2733. "__id__": 108
  2734. }
  2735. ],
  2736. "_active": true,
  2737. "_components": [
  2738. {
  2739. "__id__": 120
  2740. },
  2741. {
  2742. "__id__": 122
  2743. },
  2744. {
  2745. "__id__": 124
  2746. }
  2747. ],
  2748. "_prefab": {
  2749. "__id__": 126
  2750. },
  2751. "_lpos": {
  2752. "__type__": "cc.Vec3",
  2753. "x": 567.5,
  2754. "y": 1.4210854715202004e-14,
  2755. "z": 0
  2756. },
  2757. "_lrot": {
  2758. "__type__": "cc.Quat",
  2759. "x": 0,
  2760. "y": 0,
  2761. "z": 0,
  2762. "w": 1
  2763. },
  2764. "_lscale": {
  2765. "__type__": "cc.Vec3",
  2766. "x": 1,
  2767. "y": 1,
  2768. "z": 1
  2769. },
  2770. "_mobility": 0,
  2771. "_layer": 33554432,
  2772. "_euler": {
  2773. "__type__": "cc.Vec3",
  2774. "x": 0,
  2775. "y": 0,
  2776. "z": 0
  2777. },
  2778. "_id": ""
  2779. },
  2780. {
  2781. "__type__": "cc.Node",
  2782. "_name": "RedPoint",
  2783. "_objFlags": 0,
  2784. "__editorExtras__": {},
  2785. "_parent": {
  2786. "__id__": 107
  2787. },
  2788. "_children": [
  2789. {
  2790. "__id__": 109
  2791. }
  2792. ],
  2793. "_active": true,
  2794. "_components": [
  2795. {
  2796. "__id__": 115
  2797. },
  2798. {
  2799. "__id__": 117
  2800. }
  2801. ],
  2802. "_prefab": {
  2803. "__id__": 119
  2804. },
  2805. "_lpos": {
  2806. "__type__": "cc.Vec3",
  2807. "x": 100,
  2808. "y": 40,
  2809. "z": 0
  2810. },
  2811. "_lrot": {
  2812. "__type__": "cc.Quat",
  2813. "x": 0,
  2814. "y": 0,
  2815. "z": 0,
  2816. "w": 1
  2817. },
  2818. "_lscale": {
  2819. "__type__": "cc.Vec3",
  2820. "x": 1,
  2821. "y": 1,
  2822. "z": 1
  2823. },
  2824. "_mobility": 0,
  2825. "_layer": 33554432,
  2826. "_euler": {
  2827. "__type__": "cc.Vec3",
  2828. "x": 0,
  2829. "y": 0,
  2830. "z": 0
  2831. },
  2832. "_id": ""
  2833. },
  2834. {
  2835. "__type__": "cc.Node",
  2836. "_name": "Num",
  2837. "_objFlags": 0,
  2838. "__editorExtras__": {},
  2839. "_parent": {
  2840. "__id__": 108
  2841. },
  2842. "_children": [],
  2843. "_active": true,
  2844. "_components": [
  2845. {
  2846. "__id__": 110
  2847. },
  2848. {
  2849. "__id__": 112
  2850. }
  2851. ],
  2852. "_prefab": {
  2853. "__id__": 114
  2854. },
  2855. "_lpos": {
  2856. "__type__": "cc.Vec3",
  2857. "x": 0,
  2858. "y": 0,
  2859. "z": 0
  2860. },
  2861. "_lrot": {
  2862. "__type__": "cc.Quat",
  2863. "x": 0,
  2864. "y": 0,
  2865. "z": 0,
  2866. "w": 1
  2867. },
  2868. "_lscale": {
  2869. "__type__": "cc.Vec3",
  2870. "x": 1,
  2871. "y": 1,
  2872. "z": 1
  2873. },
  2874. "_mobility": 0,
  2875. "_layer": 33554432,
  2876. "_euler": {
  2877. "__type__": "cc.Vec3",
  2878. "x": 0,
  2879. "y": 0,
  2880. "z": 0
  2881. },
  2882. "_id": ""
  2883. },
  2884. {
  2885. "__type__": "cc.UITransform",
  2886. "_name": "",
  2887. "_objFlags": 0,
  2888. "__editorExtras__": {},
  2889. "node": {
  2890. "__id__": 109
  2891. },
  2892. "_enabled": true,
  2893. "__prefab": {
  2894. "__id__": 111
  2895. },
  2896. "_contentSize": {
  2897. "__type__": "cc.Size",
  2898. "width": 11.123046875,
  2899. "height": 50.4
  2900. },
  2901. "_anchorPoint": {
  2902. "__type__": "cc.Vec2",
  2903. "x": 0.5,
  2904. "y": 0.5
  2905. },
  2906. "_id": ""
  2907. },
  2908. {
  2909. "__type__": "cc.CompPrefabInfo",
  2910. "fileId": "13/C71J19MKb5WbMq7VbKS"
  2911. },
  2912. {
  2913. "__type__": "cc.Label",
  2914. "_name": "",
  2915. "_objFlags": 0,
  2916. "__editorExtras__": {},
  2917. "node": {
  2918. "__id__": 109
  2919. },
  2920. "_enabled": true,
  2921. "__prefab": {
  2922. "__id__": 113
  2923. },
  2924. "_customMaterial": null,
  2925. "_srcBlendFactor": 2,
  2926. "_dstBlendFactor": 4,
  2927. "_color": {
  2928. "__type__": "cc.Color",
  2929. "r": 255,
  2930. "g": 255,
  2931. "b": 255,
  2932. "a": 255
  2933. },
  2934. "_string": "1",
  2935. "_horizontalAlign": 1,
  2936. "_verticalAlign": 1,
  2937. "_actualFontSize": 20,
  2938. "_fontSize": 20,
  2939. "_fontFamily": "Arial",
  2940. "_lineHeight": 40,
  2941. "_overflow": 0,
  2942. "_enableWrapText": true,
  2943. "_font": null,
  2944. "_isSystemFontUsed": true,
  2945. "_spacingX": 0,
  2946. "_isItalic": false,
  2947. "_isBold": false,
  2948. "_isUnderline": false,
  2949. "_underlineHeight": 2,
  2950. "_cacheMode": 1,
  2951. "_enableOutline": false,
  2952. "_outlineColor": {
  2953. "__type__": "cc.Color",
  2954. "r": 0,
  2955. "g": 0,
  2956. "b": 0,
  2957. "a": 255
  2958. },
  2959. "_outlineWidth": 2,
  2960. "_enableShadow": false,
  2961. "_shadowColor": {
  2962. "__type__": "cc.Color",
  2963. "r": 0,
  2964. "g": 0,
  2965. "b": 0,
  2966. "a": 255
  2967. },
  2968. "_shadowOffset": {
  2969. "__type__": "cc.Vec2",
  2970. "x": 2,
  2971. "y": 2
  2972. },
  2973. "_shadowBlur": 2,
  2974. "_id": ""
  2975. },
  2976. {
  2977. "__type__": "cc.CompPrefabInfo",
  2978. "fileId": "b9kmIFdklAYa/eNmZydKkW"
  2979. },
  2980. {
  2981. "__type__": "cc.PrefabInfo",
  2982. "root": {
  2983. "__id__": 1
  2984. },
  2985. "asset": {
  2986. "__id__": 0
  2987. },
  2988. "fileId": "5dVlJzIy1N+57Q7X9pdZTw",
  2989. "instance": null,
  2990. "targetOverrides": null,
  2991. "nestedPrefabInstanceRoots": null
  2992. },
  2993. {
  2994. "__type__": "cc.UITransform",
  2995. "_name": "",
  2996. "_objFlags": 0,
  2997. "__editorExtras__": {},
  2998. "node": {
  2999. "__id__": 108
  3000. },
  3001. "_enabled": true,
  3002. "__prefab": {
  3003. "__id__": 116
  3004. },
  3005. "_contentSize": {
  3006. "__type__": "cc.Size",
  3007. "width": 34,
  3008. "height": 34
  3009. },
  3010. "_anchorPoint": {
  3011. "__type__": "cc.Vec2",
  3012. "x": 0.5,
  3013. "y": 0.5
  3014. },
  3015. "_id": ""
  3016. },
  3017. {
  3018. "__type__": "cc.CompPrefabInfo",
  3019. "fileId": "bforGIxjJCGaz6DAUY5ZXT"
  3020. },
  3021. {
  3022. "__type__": "cc.Sprite",
  3023. "_name": "",
  3024. "_objFlags": 0,
  3025. "__editorExtras__": {},
  3026. "node": {
  3027. "__id__": 108
  3028. },
  3029. "_enabled": true,
  3030. "__prefab": {
  3031. "__id__": 118
  3032. },
  3033. "_customMaterial": null,
  3034. "_srcBlendFactor": 2,
  3035. "_dstBlendFactor": 4,
  3036. "_color": {
  3037. "__type__": "cc.Color",
  3038. "r": 255,
  3039. "g": 255,
  3040. "b": 255,
  3041. "a": 255
  3042. },
  3043. "_spriteFrame": {
  3044. "__uuid__": "e34a4d2d-d74e-4b2e-a5b4-02cf2f0763d0@f9941",
  3045. "__expectedType__": "cc.SpriteFrame"
  3046. },
  3047. "_type": 0,
  3048. "_fillType": 0,
  3049. "_sizeMode": 1,
  3050. "_fillCenter": {
  3051. "__type__": "cc.Vec2",
  3052. "x": 0,
  3053. "y": 0
  3054. },
  3055. "_fillStart": 0,
  3056. "_fillRange": 0,
  3057. "_isTrimmedMode": true,
  3058. "_useGrayscale": false,
  3059. "_atlas": null,
  3060. "_id": ""
  3061. },
  3062. {
  3063. "__type__": "cc.CompPrefabInfo",
  3064. "fileId": "1eEYEM5V5JerX/5jCvKsaF"
  3065. },
  3066. {
  3067. "__type__": "cc.PrefabInfo",
  3068. "root": {
  3069. "__id__": 1
  3070. },
  3071. "asset": {
  3072. "__id__": 0
  3073. },
  3074. "fileId": "8airO/pRpCUKGVypwhC2BZ",
  3075. "instance": null,
  3076. "targetOverrides": null,
  3077. "nestedPrefabInstanceRoots": null
  3078. },
  3079. {
  3080. "__type__": "cc.UITransform",
  3081. "_name": "",
  3082. "_objFlags": 0,
  3083. "__editorExtras__": {},
  3084. "node": {
  3085. "__id__": 107
  3086. },
  3087. "_enabled": true,
  3088. "__prefab": {
  3089. "__id__": 121
  3090. },
  3091. "_contentSize": {
  3092. "__type__": "cc.Size",
  3093. "width": 223,
  3094. "height": 104
  3095. },
  3096. "_anchorPoint": {
  3097. "__type__": "cc.Vec2",
  3098. "x": 0.5,
  3099. "y": 0.5
  3100. },
  3101. "_id": ""
  3102. },
  3103. {
  3104. "__type__": "cc.CompPrefabInfo",
  3105. "fileId": "78TWp3oB1ENoaZ8wJH7jof"
  3106. },
  3107. {
  3108. "__type__": "cc.Sprite",
  3109. "_name": "",
  3110. "_objFlags": 0,
  3111. "__editorExtras__": {},
  3112. "node": {
  3113. "__id__": 107
  3114. },
  3115. "_enabled": true,
  3116. "__prefab": {
  3117. "__id__": 123
  3118. },
  3119. "_customMaterial": null,
  3120. "_srcBlendFactor": 2,
  3121. "_dstBlendFactor": 4,
  3122. "_color": {
  3123. "__type__": "cc.Color",
  3124. "r": 255,
  3125. "g": 255,
  3126. "b": 255,
  3127. "a": 255
  3128. },
  3129. "_spriteFrame": {
  3130. "__uuid__": "00ea8543-6a26-417c-88d4-cef1a7b6ac0c@f9941",
  3131. "__expectedType__": "cc.SpriteFrame"
  3132. },
  3133. "_type": 1,
  3134. "_fillType": 0,
  3135. "_sizeMode": 0,
  3136. "_fillCenter": {
  3137. "__type__": "cc.Vec2",
  3138. "x": 0,
  3139. "y": 0
  3140. },
  3141. "_fillStart": 0,
  3142. "_fillRange": 0,
  3143. "_isTrimmedMode": true,
  3144. "_useGrayscale": false,
  3145. "_atlas": null,
  3146. "_id": ""
  3147. },
  3148. {
  3149. "__type__": "cc.CompPrefabInfo",
  3150. "fileId": "20XOsoahJBALYvZVdthGot"
  3151. },
  3152. {
  3153. "__type__": "cc.Button",
  3154. "_name": "",
  3155. "_objFlags": 0,
  3156. "__editorExtras__": {},
  3157. "node": {
  3158. "__id__": 107
  3159. },
  3160. "_enabled": true,
  3161. "__prefab": {
  3162. "__id__": 125
  3163. },
  3164. "clickEvents": [],
  3165. "_interactable": true,
  3166. "_transition": 3,
  3167. "_normalColor": {
  3168. "__type__": "cc.Color",
  3169. "r": 214,
  3170. "g": 214,
  3171. "b": 214,
  3172. "a": 255
  3173. },
  3174. "_hoverColor": {
  3175. "__type__": "cc.Color",
  3176. "r": 211,
  3177. "g": 211,
  3178. "b": 211,
  3179. "a": 255
  3180. },
  3181. "_pressedColor": {
  3182. "__type__": "cc.Color",
  3183. "r": 255,
  3184. "g": 255,
  3185. "b": 255,
  3186. "a": 255
  3187. },
  3188. "_disabledColor": {
  3189. "__type__": "cc.Color",
  3190. "r": 124,
  3191. "g": 124,
  3192. "b": 124,
  3193. "a": 255
  3194. },
  3195. "_normalSprite": null,
  3196. "_hoverSprite": null,
  3197. "_pressedSprite": null,
  3198. "_disabledSprite": null,
  3199. "_duration": 0.1,
  3200. "_zoomScale": 1.2,
  3201. "_target": {
  3202. "__id__": 107
  3203. },
  3204. "_id": ""
  3205. },
  3206. {
  3207. "__type__": "cc.CompPrefabInfo",
  3208. "fileId": "afzsgd6+lNGax0skrAc3Cg"
  3209. },
  3210. {
  3211. "__type__": "cc.PrefabInfo",
  3212. "root": {
  3213. "__id__": 1
  3214. },
  3215. "asset": {
  3216. "__id__": 0
  3217. },
  3218. "fileId": "31n+MqcyBNqqosAUVH6kN6",
  3219. "instance": null,
  3220. "targetOverrides": null,
  3221. "nestedPrefabInstanceRoots": null
  3222. },
  3223. {
  3224. "__type__": "cc.UITransform",
  3225. "_name": "",
  3226. "_objFlags": 0,
  3227. "__editorExtras__": {},
  3228. "node": {
  3229. "__id__": 66
  3230. },
  3231. "_enabled": true,
  3232. "__prefab": {
  3233. "__id__": 128
  3234. },
  3235. "_contentSize": {
  3236. "__type__": "cc.Size",
  3237. "width": 100,
  3238. "height": 100
  3239. },
  3240. "_anchorPoint": {
  3241. "__type__": "cc.Vec2",
  3242. "x": 0.5,
  3243. "y": 0.5
  3244. },
  3245. "_id": ""
  3246. },
  3247. {
  3248. "__type__": "cc.CompPrefabInfo",
  3249. "fileId": "64+aEG5ltK7a1qzCd3TrNi"
  3250. },
  3251. {
  3252. "__type__": "cc.Layout",
  3253. "_name": "",
  3254. "_objFlags": 0,
  3255. "__editorExtras__": {},
  3256. "node": {
  3257. "__id__": 66
  3258. },
  3259. "_enabled": true,
  3260. "__prefab": {
  3261. "__id__": 130
  3262. },
  3263. "_resizeMode": 0,
  3264. "_layoutType": 1,
  3265. "_cellSize": {
  3266. "__type__": "cc.Size",
  3267. "width": 40,
  3268. "height": 40
  3269. },
  3270. "_startAxis": 0,
  3271. "_paddingLeft": 0,
  3272. "_paddingRight": 0,
  3273. "_paddingTop": 0,
  3274. "_paddingBottom": 0,
  3275. "_spacingX": 30,
  3276. "_spacingY": 0,
  3277. "_verticalDirection": 1,
  3278. "_horizontalDirection": 0,
  3279. "_constraint": 0,
  3280. "_constraintNum": 2,
  3281. "_affectedByScale": false,
  3282. "_isAlign": false,
  3283. "_id": ""
  3284. },
  3285. {
  3286. "__type__": "cc.CompPrefabInfo",
  3287. "fileId": "52CtSPgI9N/7vzBFjC8zb8"
  3288. },
  3289. {
  3290. "__type__": "cc.Widget",
  3291. "_name": "",
  3292. "_objFlags": 0,
  3293. "__editorExtras__": {},
  3294. "node": {
  3295. "__id__": 66
  3296. },
  3297. "_enabled": true,
  3298. "__prefab": {
  3299. "__id__": 132
  3300. },
  3301. "_alignFlags": 20,
  3302. "_target": null,
  3303. "_left": 0,
  3304. "_right": 0,
  3305. "_top": 0,
  3306. "_bottom": -707.756,
  3307. "_horizontalCenter": -315.054,
  3308. "_verticalCenter": 0,
  3309. "_isAbsLeft": true,
  3310. "_isAbsRight": true,
  3311. "_isAbsTop": true,
  3312. "_isAbsBottom": true,
  3313. "_isAbsHorizontalCenter": true,
  3314. "_isAbsVerticalCenter": true,
  3315. "_originalWidth": 0,
  3316. "_originalHeight": 0,
  3317. "_alignMode": 2,
  3318. "_lockFlags": 0,
  3319. "_id": ""
  3320. },
  3321. {
  3322. "__type__": "cc.CompPrefabInfo",
  3323. "fileId": "97hwrk97tE557cCtXFjZvy"
  3324. },
  3325. {
  3326. "__type__": "cc.PrefabInfo",
  3327. "root": {
  3328. "__id__": 1
  3329. },
  3330. "asset": {
  3331. "__id__": 0
  3332. },
  3333. "fileId": "062U0Rj1ZCn6KhYUvhunwH",
  3334. "instance": null,
  3335. "targetOverrides": null,
  3336. "nestedPrefabInstanceRoots": null
  3337. },
  3338. {
  3339. "__type__": "cc.UITransform",
  3340. "_name": "",
  3341. "_objFlags": 0,
  3342. "__editorExtras__": {},
  3343. "node": {
  3344. "__id__": 1
  3345. },
  3346. "_enabled": true,
  3347. "__prefab": {
  3348. "__id__": 135
  3349. },
  3350. "_contentSize": {
  3351. "__type__": "cc.Size",
  3352. "width": 100,
  3353. "height": 100
  3354. },
  3355. "_anchorPoint": {
  3356. "__type__": "cc.Vec2",
  3357. "x": 0.5,
  3358. "y": 0.5
  3359. },
  3360. "_id": ""
  3361. },
  3362. {
  3363. "__type__": "cc.CompPrefabInfo",
  3364. "fileId": "b2nMNjVHlIQ7pWti9Wi07t"
  3365. },
  3366. {
  3367. "__type__": "e3f72nzJUVGJo/WY8fbriTs",
  3368. "_name": "",
  3369. "_objFlags": 0,
  3370. "__editorExtras__": {},
  3371. "node": {
  3372. "__id__": 1
  3373. },
  3374. "_enabled": true,
  3375. "__prefab": {
  3376. "__id__": 137
  3377. },
  3378. "Pause_Btn": {
  3379. "__id__": 7
  3380. },
  3381. "Rules_Btn": {
  3382. "__id__": 17
  3383. },
  3384. "Level": {
  3385. "__id__": 25
  3386. },
  3387. "Remain_Cube_Des": {
  3388. "__id__": 40
  3389. },
  3390. "Count_Down_Des": {
  3391. "__id__": 58
  3392. },
  3393. "Eliminate_Btn": {
  3394. "__id__": 84
  3395. },
  3396. "Shuffle_Btn": {
  3397. "__id__": 104
  3398. },
  3399. "Empty_Btn": {
  3400. "__id__": 124
  3401. },
  3402. "_id": ""
  3403. },
  3404. {
  3405. "__type__": "cc.CompPrefabInfo",
  3406. "fileId": "9eW0KURjBJ56ICeFliZj/d"
  3407. },
  3408. {
  3409. "__type__": "cc.Widget",
  3410. "_name": "",
  3411. "_objFlags": 0,
  3412. "__editorExtras__": {},
  3413. "node": {
  3414. "__id__": 1
  3415. },
  3416. "_enabled": true,
  3417. "__prefab": {
  3418. "__id__": 139
  3419. },
  3420. "_alignFlags": 45,
  3421. "_target": null,
  3422. "_left": 325,
  3423. "_right": 325,
  3424. "_top": 767,
  3425. "_bottom": 767,
  3426. "_horizontalCenter": 0,
  3427. "_verticalCenter": 0,
  3428. "_isAbsLeft": true,
  3429. "_isAbsRight": true,
  3430. "_isAbsTop": true,
  3431. "_isAbsBottom": true,
  3432. "_isAbsHorizontalCenter": true,
  3433. "_isAbsVerticalCenter": true,
  3434. "_originalWidth": 100,
  3435. "_originalHeight": 100,
  3436. "_alignMode": 2,
  3437. "_lockFlags": 0,
  3438. "_id": ""
  3439. },
  3440. {
  3441. "__type__": "cc.CompPrefabInfo",
  3442. "fileId": "86rm1CsHVIIIPV//I2PaaZ"
  3443. },
  3444. {
  3445. "__type__": "cc.PrefabInfo",
  3446. "root": {
  3447. "__id__": 1
  3448. },
  3449. "asset": {
  3450. "__id__": 0
  3451. },
  3452. "fileId": "6eTfbVN9VITrbnf1hrA70Z",
  3453. "instance": null,
  3454. "targetOverrides": null
  3455. }
  3456. ]