Settings.prefab 62 KB

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