setting.prefab 54 KB

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