setting.prefab 59 KB

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