Settings.prefab 60 KB

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