Settings.prefab 69 KB

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