RoleResetUI.prefab 68 KB

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