EachWindowItem.prefab 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676
  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. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "EachWindowItem",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 12
  24. },
  25. {
  26. "__id__": 36
  27. },
  28. {
  29. "__id__": 56
  30. },
  31. {
  32. "__id__": 78
  33. },
  34. {
  35. "__id__": 91
  36. },
  37. {
  38. "__id__": 104
  39. },
  40. {
  41. "__id__": 117
  42. }
  43. ],
  44. "_active": true,
  45. "_components": [
  46. {
  47. "__id__": 123
  48. },
  49. {
  50. "__id__": 125
  51. }
  52. ],
  53. "_prefab": {
  54. "__id__": 127
  55. },
  56. "_lpos": {
  57. "__type__": "cc.Vec3",
  58. "x": 0,
  59. "y": 0,
  60. "z": 0
  61. },
  62. "_lrot": {
  63. "__type__": "cc.Quat",
  64. "x": 0,
  65. "y": 0,
  66. "z": 0,
  67. "w": 1
  68. },
  69. "_lscale": {
  70. "__type__": "cc.Vec3",
  71. "x": 1,
  72. "y": 1,
  73. "z": 1
  74. },
  75. "_layer": 1073741824,
  76. "_euler": {
  77. "__type__": "cc.Vec3",
  78. "x": 0,
  79. "y": 0,
  80. "z": 0
  81. },
  82. "_id": ""
  83. },
  84. {
  85. "__type__": "cc.Node",
  86. "_name": "背景",
  87. "_objFlags": 0,
  88. "_parent": {
  89. "__id__": 1
  90. },
  91. "_children": [],
  92. "_active": true,
  93. "_components": [
  94. {
  95. "__id__": 3
  96. },
  97. {
  98. "__id__": 5
  99. },
  100. {
  101. "__id__": 7
  102. },
  103. {
  104. "__id__": 9
  105. }
  106. ],
  107. "_prefab": {
  108. "__id__": 11
  109. },
  110. "_lpos": {
  111. "__type__": "cc.Vec3",
  112. "x": 0,
  113. "y": 0,
  114. "z": 0
  115. },
  116. "_lrot": {
  117. "__type__": "cc.Quat",
  118. "x": 0,
  119. "y": 0,
  120. "z": 0,
  121. "w": 1
  122. },
  123. "_lscale": {
  124. "__type__": "cc.Vec3",
  125. "x": 1,
  126. "y": 1,
  127. "z": 1
  128. },
  129. "_layer": 33554432,
  130. "_euler": {
  131. "__type__": "cc.Vec3",
  132. "x": 0,
  133. "y": 0,
  134. "z": 0
  135. },
  136. "_id": ""
  137. },
  138. {
  139. "__type__": "cc.UITransform",
  140. "_name": "",
  141. "_objFlags": 0,
  142. "node": {
  143. "__id__": 2
  144. },
  145. "_enabled": true,
  146. "__prefab": {
  147. "__id__": 4
  148. },
  149. "_priority": 0,
  150. "_contentSize": {
  151. "__type__": "cc.Size",
  152. "width": 590,
  153. "height": 130
  154. },
  155. "_anchorPoint": {
  156. "__type__": "cc.Vec2",
  157. "x": 0,
  158. "y": 1
  159. },
  160. "_id": ""
  161. },
  162. {
  163. "__type__": "cc.CompPrefabInfo",
  164. "fileId": "desy4fA05Jp5VRs1yjcULw"
  165. },
  166. {
  167. "__type__": "cc.Sprite",
  168. "_name": "",
  169. "_objFlags": 0,
  170. "node": {
  171. "__id__": 2
  172. },
  173. "_enabled": true,
  174. "__prefab": {
  175. "__id__": 6
  176. },
  177. "_visFlags": 0,
  178. "_customMaterial": null,
  179. "_srcBlendFactor": 2,
  180. "_dstBlendFactor": 4,
  181. "_color": {
  182. "__type__": "cc.Color",
  183. "r": 255,
  184. "g": 255,
  185. "b": 255,
  186. "a": 255
  187. },
  188. "_spriteFrame": {
  189. "__uuid__": "06ca670f-709c-4192-8f05-fe2b606ba747@f9941"
  190. },
  191. "_type": 1,
  192. "_fillType": 0,
  193. "_sizeMode": 0,
  194. "_fillCenter": {
  195. "__type__": "cc.Vec2",
  196. "x": 0,
  197. "y": 0
  198. },
  199. "_fillStart": 0,
  200. "_fillRange": 0,
  201. "_isTrimmedMode": true,
  202. "_useGrayscale": false,
  203. "_atlas": null,
  204. "_id": ""
  205. },
  206. {
  207. "__type__": "cc.CompPrefabInfo",
  208. "fileId": "f8AvFG++pDvJlLDoP6j2VU"
  209. },
  210. {
  211. "__type__": "f86dc0LYslAwo2u7aFuvmet",
  212. "_name": "",
  213. "_objFlags": 0,
  214. "node": {
  215. "__id__": 2
  216. },
  217. "_enabled": true,
  218. "__prefab": {
  219. "__id__": 8
  220. },
  221. "_id": ""
  222. },
  223. {
  224. "__type__": "cc.CompPrefabInfo",
  225. "fileId": "866kxIeCNO1Lv/JvXz1a1o"
  226. },
  227. {
  228. "__type__": "cc.Widget",
  229. "_name": "",
  230. "_objFlags": 0,
  231. "node": {
  232. "__id__": 2
  233. },
  234. "_enabled": true,
  235. "__prefab": {
  236. "__id__": 10
  237. },
  238. "_alignFlags": 45,
  239. "_target": null,
  240. "_left": 0,
  241. "_right": 0,
  242. "_top": 0,
  243. "_bottom": 0,
  244. "_horizontalCenter": 0,
  245. "_verticalCenter": 0,
  246. "_isAbsLeft": true,
  247. "_isAbsRight": true,
  248. "_isAbsTop": true,
  249. "_isAbsBottom": true,
  250. "_isAbsHorizontalCenter": true,
  251. "_isAbsVerticalCenter": true,
  252. "_originalWidth": 690,
  253. "_originalHeight": 130,
  254. "_alignMode": 2,
  255. "_lockFlags": 0,
  256. "_id": ""
  257. },
  258. {
  259. "__type__": "cc.CompPrefabInfo",
  260. "fileId": "8cWyNtd1NMgK1v8prE6Q32"
  261. },
  262. {
  263. "__type__": "cc.PrefabInfo",
  264. "root": {
  265. "__id__": 1
  266. },
  267. "asset": {
  268. "__id__": 0
  269. },
  270. "fileId": "64l2c+B9JBB4m5goTIZwvi"
  271. },
  272. {
  273. "__type__": "cc.Node",
  274. "_name": "图标背景",
  275. "_objFlags": 0,
  276. "_parent": {
  277. "__id__": 1
  278. },
  279. "_children": [
  280. {
  281. "__id__": 13
  282. },
  283. {
  284. "__id__": 25
  285. }
  286. ],
  287. "_active": true,
  288. "_components": [
  289. {
  290. "__id__": 31
  291. },
  292. {
  293. "__id__": 33
  294. }
  295. ],
  296. "_prefab": {
  297. "__id__": 35
  298. },
  299. "_lpos": {
  300. "__type__": "cc.Vec3",
  301. "x": 60.044,
  302. "y": -65,
  303. "z": 0
  304. },
  305. "_lrot": {
  306. "__type__": "cc.Quat",
  307. "x": 0,
  308. "y": 0,
  309. "z": 0,
  310. "w": 1
  311. },
  312. "_lscale": {
  313. "__type__": "cc.Vec3",
  314. "x": 1,
  315. "y": 1,
  316. "z": 1
  317. },
  318. "_layer": 33554432,
  319. "_euler": {
  320. "__type__": "cc.Vec3",
  321. "x": 0,
  322. "y": 0,
  323. "z": 0
  324. },
  325. "_id": ""
  326. },
  327. {
  328. "__type__": "cc.Node",
  329. "_name": "Mask",
  330. "_objFlags": 0,
  331. "_parent": {
  332. "__id__": 12
  333. },
  334. "_children": [
  335. {
  336. "__id__": 14
  337. }
  338. ],
  339. "_active": true,
  340. "_components": [
  341. {
  342. "__id__": 20
  343. },
  344. {
  345. "__id__": 22
  346. }
  347. ],
  348. "_prefab": {
  349. "__id__": 24
  350. },
  351. "_lpos": {
  352. "__type__": "cc.Vec3",
  353. "x": 0,
  354. "y": 0,
  355. "z": 0
  356. },
  357. "_lrot": {
  358. "__type__": "cc.Quat",
  359. "x": 0,
  360. "y": 0,
  361. "z": 0,
  362. "w": 1
  363. },
  364. "_lscale": {
  365. "__type__": "cc.Vec3",
  366. "x": 1,
  367. "y": 1,
  368. "z": 1
  369. },
  370. "_layer": 33554432,
  371. "_euler": {
  372. "__type__": "cc.Vec3",
  373. "x": 0,
  374. "y": 0,
  375. "z": 0
  376. },
  377. "_id": ""
  378. },
  379. {
  380. "__type__": "cc.Node",
  381. "_name": "图标",
  382. "_objFlags": 0,
  383. "_parent": {
  384. "__id__": 13
  385. },
  386. "_children": [],
  387. "_active": true,
  388. "_components": [
  389. {
  390. "__id__": 15
  391. },
  392. {
  393. "__id__": 17
  394. }
  395. ],
  396. "_prefab": {
  397. "__id__": 19
  398. },
  399. "_lpos": {
  400. "__type__": "cc.Vec3",
  401. "x": 0,
  402. "y": 0,
  403. "z": 0
  404. },
  405. "_lrot": {
  406. "__type__": "cc.Quat",
  407. "x": 0,
  408. "y": 0,
  409. "z": 0,
  410. "w": 1
  411. },
  412. "_lscale": {
  413. "__type__": "cc.Vec3",
  414. "x": 1,
  415. "y": 1,
  416. "z": 1
  417. },
  418. "_layer": 33554432,
  419. "_euler": {
  420. "__type__": "cc.Vec3",
  421. "x": 0,
  422. "y": 0,
  423. "z": 0
  424. },
  425. "_id": ""
  426. },
  427. {
  428. "__type__": "cc.UITransform",
  429. "_name": "",
  430. "_objFlags": 0,
  431. "node": {
  432. "__id__": 14
  433. },
  434. "_enabled": true,
  435. "__prefab": {
  436. "__id__": 16
  437. },
  438. "_priority": 0,
  439. "_contentSize": {
  440. "__type__": "cc.Size",
  441. "width": 81,
  442. "height": 101
  443. },
  444. "_anchorPoint": {
  445. "__type__": "cc.Vec2",
  446. "x": 0.5,
  447. "y": 0.5
  448. },
  449. "_id": ""
  450. },
  451. {
  452. "__type__": "cc.CompPrefabInfo",
  453. "fileId": "21hZNIZe9BPac/NdLaJBPH"
  454. },
  455. {
  456. "__type__": "cc.Sprite",
  457. "_name": "",
  458. "_objFlags": 0,
  459. "node": {
  460. "__id__": 14
  461. },
  462. "_enabled": true,
  463. "__prefab": {
  464. "__id__": 18
  465. },
  466. "_visFlags": 0,
  467. "_customMaterial": null,
  468. "_srcBlendFactor": 2,
  469. "_dstBlendFactor": 4,
  470. "_color": {
  471. "__type__": "cc.Color",
  472. "r": 255,
  473. "g": 255,
  474. "b": 255,
  475. "a": 255
  476. },
  477. "_spriteFrame": {
  478. "__uuid__": "76c7d3e8-3913-43fa-99a1-ff944c7046f1@f9941"
  479. },
  480. "_type": 0,
  481. "_fillType": 0,
  482. "_sizeMode": 1,
  483. "_fillCenter": {
  484. "__type__": "cc.Vec2",
  485. "x": 0,
  486. "y": 0
  487. },
  488. "_fillStart": 0,
  489. "_fillRange": 0,
  490. "_isTrimmedMode": true,
  491. "_useGrayscale": false,
  492. "_atlas": null,
  493. "_id": ""
  494. },
  495. {
  496. "__type__": "cc.CompPrefabInfo",
  497. "fileId": "baS8olZmdDbKnhhYnZkHd0"
  498. },
  499. {
  500. "__type__": "cc.PrefabInfo",
  501. "root": {
  502. "__id__": 1
  503. },
  504. "asset": {
  505. "__id__": 0
  506. },
  507. "fileId": "26weqR2iFJB5nwGKWUBDm+"
  508. },
  509. {
  510. "__type__": "cc.UITransform",
  511. "_name": "",
  512. "_objFlags": 0,
  513. "node": {
  514. "__id__": 13
  515. },
  516. "_enabled": true,
  517. "__prefab": {
  518. "__id__": 21
  519. },
  520. "_priority": 0,
  521. "_contentSize": {
  522. "__type__": "cc.Size",
  523. "width": 85,
  524. "height": 85
  525. },
  526. "_anchorPoint": {
  527. "__type__": "cc.Vec2",
  528. "x": 0.5,
  529. "y": 0.5
  530. },
  531. "_id": ""
  532. },
  533. {
  534. "__type__": "cc.CompPrefabInfo",
  535. "fileId": "c2NaCiOXhCOIXcPrrneNyr"
  536. },
  537. {
  538. "__type__": "cc.Mask",
  539. "_name": "",
  540. "_objFlags": 0,
  541. "node": {
  542. "__id__": 13
  543. },
  544. "_enabled": true,
  545. "__prefab": {
  546. "__id__": 23
  547. },
  548. "_visFlags": 0,
  549. "_customMaterial": null,
  550. "_srcBlendFactor": 2,
  551. "_dstBlendFactor": 4,
  552. "_color": {
  553. "__type__": "cc.Color",
  554. "r": 255,
  555. "g": 255,
  556. "b": 255,
  557. "a": 255
  558. },
  559. "_type": 1,
  560. "_inverted": false,
  561. "_segments": 64,
  562. "_spriteFrame": null,
  563. "_alphaThreshold": 0.1,
  564. "_id": ""
  565. },
  566. {
  567. "__type__": "cc.CompPrefabInfo",
  568. "fileId": "04zOCovStGxa0AEVIkDXtx"
  569. },
  570. {
  571. "__type__": "cc.PrefabInfo",
  572. "root": {
  573. "__id__": 1
  574. },
  575. "asset": {
  576. "__id__": 0
  577. },
  578. "fileId": "69Ijpv8W9BH5OuuO2DBzBI"
  579. },
  580. {
  581. "__type__": "cc.Node",
  582. "_name": "图标",
  583. "_objFlags": 0,
  584. "_parent": {
  585. "__id__": 12
  586. },
  587. "_children": [],
  588. "_active": true,
  589. "_components": [
  590. {
  591. "__id__": 26
  592. },
  593. {
  594. "__id__": 28
  595. }
  596. ],
  597. "_prefab": {
  598. "__id__": 30
  599. },
  600. "_lpos": {
  601. "__type__": "cc.Vec3",
  602. "x": 0,
  603. "y": 0,
  604. "z": 0
  605. },
  606. "_lrot": {
  607. "__type__": "cc.Quat",
  608. "x": 0,
  609. "y": 0,
  610. "z": 0,
  611. "w": 1
  612. },
  613. "_lscale": {
  614. "__type__": "cc.Vec3",
  615. "x": 1,
  616. "y": 1,
  617. "z": 1
  618. },
  619. "_layer": 33554432,
  620. "_euler": {
  621. "__type__": "cc.Vec3",
  622. "x": 0,
  623. "y": 0,
  624. "z": 0
  625. },
  626. "_id": ""
  627. },
  628. {
  629. "__type__": "cc.UITransform",
  630. "_name": "",
  631. "_objFlags": 0,
  632. "node": {
  633. "__id__": 25
  634. },
  635. "_enabled": true,
  636. "__prefab": {
  637. "__id__": 27
  638. },
  639. "_priority": 0,
  640. "_contentSize": {
  641. "__type__": "cc.Size",
  642. "width": 95,
  643. "height": 95
  644. },
  645. "_anchorPoint": {
  646. "__type__": "cc.Vec2",
  647. "x": 0.5,
  648. "y": 0.5
  649. },
  650. "_id": ""
  651. },
  652. {
  653. "__type__": "cc.CompPrefabInfo",
  654. "fileId": "a0MLLlmwZDvYVJ3e3o/QbK"
  655. },
  656. {
  657. "__type__": "cc.Sprite",
  658. "_name": "",
  659. "_objFlags": 0,
  660. "node": {
  661. "__id__": 25
  662. },
  663. "_enabled": true,
  664. "__prefab": {
  665. "__id__": 29
  666. },
  667. "_visFlags": 0,
  668. "_customMaterial": null,
  669. "_srcBlendFactor": 2,
  670. "_dstBlendFactor": 4,
  671. "_color": {
  672. "__type__": "cc.Color",
  673. "r": 255,
  674. "g": 255,
  675. "b": 255,
  676. "a": 255
  677. },
  678. "_spriteFrame": {
  679. "__uuid__": "05a89957-8077-40ff-a290-01b282d093dd@f9941"
  680. },
  681. "_type": 0,
  682. "_fillType": 0,
  683. "_sizeMode": 1,
  684. "_fillCenter": {
  685. "__type__": "cc.Vec2",
  686. "x": 0,
  687. "y": 0
  688. },
  689. "_fillStart": 0,
  690. "_fillRange": 0,
  691. "_isTrimmedMode": true,
  692. "_useGrayscale": false,
  693. "_atlas": null,
  694. "_id": ""
  695. },
  696. {
  697. "__type__": "cc.CompPrefabInfo",
  698. "fileId": "c5d0h4x4RAF7UgDYLQjwdt"
  699. },
  700. {
  701. "__type__": "cc.PrefabInfo",
  702. "root": {
  703. "__id__": 1
  704. },
  705. "asset": {
  706. "__id__": 0
  707. },
  708. "fileId": "86EPKh6RpGzafVKkdAfJOr"
  709. },
  710. {
  711. "__type__": "cc.UITransform",
  712. "_name": "",
  713. "_objFlags": 0,
  714. "node": {
  715. "__id__": 12
  716. },
  717. "_enabled": true,
  718. "__prefab": {
  719. "__id__": 32
  720. },
  721. "_priority": 0,
  722. "_contentSize": {
  723. "__type__": "cc.Size",
  724. "width": 100,
  725. "height": 100
  726. },
  727. "_anchorPoint": {
  728. "__type__": "cc.Vec2",
  729. "x": 0.5,
  730. "y": 0.5
  731. },
  732. "_id": ""
  733. },
  734. {
  735. "__type__": "cc.CompPrefabInfo",
  736. "fileId": "bakBJCPPZLC45VzH7nOLmU"
  737. },
  738. {
  739. "__type__": "cc.Widget",
  740. "_name": "",
  741. "_objFlags": 0,
  742. "node": {
  743. "__id__": 12
  744. },
  745. "_enabled": true,
  746. "__prefab": {
  747. "__id__": 34
  748. },
  749. "_alignFlags": 10,
  750. "_target": null,
  751. "_left": 10.043999999999997,
  752. "_right": 0,
  753. "_top": 0,
  754. "_bottom": 0,
  755. "_horizontalCenter": 0,
  756. "_verticalCenter": 0,
  757. "_isAbsLeft": true,
  758. "_isAbsRight": true,
  759. "_isAbsTop": true,
  760. "_isAbsBottom": true,
  761. "_isAbsHorizontalCenter": true,
  762. "_isAbsVerticalCenter": true,
  763. "_originalWidth": 0,
  764. "_originalHeight": 0,
  765. "_alignMode": 2,
  766. "_lockFlags": 0,
  767. "_id": ""
  768. },
  769. {
  770. "__type__": "cc.CompPrefabInfo",
  771. "fileId": "47C4Q4SktG9KwbNVIXWmzu"
  772. },
  773. {
  774. "__type__": "cc.PrefabInfo",
  775. "root": {
  776. "__id__": 1
  777. },
  778. "asset": {
  779. "__id__": 0
  780. },
  781. "fileId": "e3IyGF0qVAY4aBEq8yq8GI"
  782. },
  783. {
  784. "__type__": "cc.Node",
  785. "_name": "文本",
  786. "_objFlags": 0,
  787. "_parent": {
  788. "__id__": 1
  789. },
  790. "_children": [
  791. {
  792. "__id__": 37
  793. },
  794. {
  795. "__id__": 43
  796. }
  797. ],
  798. "_active": true,
  799. "_components": [
  800. {
  801. "__id__": 49
  802. },
  803. {
  804. "__id__": 51
  805. },
  806. {
  807. "__id__": 53
  808. }
  809. ],
  810. "_prefab": {
  811. "__id__": 55
  812. },
  813. "_lpos": {
  814. "__type__": "cc.Vec3",
  815. "x": 263.158,
  816. "y": -65,
  817. "z": 0
  818. },
  819. "_lrot": {
  820. "__type__": "cc.Quat",
  821. "x": 0,
  822. "y": 0,
  823. "z": 0,
  824. "w": 1
  825. },
  826. "_lscale": {
  827. "__type__": "cc.Vec3",
  828. "x": 1,
  829. "y": 1,
  830. "z": 1
  831. },
  832. "_layer": 33554432,
  833. "_euler": {
  834. "__type__": "cc.Vec3",
  835. "x": 0,
  836. "y": 0,
  837. "z": 0
  838. },
  839. "_id": ""
  840. },
  841. {
  842. "__type__": "cc.Node",
  843. "_name": "名称",
  844. "_objFlags": 0,
  845. "_parent": {
  846. "__id__": 36
  847. },
  848. "_children": [],
  849. "_active": true,
  850. "_components": [
  851. {
  852. "__id__": 38
  853. },
  854. {
  855. "__id__": 40
  856. }
  857. ],
  858. "_prefab": {
  859. "__id__": 42
  860. },
  861. "_lpos": {
  862. "__type__": "cc.Vec3",
  863. "x": 0,
  864. "y": 15.119999999999997,
  865. "z": 0
  866. },
  867. "_lrot": {
  868. "__type__": "cc.Quat",
  869. "x": 0,
  870. "y": 0,
  871. "z": 0,
  872. "w": 1
  873. },
  874. "_lscale": {
  875. "__type__": "cc.Vec3",
  876. "x": 1,
  877. "y": 1,
  878. "z": 1
  879. },
  880. "_layer": 33554432,
  881. "_euler": {
  882. "__type__": "cc.Vec3",
  883. "x": 0,
  884. "y": 0,
  885. "z": 0
  886. },
  887. "_id": ""
  888. },
  889. {
  890. "__type__": "cc.UITransform",
  891. "_name": "",
  892. "_objFlags": 0,
  893. "node": {
  894. "__id__": 37
  895. },
  896. "_enabled": true,
  897. "__prefab": {
  898. "__id__": 39
  899. },
  900. "_priority": 0,
  901. "_contentSize": {
  902. "__type__": "cc.Size",
  903. "width": 280,
  904. "height": 37.8
  905. },
  906. "_anchorPoint": {
  907. "__type__": "cc.Vec2",
  908. "x": 0.5,
  909. "y": 0.5
  910. },
  911. "_id": ""
  912. },
  913. {
  914. "__type__": "cc.CompPrefabInfo",
  915. "fileId": "84JWPCWsZFJKIQ0t3+zf+W"
  916. },
  917. {
  918. "__type__": "cc.Label",
  919. "_name": "",
  920. "_objFlags": 0,
  921. "node": {
  922. "__id__": 37
  923. },
  924. "_enabled": true,
  925. "__prefab": {
  926. "__id__": 41
  927. },
  928. "_visFlags": 0,
  929. "_customMaterial": null,
  930. "_srcBlendFactor": 2,
  931. "_dstBlendFactor": 4,
  932. "_color": {
  933. "__type__": "cc.Color",
  934. "r": 183,
  935. "g": 51,
  936. "b": 31,
  937. "a": 255
  938. },
  939. "_string": " 游戏名字",
  940. "_horizontalAlign": 0,
  941. "_verticalAlign": 1,
  942. "_actualFontSize": 30,
  943. "_fontSize": 30,
  944. "_fontFamily": "Arial",
  945. "_lineHeight": 30,
  946. "_overflow": 3,
  947. "_enableWrapText": true,
  948. "_font": null,
  949. "_isSystemFontUsed": true,
  950. "_isItalic": false,
  951. "_isBold": true,
  952. "_isUnderline": false,
  953. "_underlineHeight": 2,
  954. "_cacheMode": 0,
  955. "_id": ""
  956. },
  957. {
  958. "__type__": "cc.CompPrefabInfo",
  959. "fileId": "e0InYPP8dAob+OrKhPrCPv"
  960. },
  961. {
  962. "__type__": "cc.PrefabInfo",
  963. "root": {
  964. "__id__": 1
  965. },
  966. "asset": {
  967. "__id__": 0
  968. },
  969. "fileId": "46JQxS+KJJ7pNRx3O5EWWq"
  970. },
  971. {
  972. "__type__": "cc.Node",
  973. "_name": "描述",
  974. "_objFlags": 0,
  975. "_parent": {
  976. "__id__": 36
  977. },
  978. "_children": [],
  979. "_active": true,
  980. "_components": [
  981. {
  982. "__id__": 44
  983. },
  984. {
  985. "__id__": 46
  986. }
  987. ],
  988. "_prefab": {
  989. "__id__": 48
  990. },
  991. "_lpos": {
  992. "__type__": "cc.Vec3",
  993. "x": 0,
  994. "y": -28.900000000000002,
  995. "z": 0
  996. },
  997. "_lrot": {
  998. "__type__": "cc.Quat",
  999. "x": 0,
  1000. "y": 0,
  1001. "z": 0,
  1002. "w": 1
  1003. },
  1004. "_lscale": {
  1005. "__type__": "cc.Vec3",
  1006. "x": 1,
  1007. "y": 1,
  1008. "z": 1
  1009. },
  1010. "_layer": 33554432,
  1011. "_euler": {
  1012. "__type__": "cc.Vec3",
  1013. "x": 0,
  1014. "y": 0,
  1015. "z": 0
  1016. },
  1017. "_id": ""
  1018. },
  1019. {
  1020. "__type__": "cc.UITransform",
  1021. "_name": "",
  1022. "_objFlags": 0,
  1023. "node": {
  1024. "__id__": 43
  1025. },
  1026. "_enabled": true,
  1027. "__prefab": {
  1028. "__id__": 45
  1029. },
  1030. "_priority": 0,
  1031. "_contentSize": {
  1032. "__type__": "cc.Size",
  1033. "width": 280,
  1034. "height": 30.240000000000002
  1035. },
  1036. "_anchorPoint": {
  1037. "__type__": "cc.Vec2",
  1038. "x": 0.5,
  1039. "y": 0.5
  1040. },
  1041. "_id": ""
  1042. },
  1043. {
  1044. "__type__": "cc.CompPrefabInfo",
  1045. "fileId": "edHgD+8DVJFZZjenUOlwY8"
  1046. },
  1047. {
  1048. "__type__": "cc.Label",
  1049. "_name": "",
  1050. "_objFlags": 0,
  1051. "node": {
  1052. "__id__": 43
  1053. },
  1054. "_enabled": true,
  1055. "__prefab": {
  1056. "__id__": 47
  1057. },
  1058. "_visFlags": 0,
  1059. "_customMaterial": null,
  1060. "_srcBlendFactor": 2,
  1061. "_dstBlendFactor": 4,
  1062. "_color": {
  1063. "__type__": "cc.Color",
  1064. "r": 183,
  1065. "g": 102,
  1066. "b": 80,
  1067. "a": 255
  1068. },
  1069. "_string": " 游戏名字",
  1070. "_horizontalAlign": 0,
  1071. "_verticalAlign": 1,
  1072. "_actualFontSize": 24,
  1073. "_fontSize": 24,
  1074. "_fontFamily": "Arial",
  1075. "_lineHeight": 24,
  1076. "_overflow": 3,
  1077. "_enableWrapText": true,
  1078. "_font": null,
  1079. "_isSystemFontUsed": true,
  1080. "_isItalic": false,
  1081. "_isBold": false,
  1082. "_isUnderline": false,
  1083. "_underlineHeight": 2,
  1084. "_cacheMode": 0,
  1085. "_id": ""
  1086. },
  1087. {
  1088. "__type__": "cc.CompPrefabInfo",
  1089. "fileId": "4cq/alaFtKkrgVSqBPgIUd"
  1090. },
  1091. {
  1092. "__type__": "cc.PrefabInfo",
  1093. "root": {
  1094. "__id__": 1
  1095. },
  1096. "asset": {
  1097. "__id__": 0
  1098. },
  1099. "fileId": "c94fPqZI5Oupm7Gtd8pk5k"
  1100. },
  1101. {
  1102. "__type__": "cc.UITransform",
  1103. "_name": "",
  1104. "_objFlags": 0,
  1105. "node": {
  1106. "__id__": 36
  1107. },
  1108. "_enabled": true,
  1109. "__prefab": {
  1110. "__id__": 50
  1111. },
  1112. "_priority": 0,
  1113. "_contentSize": {
  1114. "__type__": "cc.Size",
  1115. "width": 280,
  1116. "height": 88.03999999999999
  1117. },
  1118. "_anchorPoint": {
  1119. "__type__": "cc.Vec2",
  1120. "x": 0.5,
  1121. "y": 0.5
  1122. },
  1123. "_id": ""
  1124. },
  1125. {
  1126. "__type__": "cc.CompPrefabInfo",
  1127. "fileId": "60qwJ8h+xC5Jy2BtOU3CuQ"
  1128. },
  1129. {
  1130. "__type__": "cc.Layout",
  1131. "_name": "",
  1132. "_objFlags": 0,
  1133. "node": {
  1134. "__id__": 36
  1135. },
  1136. "_enabled": true,
  1137. "__prefab": {
  1138. "__id__": 52
  1139. },
  1140. "_resizeMode": 1,
  1141. "_layoutType": 2,
  1142. "_cellSize": {
  1143. "__type__": "cc.Size",
  1144. "width": 40,
  1145. "height": 40
  1146. },
  1147. "_startAxis": 0,
  1148. "_paddingLeft": 0,
  1149. "_paddingRight": 0,
  1150. "_paddingTop": 10,
  1151. "_paddingBottom": 0,
  1152. "_spacingX": 0,
  1153. "_spacingY": 10,
  1154. "_verticalDirection": 1,
  1155. "_horizontalDirection": 0,
  1156. "_constraint": 0,
  1157. "_constraintNum": 2,
  1158. "_affectedByScale": false,
  1159. "_isAlign": true,
  1160. "_id": ""
  1161. },
  1162. {
  1163. "__type__": "cc.CompPrefabInfo",
  1164. "fileId": "7acaMxY1NFAJ7BIWAx4rau"
  1165. },
  1166. {
  1167. "__type__": "cc.Widget",
  1168. "_name": "",
  1169. "_objFlags": 0,
  1170. "node": {
  1171. "__id__": 36
  1172. },
  1173. "_enabled": true,
  1174. "__prefab": {
  1175. "__id__": 54
  1176. },
  1177. "_alignFlags": 10,
  1178. "_target": null,
  1179. "_left": 123.15800000000002,
  1180. "_right": 0,
  1181. "_top": 0,
  1182. "_bottom": 0,
  1183. "_horizontalCenter": 0,
  1184. "_verticalCenter": 0,
  1185. "_isAbsLeft": true,
  1186. "_isAbsRight": true,
  1187. "_isAbsTop": true,
  1188. "_isAbsBottom": true,
  1189. "_isAbsHorizontalCenter": true,
  1190. "_isAbsVerticalCenter": true,
  1191. "_originalWidth": 0,
  1192. "_originalHeight": 0,
  1193. "_alignMode": 2,
  1194. "_lockFlags": 0,
  1195. "_id": ""
  1196. },
  1197. {
  1198. "__type__": "cc.CompPrefabInfo",
  1199. "fileId": "4a5+15aLNCmpXv3V7yCS0y"
  1200. },
  1201. {
  1202. "__type__": "cc.PrefabInfo",
  1203. "root": {
  1204. "__id__": 1
  1205. },
  1206. "asset": {
  1207. "__id__": 0
  1208. },
  1209. "fileId": "7fPxgNfYxD34cM1gq0nBe6"
  1210. },
  1211. {
  1212. "__type__": "cc.Node",
  1213. "_name": "下载进度",
  1214. "_objFlags": 0,
  1215. "_parent": {
  1216. "__id__": 1
  1217. },
  1218. "_children": [
  1219. {
  1220. "__id__": 57
  1221. },
  1222. {
  1223. "__id__": 63
  1224. }
  1225. ],
  1226. "_active": true,
  1227. "_components": [
  1228. {
  1229. "__id__": 71
  1230. },
  1231. {
  1232. "__id__": 73
  1233. },
  1234. {
  1235. "__id__": 75
  1236. }
  1237. ],
  1238. "_prefab": {
  1239. "__id__": 77
  1240. },
  1241. "_lpos": {
  1242. "__type__": "cc.Vec3",
  1243. "x": 496.25700000000006,
  1244. "y": -65,
  1245. "z": 0
  1246. },
  1247. "_lrot": {
  1248. "__type__": "cc.Quat",
  1249. "x": 0,
  1250. "y": 0,
  1251. "z": 0,
  1252. "w": 1
  1253. },
  1254. "_lscale": {
  1255. "__type__": "cc.Vec3",
  1256. "x": 1,
  1257. "y": 1,
  1258. "z": 1
  1259. },
  1260. "_layer": 33554432,
  1261. "_euler": {
  1262. "__type__": "cc.Vec3",
  1263. "x": 0,
  1264. "y": 0,
  1265. "z": 0
  1266. },
  1267. "_id": ""
  1268. },
  1269. {
  1270. "__type__": "cc.Node",
  1271. "_name": "progress",
  1272. "_objFlags": 0,
  1273. "_parent": {
  1274. "__id__": 56
  1275. },
  1276. "_children": [],
  1277. "_active": true,
  1278. "_components": [
  1279. {
  1280. "__id__": 58
  1281. },
  1282. {
  1283. "__id__": 60
  1284. }
  1285. ],
  1286. "_prefab": {
  1287. "__id__": 62
  1288. },
  1289. "_lpos": {
  1290. "__type__": "cc.Vec3",
  1291. "x": -80,
  1292. "y": 0,
  1293. "z": 0
  1294. },
  1295. "_lrot": {
  1296. "__type__": "cc.Quat",
  1297. "x": 0,
  1298. "y": 0,
  1299. "z": 0,
  1300. "w": 1
  1301. },
  1302. "_lscale": {
  1303. "__type__": "cc.Vec3",
  1304. "x": 1,
  1305. "y": 1,
  1306. "z": 1
  1307. },
  1308. "_layer": 33554432,
  1309. "_euler": {
  1310. "__type__": "cc.Vec3",
  1311. "x": 0,
  1312. "y": 0,
  1313. "z": 0
  1314. },
  1315. "_id": ""
  1316. },
  1317. {
  1318. "__type__": "cc.UITransform",
  1319. "_name": "",
  1320. "_objFlags": 0,
  1321. "node": {
  1322. "__id__": 57
  1323. },
  1324. "_enabled": true,
  1325. "__prefab": {
  1326. "__id__": 59
  1327. },
  1328. "_priority": 0,
  1329. "_contentSize": {
  1330. "__type__": "cc.Size",
  1331. "width": 160,
  1332. "height": 75
  1333. },
  1334. "_anchorPoint": {
  1335. "__type__": "cc.Vec2",
  1336. "x": 0,
  1337. "y": 0.5
  1338. },
  1339. "_id": ""
  1340. },
  1341. {
  1342. "__type__": "cc.CompPrefabInfo",
  1343. "fileId": "b4ROcAk7NASYydgmlCeHvi"
  1344. },
  1345. {
  1346. "__type__": "cc.Sprite",
  1347. "_name": "",
  1348. "_objFlags": 0,
  1349. "node": {
  1350. "__id__": 57
  1351. },
  1352. "_enabled": true,
  1353. "__prefab": {
  1354. "__id__": 61
  1355. },
  1356. "_visFlags": 0,
  1357. "_customMaterial": null,
  1358. "_srcBlendFactor": 2,
  1359. "_dstBlendFactor": 4,
  1360. "_color": {
  1361. "__type__": "cc.Color",
  1362. "r": 255,
  1363. "g": 255,
  1364. "b": 255,
  1365. "a": 255
  1366. },
  1367. "_spriteFrame": {
  1368. "__uuid__": "149132d3-3bfb-426b-815d-6a09911768c0@f9941"
  1369. },
  1370. "_type": 3,
  1371. "_fillType": 0,
  1372. "_sizeMode": 0,
  1373. "_fillCenter": {
  1374. "__type__": "cc.Vec2",
  1375. "x": 0,
  1376. "y": 0
  1377. },
  1378. "_fillStart": 0,
  1379. "_fillRange": 0,
  1380. "_isTrimmedMode": true,
  1381. "_useGrayscale": false,
  1382. "_atlas": null,
  1383. "_id": ""
  1384. },
  1385. {
  1386. "__type__": "cc.CompPrefabInfo",
  1387. "fileId": "e9Be/353FO5qvOBIyeYyFV"
  1388. },
  1389. {
  1390. "__type__": "cc.PrefabInfo",
  1391. "root": {
  1392. "__id__": 1
  1393. },
  1394. "asset": {
  1395. "__id__": 0
  1396. },
  1397. "fileId": "c9oI6fdZhEq5YQgUTFU6CK"
  1398. },
  1399. {
  1400. "__type__": "cc.Node",
  1401. "_name": "文本",
  1402. "_objFlags": 0,
  1403. "_parent": {
  1404. "__id__": 56
  1405. },
  1406. "_children": [],
  1407. "_active": true,
  1408. "_components": [
  1409. {
  1410. "__id__": 64
  1411. },
  1412. {
  1413. "__id__": 66
  1414. },
  1415. {
  1416. "__id__": 68
  1417. }
  1418. ],
  1419. "_prefab": {
  1420. "__id__": 70
  1421. },
  1422. "_lpos": {
  1423. "__type__": "cc.Vec3",
  1424. "x": 0,
  1425. "y": 0,
  1426. "z": 0
  1427. },
  1428. "_lrot": {
  1429. "__type__": "cc.Quat",
  1430. "x": 0,
  1431. "y": 0,
  1432. "z": 0,
  1433. "w": 1
  1434. },
  1435. "_lscale": {
  1436. "__type__": "cc.Vec3",
  1437. "x": 1,
  1438. "y": 1,
  1439. "z": 1
  1440. },
  1441. "_layer": 33554432,
  1442. "_euler": {
  1443. "__type__": "cc.Vec3",
  1444. "x": 0,
  1445. "y": 0,
  1446. "z": 0
  1447. },
  1448. "_id": ""
  1449. },
  1450. {
  1451. "__type__": "cc.UITransform",
  1452. "_name": "",
  1453. "_objFlags": 0,
  1454. "node": {
  1455. "__id__": 63
  1456. },
  1457. "_enabled": true,
  1458. "__prefab": {
  1459. "__id__": 65
  1460. },
  1461. "_priority": 0,
  1462. "_contentSize": {
  1463. "__type__": "cc.Size",
  1464. "width": 70.48,
  1465. "height": 61.96
  1466. },
  1467. "_anchorPoint": {
  1468. "__type__": "cc.Vec2",
  1469. "x": 0.5,
  1470. "y": 0.5
  1471. },
  1472. "_id": ""
  1473. },
  1474. {
  1475. "__type__": "cc.CompPrefabInfo",
  1476. "fileId": "c68UOAlNhN171Umca6yVvF"
  1477. },
  1478. {
  1479. "__type__": "cc.Label",
  1480. "_name": "",
  1481. "_objFlags": 0,
  1482. "node": {
  1483. "__id__": 63
  1484. },
  1485. "_enabled": true,
  1486. "__prefab": {
  1487. "__id__": 67
  1488. },
  1489. "_visFlags": 0,
  1490. "_customMaterial": null,
  1491. "_srcBlendFactor": 2,
  1492. "_dstBlendFactor": 4,
  1493. "_color": {
  1494. "__type__": "cc.Color",
  1495. "r": 255,
  1496. "g": 255,
  1497. "b": 252,
  1498. "a": 255
  1499. },
  1500. "_string": "0%",
  1501. "_horizontalAlign": 1,
  1502. "_verticalAlign": 1,
  1503. "_actualFontSize": 46,
  1504. "_fontSize": 46,
  1505. "_fontFamily": "Arial",
  1506. "_lineHeight": 46,
  1507. "_overflow": 0,
  1508. "_enableWrapText": true,
  1509. "_font": null,
  1510. "_isSystemFontUsed": true,
  1511. "_isItalic": false,
  1512. "_isBold": false,
  1513. "_isUnderline": false,
  1514. "_underlineHeight": 2,
  1515. "_cacheMode": 0,
  1516. "_id": ""
  1517. },
  1518. {
  1519. "__type__": "cc.CompPrefabInfo",
  1520. "fileId": "2frm37uaJHQr0AEEaYyM82"
  1521. },
  1522. {
  1523. "__type__": "cc.LabelOutline",
  1524. "_name": "",
  1525. "_objFlags": 0,
  1526. "node": {
  1527. "__id__": 63
  1528. },
  1529. "_enabled": true,
  1530. "__prefab": {
  1531. "__id__": 69
  1532. },
  1533. "_color": {
  1534. "__type__": "cc.Color",
  1535. "r": 21,
  1536. "g": 94,
  1537. "b": 13,
  1538. "a": 255
  1539. },
  1540. "_width": 2,
  1541. "_id": ""
  1542. },
  1543. {
  1544. "__type__": "cc.CompPrefabInfo",
  1545. "fileId": "2fMw1Uj3tO7qooYifoY6W5"
  1546. },
  1547. {
  1548. "__type__": "cc.PrefabInfo",
  1549. "root": {
  1550. "__id__": 1
  1551. },
  1552. "asset": {
  1553. "__id__": 0
  1554. },
  1555. "fileId": "22Dy3VP5pANK4PWaUsNeJo"
  1556. },
  1557. {
  1558. "__type__": "cc.UITransform",
  1559. "_name": "",
  1560. "_objFlags": 0,
  1561. "node": {
  1562. "__id__": 56
  1563. },
  1564. "_enabled": true,
  1565. "__prefab": {
  1566. "__id__": 72
  1567. },
  1568. "_priority": 0,
  1569. "_contentSize": {
  1570. "__type__": "cc.Size",
  1571. "width": 164,
  1572. "height": 79
  1573. },
  1574. "_anchorPoint": {
  1575. "__type__": "cc.Vec2",
  1576. "x": 0.5,
  1577. "y": 0.5
  1578. },
  1579. "_id": ""
  1580. },
  1581. {
  1582. "__type__": "cc.CompPrefabInfo",
  1583. "fileId": "68NF/iacFAwKgYD9o8UXG4"
  1584. },
  1585. {
  1586. "__type__": "cc.Sprite",
  1587. "_name": "",
  1588. "_objFlags": 0,
  1589. "node": {
  1590. "__id__": 56
  1591. },
  1592. "_enabled": true,
  1593. "__prefab": {
  1594. "__id__": 74
  1595. },
  1596. "_visFlags": 0,
  1597. "_customMaterial": null,
  1598. "_srcBlendFactor": 2,
  1599. "_dstBlendFactor": 4,
  1600. "_color": {
  1601. "__type__": "cc.Color",
  1602. "r": 255,
  1603. "g": 255,
  1604. "b": 255,
  1605. "a": 255
  1606. },
  1607. "_spriteFrame": {
  1608. "__uuid__": "b7be60d8-a1f4-45cc-b507-e7a1529954c9@f9941"
  1609. },
  1610. "_type": 1,
  1611. "_fillType": 0,
  1612. "_sizeMode": 1,
  1613. "_fillCenter": {
  1614. "__type__": "cc.Vec2",
  1615. "x": 0,
  1616. "y": 0
  1617. },
  1618. "_fillStart": 0,
  1619. "_fillRange": 0,
  1620. "_isTrimmedMode": true,
  1621. "_useGrayscale": false,
  1622. "_atlas": null,
  1623. "_id": ""
  1624. },
  1625. {
  1626. "__type__": "cc.CompPrefabInfo",
  1627. "fileId": "09FykYgCVHEa1VsxSMArWX"
  1628. },
  1629. {
  1630. "__type__": "cc.ProgressBar",
  1631. "_name": "",
  1632. "_objFlags": 0,
  1633. "node": {
  1634. "__id__": 56
  1635. },
  1636. "_enabled": true,
  1637. "__prefab": {
  1638. "__id__": 76
  1639. },
  1640. "_barSprite": {
  1641. "__id__": 60
  1642. },
  1643. "_mode": 2,
  1644. "_totalLength": 1,
  1645. "_progress": 0,
  1646. "_reverse": false,
  1647. "_id": ""
  1648. },
  1649. {
  1650. "__type__": "cc.CompPrefabInfo",
  1651. "fileId": "1fEfzejYNPc4zylHDogBra"
  1652. },
  1653. {
  1654. "__type__": "cc.PrefabInfo",
  1655. "root": {
  1656. "__id__": 1
  1657. },
  1658. "asset": {
  1659. "__id__": 0
  1660. },
  1661. "fileId": "48PRBUbHlD0IiQYnkJzwyg"
  1662. },
  1663. {
  1664. "__type__": "cc.Node",
  1665. "_name": "下载",
  1666. "_objFlags": 0,
  1667. "_parent": {
  1668. "__id__": 1
  1669. },
  1670. "_children": [],
  1671. "_active": false,
  1672. "_components": [
  1673. {
  1674. "__id__": 79
  1675. },
  1676. {
  1677. "__id__": 81
  1678. },
  1679. {
  1680. "__id__": 83
  1681. },
  1682. {
  1683. "__id__": 86
  1684. },
  1685. {
  1686. "__id__": 88
  1687. }
  1688. ],
  1689. "_prefab": {
  1690. "__id__": 90
  1691. },
  1692. "_lpos": {
  1693. "__type__": "cc.Vec3",
  1694. "x": 496.25700000000006,
  1695. "y": -65,
  1696. "z": 0
  1697. },
  1698. "_lrot": {
  1699. "__type__": "cc.Quat",
  1700. "x": 0,
  1701. "y": 0,
  1702. "z": 0,
  1703. "w": 1
  1704. },
  1705. "_lscale": {
  1706. "__type__": "cc.Vec3",
  1707. "x": 1,
  1708. "y": 1,
  1709. "z": 1
  1710. },
  1711. "_layer": 33554432,
  1712. "_euler": {
  1713. "__type__": "cc.Vec3",
  1714. "x": 0,
  1715. "y": 0,
  1716. "z": 0
  1717. },
  1718. "_id": ""
  1719. },
  1720. {
  1721. "__type__": "cc.UITransform",
  1722. "_name": "",
  1723. "_objFlags": 0,
  1724. "node": {
  1725. "__id__": 78
  1726. },
  1727. "_enabled": false,
  1728. "__prefab": {
  1729. "__id__": 80
  1730. },
  1731. "_priority": 0,
  1732. "_contentSize": {
  1733. "__type__": "cc.Size",
  1734. "width": 162,
  1735. "height": 78
  1736. },
  1737. "_anchorPoint": {
  1738. "__type__": "cc.Vec2",
  1739. "x": 0.5,
  1740. "y": 0.5
  1741. },
  1742. "_id": ""
  1743. },
  1744. {
  1745. "__type__": "cc.CompPrefabInfo",
  1746. "fileId": "06NyzyvFVNfqk021S5OxVv"
  1747. },
  1748. {
  1749. "__type__": "cc.Sprite",
  1750. "_name": "",
  1751. "_objFlags": 0,
  1752. "node": {
  1753. "__id__": 78
  1754. },
  1755. "_enabled": true,
  1756. "__prefab": {
  1757. "__id__": 82
  1758. },
  1759. "_visFlags": 0,
  1760. "_customMaterial": null,
  1761. "_srcBlendFactor": 2,
  1762. "_dstBlendFactor": 4,
  1763. "_color": {
  1764. "__type__": "cc.Color",
  1765. "r": 255,
  1766. "g": 255,
  1767. "b": 255,
  1768. "a": 255
  1769. },
  1770. "_spriteFrame": {
  1771. "__uuid__": "c2cb0259-1e70-4850-acb1-e14a1006c41f@f9941"
  1772. },
  1773. "_type": 1,
  1774. "_fillType": 0,
  1775. "_sizeMode": 1,
  1776. "_fillCenter": {
  1777. "__type__": "cc.Vec2",
  1778. "x": 0,
  1779. "y": 0
  1780. },
  1781. "_fillStart": 0,
  1782. "_fillRange": 0,
  1783. "_isTrimmedMode": true,
  1784. "_useGrayscale": false,
  1785. "_atlas": null,
  1786. "_id": ""
  1787. },
  1788. {
  1789. "__type__": "cc.CompPrefabInfo",
  1790. "fileId": "14Df1oNklFrIT3APxHb1+E"
  1791. },
  1792. {
  1793. "__type__": "cc.Button",
  1794. "_name": "",
  1795. "_objFlags": 0,
  1796. "node": {
  1797. "__id__": 78
  1798. },
  1799. "_enabled": true,
  1800. "__prefab": {
  1801. "__id__": 84
  1802. },
  1803. "clickEvents": [
  1804. {
  1805. "__id__": 85
  1806. }
  1807. ],
  1808. "_interactable": true,
  1809. "_transition": 3,
  1810. "_normalColor": {
  1811. "__type__": "cc.Color",
  1812. "r": 214,
  1813. "g": 214,
  1814. "b": 214,
  1815. "a": 255
  1816. },
  1817. "_hoverColor": {
  1818. "__type__": "cc.Color",
  1819. "r": 211,
  1820. "g": 211,
  1821. "b": 211,
  1822. "a": 255
  1823. },
  1824. "_pressedColor": {
  1825. "__type__": "cc.Color",
  1826. "r": 255,
  1827. "g": 255,
  1828. "b": 255,
  1829. "a": 255
  1830. },
  1831. "_disabledColor": {
  1832. "__type__": "cc.Color",
  1833. "r": 124,
  1834. "g": 124,
  1835. "b": 124,
  1836. "a": 255
  1837. },
  1838. "_normalSprite": null,
  1839. "_hoverSprite": null,
  1840. "_pressedSprite": null,
  1841. "_disabledSprite": null,
  1842. "_duration": 0.1,
  1843. "_zoomScale": 1.1,
  1844. "_target": {
  1845. "__id__": 78
  1846. },
  1847. "_id": ""
  1848. },
  1849. {
  1850. "__type__": "cc.CompPrefabInfo",
  1851. "fileId": "35Y1R/7olLDIZB8TaDEVDa"
  1852. },
  1853. {
  1854. "__type__": "cc.ClickEvent",
  1855. "target": {
  1856. "__id__": 1
  1857. },
  1858. "component": "",
  1859. "_componentId": "9ecc4zCHbBCD4+jtAgd+rxD",
  1860. "handler": "onClick",
  1861. "customEventData": ""
  1862. },
  1863. {
  1864. "__type__": "cc.Widget",
  1865. "_name": "",
  1866. "_objFlags": 0,
  1867. "node": {
  1868. "__id__": 78
  1869. },
  1870. "_enabled": true,
  1871. "__prefab": {
  1872. "__id__": 87
  1873. },
  1874. "_alignFlags": 34,
  1875. "_target": null,
  1876. "_left": 0,
  1877. "_right": 12.742999999999938,
  1878. "_top": 0,
  1879. "_bottom": 0,
  1880. "_horizontalCenter": 0,
  1881. "_verticalCenter": 0,
  1882. "_isAbsLeft": true,
  1883. "_isAbsRight": true,
  1884. "_isAbsTop": true,
  1885. "_isAbsBottom": true,
  1886. "_isAbsHorizontalCenter": true,
  1887. "_isAbsVerticalCenter": true,
  1888. "_originalWidth": 0,
  1889. "_originalHeight": 0,
  1890. "_alignMode": 2,
  1891. "_lockFlags": 0,
  1892. "_id": ""
  1893. },
  1894. {
  1895. "__type__": "cc.CompPrefabInfo",
  1896. "fileId": "58jS+N0hlPIKSUoBmFaRsn"
  1897. },
  1898. {
  1899. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  1900. "_name": "",
  1901. "_objFlags": 0,
  1902. "node": {
  1903. "__id__": 78
  1904. },
  1905. "_enabled": true,
  1906. "__prefab": {
  1907. "__id__": 89
  1908. },
  1909. "clips": [
  1910. {
  1911. "__uuid__": "946aa2bf-b5ec-40a8-b0ba-666c9d8263ca"
  1912. }
  1913. ],
  1914. "_volume": 1,
  1915. "useGlobalVolume": true,
  1916. "playOnLoad": false,
  1917. "playOnTouch": true,
  1918. "oneShot": true,
  1919. "loop": false,
  1920. "_id": ""
  1921. },
  1922. {
  1923. "__type__": "cc.CompPrefabInfo",
  1924. "fileId": "1b7Ly807RO5axzXAMqudaR"
  1925. },
  1926. {
  1927. "__type__": "cc.PrefabInfo",
  1928. "root": {
  1929. "__id__": 1
  1930. },
  1931. "asset": {
  1932. "__id__": 0
  1933. },
  1934. "fileId": "93g5EbgwtIjJ2jWkEg+7r1"
  1935. },
  1936. {
  1937. "__type__": "cc.Node",
  1938. "_name": "安装",
  1939. "_objFlags": 0,
  1940. "_parent": {
  1941. "__id__": 1
  1942. },
  1943. "_children": [],
  1944. "_active": false,
  1945. "_components": [
  1946. {
  1947. "__id__": 92
  1948. },
  1949. {
  1950. "__id__": 94
  1951. },
  1952. {
  1953. "__id__": 96
  1954. },
  1955. {
  1956. "__id__": 99
  1957. },
  1958. {
  1959. "__id__": 101
  1960. }
  1961. ],
  1962. "_prefab": {
  1963. "__id__": 103
  1964. },
  1965. "_lpos": {
  1966. "__type__": "cc.Vec3",
  1967. "x": 496.25700000000006,
  1968. "y": -65,
  1969. "z": 0
  1970. },
  1971. "_lrot": {
  1972. "__type__": "cc.Quat",
  1973. "x": 0,
  1974. "y": 0,
  1975. "z": 0,
  1976. "w": 1
  1977. },
  1978. "_lscale": {
  1979. "__type__": "cc.Vec3",
  1980. "x": 1,
  1981. "y": 1,
  1982. "z": 1
  1983. },
  1984. "_layer": 33554432,
  1985. "_euler": {
  1986. "__type__": "cc.Vec3",
  1987. "x": 0,
  1988. "y": 0,
  1989. "z": 0
  1990. },
  1991. "_id": ""
  1992. },
  1993. {
  1994. "__type__": "cc.UITransform",
  1995. "_name": "",
  1996. "_objFlags": 0,
  1997. "node": {
  1998. "__id__": 91
  1999. },
  2000. "_enabled": true,
  2001. "__prefab": {
  2002. "__id__": 93
  2003. },
  2004. "_priority": 0,
  2005. "_contentSize": {
  2006. "__type__": "cc.Size",
  2007. "width": 162,
  2008. "height": 78
  2009. },
  2010. "_anchorPoint": {
  2011. "__type__": "cc.Vec2",
  2012. "x": 0.5,
  2013. "y": 0.5
  2014. },
  2015. "_id": ""
  2016. },
  2017. {
  2018. "__type__": "cc.CompPrefabInfo",
  2019. "fileId": "81f6d4QTRNkawSOCHriwXM"
  2020. },
  2021. {
  2022. "__type__": "cc.Sprite",
  2023. "_name": "",
  2024. "_objFlags": 0,
  2025. "node": {
  2026. "__id__": 91
  2027. },
  2028. "_enabled": true,
  2029. "__prefab": {
  2030. "__id__": 95
  2031. },
  2032. "_visFlags": 0,
  2033. "_customMaterial": null,
  2034. "_srcBlendFactor": 2,
  2035. "_dstBlendFactor": 4,
  2036. "_color": {
  2037. "__type__": "cc.Color",
  2038. "r": 255,
  2039. "g": 255,
  2040. "b": 255,
  2041. "a": 255
  2042. },
  2043. "_spriteFrame": {
  2044. "__uuid__": "31204f29-682e-45c1-be70-2cf34c06b215@f9941"
  2045. },
  2046. "_type": 1,
  2047. "_fillType": 0,
  2048. "_sizeMode": 1,
  2049. "_fillCenter": {
  2050. "__type__": "cc.Vec2",
  2051. "x": 0,
  2052. "y": 0
  2053. },
  2054. "_fillStart": 0,
  2055. "_fillRange": 0,
  2056. "_isTrimmedMode": true,
  2057. "_useGrayscale": false,
  2058. "_atlas": null,
  2059. "_id": ""
  2060. },
  2061. {
  2062. "__type__": "cc.CompPrefabInfo",
  2063. "fileId": "b1xIIe+/hB/rbwqwI1kM4b"
  2064. },
  2065. {
  2066. "__type__": "cc.Button",
  2067. "_name": "",
  2068. "_objFlags": 0,
  2069. "node": {
  2070. "__id__": 91
  2071. },
  2072. "_enabled": true,
  2073. "__prefab": {
  2074. "__id__": 97
  2075. },
  2076. "clickEvents": [
  2077. {
  2078. "__id__": 98
  2079. }
  2080. ],
  2081. "_interactable": true,
  2082. "_transition": 3,
  2083. "_normalColor": {
  2084. "__type__": "cc.Color",
  2085. "r": 214,
  2086. "g": 214,
  2087. "b": 214,
  2088. "a": 255
  2089. },
  2090. "_hoverColor": {
  2091. "__type__": "cc.Color",
  2092. "r": 211,
  2093. "g": 211,
  2094. "b": 211,
  2095. "a": 255
  2096. },
  2097. "_pressedColor": {
  2098. "__type__": "cc.Color",
  2099. "r": 255,
  2100. "g": 255,
  2101. "b": 255,
  2102. "a": 255
  2103. },
  2104. "_disabledColor": {
  2105. "__type__": "cc.Color",
  2106. "r": 124,
  2107. "g": 124,
  2108. "b": 124,
  2109. "a": 255
  2110. },
  2111. "_normalSprite": null,
  2112. "_hoverSprite": null,
  2113. "_pressedSprite": null,
  2114. "_disabledSprite": null,
  2115. "_duration": 0.1,
  2116. "_zoomScale": 1.1,
  2117. "_target": {
  2118. "__id__": 91
  2119. },
  2120. "_id": ""
  2121. },
  2122. {
  2123. "__type__": "cc.CompPrefabInfo",
  2124. "fileId": "6d5oKdkC5I4LKfWsgubsnD"
  2125. },
  2126. {
  2127. "__type__": "cc.ClickEvent",
  2128. "target": {
  2129. "__id__": 1
  2130. },
  2131. "component": "",
  2132. "_componentId": "9ecc4zCHbBCD4+jtAgd+rxD",
  2133. "handler": "onInstall",
  2134. "customEventData": ""
  2135. },
  2136. {
  2137. "__type__": "cc.Widget",
  2138. "_name": "",
  2139. "_objFlags": 0,
  2140. "node": {
  2141. "__id__": 91
  2142. },
  2143. "_enabled": true,
  2144. "__prefab": {
  2145. "__id__": 100
  2146. },
  2147. "_alignFlags": 34,
  2148. "_target": null,
  2149. "_left": 0,
  2150. "_right": 12.742999999999938,
  2151. "_top": 0,
  2152. "_bottom": 0,
  2153. "_horizontalCenter": 0,
  2154. "_verticalCenter": 0,
  2155. "_isAbsLeft": true,
  2156. "_isAbsRight": true,
  2157. "_isAbsTop": true,
  2158. "_isAbsBottom": true,
  2159. "_isAbsHorizontalCenter": true,
  2160. "_isAbsVerticalCenter": true,
  2161. "_originalWidth": 0,
  2162. "_originalHeight": 0,
  2163. "_alignMode": 2,
  2164. "_lockFlags": 0,
  2165. "_id": ""
  2166. },
  2167. {
  2168. "__type__": "cc.CompPrefabInfo",
  2169. "fileId": "b0jPT9OGtFurPqpmY9Byk5"
  2170. },
  2171. {
  2172. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  2173. "_name": "",
  2174. "_objFlags": 0,
  2175. "node": {
  2176. "__id__": 91
  2177. },
  2178. "_enabled": true,
  2179. "__prefab": {
  2180. "__id__": 102
  2181. },
  2182. "clips": [
  2183. {
  2184. "__uuid__": "946aa2bf-b5ec-40a8-b0ba-666c9d8263ca"
  2185. }
  2186. ],
  2187. "_volume": 1,
  2188. "useGlobalVolume": true,
  2189. "playOnLoad": false,
  2190. "playOnTouch": true,
  2191. "oneShot": true,
  2192. "loop": false,
  2193. "_id": ""
  2194. },
  2195. {
  2196. "__type__": "cc.CompPrefabInfo",
  2197. "fileId": "5e2/2GHSZCb4IFWPqupFcz"
  2198. },
  2199. {
  2200. "__type__": "cc.PrefabInfo",
  2201. "root": {
  2202. "__id__": 1
  2203. },
  2204. "asset": {
  2205. "__id__": 0
  2206. },
  2207. "fileId": "c7TG2KYlJGRrLwo7OaE6sk"
  2208. },
  2209. {
  2210. "__type__": "cc.Node",
  2211. "_name": "启动",
  2212. "_objFlags": 0,
  2213. "_parent": {
  2214. "__id__": 1
  2215. },
  2216. "_children": [],
  2217. "_active": false,
  2218. "_components": [
  2219. {
  2220. "__id__": 105
  2221. },
  2222. {
  2223. "__id__": 107
  2224. },
  2225. {
  2226. "__id__": 109
  2227. },
  2228. {
  2229. "__id__": 112
  2230. },
  2231. {
  2232. "__id__": 114
  2233. }
  2234. ],
  2235. "_prefab": {
  2236. "__id__": 116
  2237. },
  2238. "_lpos": {
  2239. "__type__": "cc.Vec3",
  2240. "x": 496.25700000000006,
  2241. "y": -65,
  2242. "z": 0
  2243. },
  2244. "_lrot": {
  2245. "__type__": "cc.Quat",
  2246. "x": 0,
  2247. "y": 0,
  2248. "z": 0,
  2249. "w": 1
  2250. },
  2251. "_lscale": {
  2252. "__type__": "cc.Vec3",
  2253. "x": 1,
  2254. "y": 1,
  2255. "z": 1
  2256. },
  2257. "_layer": 33554432,
  2258. "_euler": {
  2259. "__type__": "cc.Vec3",
  2260. "x": 0,
  2261. "y": 0,
  2262. "z": 0
  2263. },
  2264. "_id": ""
  2265. },
  2266. {
  2267. "__type__": "cc.UITransform",
  2268. "_name": "",
  2269. "_objFlags": 0,
  2270. "node": {
  2271. "__id__": 104
  2272. },
  2273. "_enabled": true,
  2274. "__prefab": {
  2275. "__id__": 106
  2276. },
  2277. "_priority": 0,
  2278. "_contentSize": {
  2279. "__type__": "cc.Size",
  2280. "width": 162,
  2281. "height": 78
  2282. },
  2283. "_anchorPoint": {
  2284. "__type__": "cc.Vec2",
  2285. "x": 0.5,
  2286. "y": 0.5
  2287. },
  2288. "_id": ""
  2289. },
  2290. {
  2291. "__type__": "cc.CompPrefabInfo",
  2292. "fileId": "00ilhLVopD1aeLmZwz89BR"
  2293. },
  2294. {
  2295. "__type__": "cc.Sprite",
  2296. "_name": "",
  2297. "_objFlags": 0,
  2298. "node": {
  2299. "__id__": 104
  2300. },
  2301. "_enabled": true,
  2302. "__prefab": {
  2303. "__id__": 108
  2304. },
  2305. "_visFlags": 0,
  2306. "_customMaterial": null,
  2307. "_srcBlendFactor": 2,
  2308. "_dstBlendFactor": 4,
  2309. "_color": {
  2310. "__type__": "cc.Color",
  2311. "r": 255,
  2312. "g": 255,
  2313. "b": 255,
  2314. "a": 255
  2315. },
  2316. "_spriteFrame": {
  2317. "__uuid__": "d554a67c-a78a-45e9-a55f-219302073e11@f9941"
  2318. },
  2319. "_type": 1,
  2320. "_fillType": 0,
  2321. "_sizeMode": 1,
  2322. "_fillCenter": {
  2323. "__type__": "cc.Vec2",
  2324. "x": 0,
  2325. "y": 0
  2326. },
  2327. "_fillStart": 0,
  2328. "_fillRange": 0,
  2329. "_isTrimmedMode": true,
  2330. "_useGrayscale": false,
  2331. "_atlas": null,
  2332. "_id": ""
  2333. },
  2334. {
  2335. "__type__": "cc.CompPrefabInfo",
  2336. "fileId": "bbPCx+kNJGr64sf4xUVeUQ"
  2337. },
  2338. {
  2339. "__type__": "cc.Button",
  2340. "_name": "",
  2341. "_objFlags": 0,
  2342. "node": {
  2343. "__id__": 104
  2344. },
  2345. "_enabled": true,
  2346. "__prefab": {
  2347. "__id__": 110
  2348. },
  2349. "clickEvents": [
  2350. {
  2351. "__id__": 111
  2352. }
  2353. ],
  2354. "_interactable": true,
  2355. "_transition": 3,
  2356. "_normalColor": {
  2357. "__type__": "cc.Color",
  2358. "r": 214,
  2359. "g": 214,
  2360. "b": 214,
  2361. "a": 255
  2362. },
  2363. "_hoverColor": {
  2364. "__type__": "cc.Color",
  2365. "r": 211,
  2366. "g": 211,
  2367. "b": 211,
  2368. "a": 255
  2369. },
  2370. "_pressedColor": {
  2371. "__type__": "cc.Color",
  2372. "r": 255,
  2373. "g": 255,
  2374. "b": 255,
  2375. "a": 255
  2376. },
  2377. "_disabledColor": {
  2378. "__type__": "cc.Color",
  2379. "r": 124,
  2380. "g": 124,
  2381. "b": 124,
  2382. "a": 255
  2383. },
  2384. "_normalSprite": null,
  2385. "_hoverSprite": null,
  2386. "_pressedSprite": null,
  2387. "_disabledSprite": null,
  2388. "_duration": 0.1,
  2389. "_zoomScale": 1.1,
  2390. "_target": {
  2391. "__id__": 104
  2392. },
  2393. "_id": ""
  2394. },
  2395. {
  2396. "__type__": "cc.CompPrefabInfo",
  2397. "fileId": "3f9FegX3lJoYEU3haJjjdG"
  2398. },
  2399. {
  2400. "__type__": "cc.ClickEvent",
  2401. "target": {
  2402. "__id__": 1
  2403. },
  2404. "component": "",
  2405. "_componentId": "9ecc4zCHbBCD4+jtAgd+rxD",
  2406. "handler": "startApp",
  2407. "customEventData": ""
  2408. },
  2409. {
  2410. "__type__": "cc.Widget",
  2411. "_name": "",
  2412. "_objFlags": 0,
  2413. "node": {
  2414. "__id__": 104
  2415. },
  2416. "_enabled": true,
  2417. "__prefab": {
  2418. "__id__": 113
  2419. },
  2420. "_alignFlags": 34,
  2421. "_target": null,
  2422. "_left": 0,
  2423. "_right": 12.742999999999938,
  2424. "_top": 0,
  2425. "_bottom": 0,
  2426. "_horizontalCenter": 0,
  2427. "_verticalCenter": 0,
  2428. "_isAbsLeft": true,
  2429. "_isAbsRight": true,
  2430. "_isAbsTop": true,
  2431. "_isAbsBottom": true,
  2432. "_isAbsHorizontalCenter": true,
  2433. "_isAbsVerticalCenter": true,
  2434. "_originalWidth": 0,
  2435. "_originalHeight": 0,
  2436. "_alignMode": 2,
  2437. "_lockFlags": 0,
  2438. "_id": ""
  2439. },
  2440. {
  2441. "__type__": "cc.CompPrefabInfo",
  2442. "fileId": "462Hq/ZJ1PHq1LmQIBo8Z2"
  2443. },
  2444. {
  2445. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  2446. "_name": "",
  2447. "_objFlags": 0,
  2448. "node": {
  2449. "__id__": 104
  2450. },
  2451. "_enabled": true,
  2452. "__prefab": {
  2453. "__id__": 115
  2454. },
  2455. "clips": [
  2456. {
  2457. "__uuid__": "946aa2bf-b5ec-40a8-b0ba-666c9d8263ca"
  2458. }
  2459. ],
  2460. "_volume": 1,
  2461. "useGlobalVolume": true,
  2462. "playOnLoad": false,
  2463. "playOnTouch": true,
  2464. "oneShot": true,
  2465. "loop": false,
  2466. "_id": ""
  2467. },
  2468. {
  2469. "__type__": "cc.CompPrefabInfo",
  2470. "fileId": "7e6+nH55VJI4Cve/l+PYMu"
  2471. },
  2472. {
  2473. "__type__": "cc.PrefabInfo",
  2474. "root": {
  2475. "__id__": 1
  2476. },
  2477. "asset": {
  2478. "__id__": 0
  2479. },
  2480. "fileId": "7fiL0PpdhHVIPBf3UgOICe"
  2481. },
  2482. {
  2483. "__type__": "cc.Node",
  2484. "_name": "Http",
  2485. "_objFlags": 0,
  2486. "_parent": {
  2487. "__id__": 1
  2488. },
  2489. "_children": [],
  2490. "_active": true,
  2491. "_components": [
  2492. {
  2493. "__id__": 118
  2494. },
  2495. {
  2496. "__id__": 120
  2497. }
  2498. ],
  2499. "_prefab": {
  2500. "__id__": 122
  2501. },
  2502. "_lpos": {
  2503. "__type__": "cc.Vec3",
  2504. "x": 347.744,
  2505. "y": -16.826,
  2506. "z": 0
  2507. },
  2508. "_lrot": {
  2509. "__type__": "cc.Quat",
  2510. "x": 0,
  2511. "y": 0,
  2512. "z": 0,
  2513. "w": 1
  2514. },
  2515. "_lscale": {
  2516. "__type__": "cc.Vec3",
  2517. "x": 1,
  2518. "y": 1,
  2519. "z": 1
  2520. },
  2521. "_layer": 33554432,
  2522. "_euler": {
  2523. "__type__": "cc.Vec3",
  2524. "x": 0,
  2525. "y": 0,
  2526. "z": 0
  2527. },
  2528. "_id": ""
  2529. },
  2530. {
  2531. "__type__": "cc.UITransform",
  2532. "_name": "",
  2533. "_objFlags": 0,
  2534. "node": {
  2535. "__id__": 117
  2536. },
  2537. "_enabled": true,
  2538. "__prefab": {
  2539. "__id__": 119
  2540. },
  2541. "_priority": 0,
  2542. "_contentSize": {
  2543. "__type__": "cc.Size",
  2544. "width": 100,
  2545. "height": 100
  2546. },
  2547. "_anchorPoint": {
  2548. "__type__": "cc.Vec2",
  2549. "x": 0.5,
  2550. "y": 0.5
  2551. },
  2552. "_id": ""
  2553. },
  2554. {
  2555. "__type__": "cc.CompPrefabInfo",
  2556. "fileId": "d1Jgbo4D5Kp7mMGgkagebo"
  2557. },
  2558. {
  2559. "__type__": "dac21xJD+VAUaoh8lKjfmQr",
  2560. "_name": "",
  2561. "_objFlags": 0,
  2562. "node": {
  2563. "__id__": 117
  2564. },
  2565. "_enabled": true,
  2566. "__prefab": {
  2567. "__id__": 121
  2568. },
  2569. "hostAlias": "",
  2570. "withCredentials": false,
  2571. "timeout": 0,
  2572. "responseType": 3,
  2573. "useEncrypt": true,
  2574. "_id": ""
  2575. },
  2576. {
  2577. "__type__": "cc.CompPrefabInfo",
  2578. "fileId": "4fBek2YEVJnps93fsT3S2+"
  2579. },
  2580. {
  2581. "__type__": "cc.PrefabInfo",
  2582. "root": {
  2583. "__id__": 1
  2584. },
  2585. "asset": {
  2586. "__id__": 0
  2587. },
  2588. "fileId": "3dhM8ZQVVELIcZ/f4KM+3T"
  2589. },
  2590. {
  2591. "__type__": "cc.UITransform",
  2592. "_name": "",
  2593. "_objFlags": 0,
  2594. "node": {
  2595. "__id__": 1
  2596. },
  2597. "_enabled": true,
  2598. "__prefab": {
  2599. "__id__": 124
  2600. },
  2601. "_priority": 0,
  2602. "_contentSize": {
  2603. "__type__": "cc.Size",
  2604. "width": 590,
  2605. "height": 130
  2606. },
  2607. "_anchorPoint": {
  2608. "__type__": "cc.Vec2",
  2609. "x": 0,
  2610. "y": 1
  2611. },
  2612. "_id": ""
  2613. },
  2614. {
  2615. "__type__": "cc.CompPrefabInfo",
  2616. "fileId": "2fEVkyn3ZA96DV769klGV3"
  2617. },
  2618. {
  2619. "__type__": "9ecc4zCHbBCD4+jtAgd+rxD",
  2620. "_name": "",
  2621. "_objFlags": 0,
  2622. "node": {
  2623. "__id__": 1
  2624. },
  2625. "_enabled": true,
  2626. "__prefab": {
  2627. "__id__": 126
  2628. },
  2629. "cellIdentifier": "",
  2630. "titleLabel": {
  2631. "__id__": 40
  2632. },
  2633. "decLabel": {
  2634. "__id__": 46
  2635. },
  2636. "icon": {
  2637. "__id__": 17
  2638. },
  2639. "http": {
  2640. "__id__": 120
  2641. },
  2642. "installNode": {
  2643. "__id__": 91
  2644. },
  2645. "startNode": {
  2646. "__id__": 104
  2647. },
  2648. "downLoadNode": {
  2649. "__id__": 78
  2650. },
  2651. "progressNode": {
  2652. "__id__": 56
  2653. },
  2654. "progressBar": {
  2655. "__id__": 75
  2656. },
  2657. "progressLabel": {
  2658. "__id__": 66
  2659. },
  2660. "_id": ""
  2661. },
  2662. {
  2663. "__type__": "cc.CompPrefabInfo",
  2664. "fileId": "632A3XZk5K7I8Mo8qLTGKY"
  2665. },
  2666. {
  2667. "__type__": "cc.PrefabInfo",
  2668. "root": {
  2669. "__id__": 1
  2670. },
  2671. "asset": {
  2672. "__id__": 0
  2673. },
  2674. "fileId": "daEuJn1yJNcIRfTqwQdAo5"
  2675. }
  2676. ]