settingUI.prefab 73 KB

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