RoleResetUI.prefab 67 KB

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