a2fa398d-c489-4259-be65-4edb66cc05e1.json 57 KB

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