setting.prefab 55 KB

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