prefab_update_alert.prefab 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "prefab_update_alert",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 11
  25. },
  26. {
  27. "__id__": 37
  28. }
  29. ],
  30. "_active": false,
  31. "_components": [
  32. {
  33. "__id__": 63
  34. },
  35. {
  36. "__id__": 64
  37. }
  38. ],
  39. "_prefab": {
  40. "__id__": 65
  41. },
  42. "_opacity": 255,
  43. "_color": {
  44. "__type__": "cc.Color",
  45. "r": 255,
  46. "g": 255,
  47. "b": 255,
  48. "a": 255
  49. },
  50. "_contentSize": {
  51. "__type__": "cc.Size",
  52. "width": 658,
  53. "height": 398
  54. },
  55. "_anchorPoint": {
  56. "__type__": "cc.Vec2",
  57. "x": 0.5,
  58. "y": 0.5
  59. },
  60. "_trs": {
  61. "__type__": "TypedArray",
  62. "ctor": "Float64Array",
  63. "array": [
  64. 0,
  65. 0,
  66. 0,
  67. 0,
  68. 0,
  69. 0,
  70. 1,
  71. 1,
  72. 1,
  73. 1
  74. ]
  75. },
  76. "_eulerAngles": {
  77. "__type__": "cc.Vec3",
  78. "x": 0,
  79. "y": 0,
  80. "z": 0
  81. },
  82. "_skewX": 0,
  83. "_skewY": 0,
  84. "_is3DNode": false,
  85. "_groupIndex": 0,
  86. "groupIndex": 0,
  87. "_id": ""
  88. },
  89. {
  90. "__type__": "cc.Node",
  91. "_name": "alertBG",
  92. "_objFlags": 0,
  93. "_parent": {
  94. "__id__": 1
  95. },
  96. "_children": [
  97. {
  98. "__id__": 3
  99. }
  100. ],
  101. "_active": true,
  102. "_components": [
  103. {
  104. "__id__": 9
  105. }
  106. ],
  107. "_prefab": {
  108. "__id__": 10
  109. },
  110. "_opacity": 255,
  111. "_color": {
  112. "__type__": "cc.Color",
  113. "r": 255,
  114. "g": 255,
  115. "b": 255,
  116. "a": 255
  117. },
  118. "_contentSize": {
  119. "__type__": "cc.Size",
  120. "width": 758,
  121. "height": 398
  122. },
  123. "_anchorPoint": {
  124. "__type__": "cc.Vec2",
  125. "x": 0.5,
  126. "y": 0.5
  127. },
  128. "_trs": {
  129. "__type__": "TypedArray",
  130. "ctor": "Float64Array",
  131. "array": [
  132. 0,
  133. 0,
  134. 0,
  135. 0,
  136. 0,
  137. 0,
  138. 1,
  139. 1,
  140. 1,
  141. 1
  142. ]
  143. },
  144. "_eulerAngles": {
  145. "__type__": "cc.Vec3",
  146. "x": 0,
  147. "y": 0,
  148. "z": 0
  149. },
  150. "_skewX": 0,
  151. "_skewY": 0,
  152. "_is3DNode": false,
  153. "_groupIndex": 0,
  154. "groupIndex": 0,
  155. "_id": ""
  156. },
  157. {
  158. "__type__": "cc.Node",
  159. "_name": "alertTitleBg",
  160. "_objFlags": 0,
  161. "_parent": {
  162. "__id__": 2
  163. },
  164. "_children": [
  165. {
  166. "__id__": 4
  167. }
  168. ],
  169. "_active": true,
  170. "_components": [
  171. {
  172. "__id__": 7
  173. }
  174. ],
  175. "_prefab": {
  176. "__id__": 8
  177. },
  178. "_opacity": 255,
  179. "_color": {
  180. "__type__": "cc.Color",
  181. "r": 255,
  182. "g": 255,
  183. "b": 255,
  184. "a": 255
  185. },
  186. "_contentSize": {
  187. "__type__": "cc.Size",
  188. "width": 703,
  189. "height": 80
  190. },
  191. "_anchorPoint": {
  192. "__type__": "cc.Vec2",
  193. "x": 0.5,
  194. "y": 0.5
  195. },
  196. "_trs": {
  197. "__type__": "TypedArray",
  198. "ctor": "Float64Array",
  199. "array": [
  200. 0,
  201. 133,
  202. 0,
  203. 0,
  204. 0,
  205. 0,
  206. 1,
  207. 1,
  208. 1,
  209. 1
  210. ]
  211. },
  212. "_eulerAngles": {
  213. "__type__": "cc.Vec3",
  214. "x": 0,
  215. "y": 0,
  216. "z": 0
  217. },
  218. "_skewX": 0,
  219. "_skewY": 0,
  220. "_is3DNode": false,
  221. "_groupIndex": 0,
  222. "groupIndex": 0,
  223. "_id": ""
  224. },
  225. {
  226. "__type__": "cc.Node",
  227. "_name": "title",
  228. "_objFlags": 0,
  229. "_parent": {
  230. "__id__": 3
  231. },
  232. "_children": [],
  233. "_active": true,
  234. "_components": [
  235. {
  236. "__id__": 5
  237. }
  238. ],
  239. "_prefab": {
  240. "__id__": 6
  241. },
  242. "_opacity": 255,
  243. "_color": {
  244. "__type__": "cc.Color",
  245. "r": 153,
  246. "g": 98,
  247. "b": 31,
  248. "a": 255
  249. },
  250. "_contentSize": {
  251. "__type__": "cc.Size",
  252. "width": 140,
  253. "height": 40
  254. },
  255. "_anchorPoint": {
  256. "__type__": "cc.Vec2",
  257. "x": 0.5,
  258. "y": 0.5
  259. },
  260. "_trs": {
  261. "__type__": "TypedArray",
  262. "ctor": "Float64Array",
  263. "array": [
  264. 0,
  265. -10,
  266. 0,
  267. 0,
  268. 0,
  269. 0,
  270. 1,
  271. 1,
  272. 1,
  273. 1
  274. ]
  275. },
  276. "_eulerAngles": {
  277. "__type__": "cc.Vec3",
  278. "x": 0,
  279. "y": 0,
  280. "z": 0
  281. },
  282. "_skewX": 0,
  283. "_skewY": 0,
  284. "_is3DNode": false,
  285. "_groupIndex": 0,
  286. "groupIndex": 0,
  287. "_id": ""
  288. },
  289. {
  290. "__type__": "cc.Label",
  291. "_name": "",
  292. "_objFlags": 0,
  293. "node": {
  294. "__id__": 4
  295. },
  296. "_enabled": true,
  297. "_materials": [],
  298. "_useOriginalSize": false,
  299. "_string": "版本更新",
  300. "_N$string": "版本更新",
  301. "_fontSize": 35,
  302. "_lineHeight": 40,
  303. "_enableWrapText": true,
  304. "_N$file": {
  305. "__uuid__": "6e82bca4-2312-41ba-bf07-3e4065619cf9"
  306. },
  307. "_isSystemFontUsed": false,
  308. "_spacingX": 0,
  309. "_batchAsBitmap": false,
  310. "_N$horizontalAlign": 1,
  311. "_N$verticalAlign": 1,
  312. "_N$fontFamily": "Arial",
  313. "_N$overflow": 0,
  314. "_N$cacheMode": 0,
  315. "_id": ""
  316. },
  317. {
  318. "__type__": "cc.PrefabInfo",
  319. "root": {
  320. "__id__": 1
  321. },
  322. "asset": {
  323. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  324. },
  325. "fileId": "2aTt+5D1dGw5tMDPjaOUoF",
  326. "sync": false
  327. },
  328. {
  329. "__type__": "cc.Sprite",
  330. "_name": "",
  331. "_objFlags": 0,
  332. "node": {
  333. "__id__": 3
  334. },
  335. "_enabled": true,
  336. "_materials": [],
  337. "_srcBlendFactor": 770,
  338. "_dstBlendFactor": 771,
  339. "_spriteFrame": {
  340. "__uuid__": "43b9744c-a275-4f39-a1d4-dca02706d6ae"
  341. },
  342. "_type": 0,
  343. "_sizeMode": 0,
  344. "_fillType": 0,
  345. "_fillCenter": {
  346. "__type__": "cc.Vec2",
  347. "x": 0,
  348. "y": 0
  349. },
  350. "_fillStart": 0,
  351. "_fillRange": 0,
  352. "_isTrimmedMode": true,
  353. "_atlas": {
  354. "__uuid__": "6f5c2df6-85b2-49f1-a249-8792a99fdb9f"
  355. },
  356. "_id": ""
  357. },
  358. {
  359. "__type__": "cc.PrefabInfo",
  360. "root": {
  361. "__id__": 1
  362. },
  363. "asset": {
  364. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  365. },
  366. "fileId": "4e3lqOnzpL2bh46Zs70QtX",
  367. "sync": false
  368. },
  369. {
  370. "__type__": "cc.Sprite",
  371. "_name": "",
  372. "_objFlags": 0,
  373. "node": {
  374. "__id__": 2
  375. },
  376. "_enabled": true,
  377. "_materials": [],
  378. "_srcBlendFactor": 770,
  379. "_dstBlendFactor": 771,
  380. "_spriteFrame": {
  381. "__uuid__": "95631e55-51f8-414b-b248-237f3c928790"
  382. },
  383. "_type": 1,
  384. "_sizeMode": 0,
  385. "_fillType": 0,
  386. "_fillCenter": {
  387. "__type__": "cc.Vec2",
  388. "x": 0,
  389. "y": 0
  390. },
  391. "_fillStart": 0,
  392. "_fillRange": 0,
  393. "_isTrimmedMode": true,
  394. "_atlas": {
  395. "__uuid__": "6f5c2df6-85b2-49f1-a249-8792a99fdb9f"
  396. },
  397. "_id": ""
  398. },
  399. {
  400. "__type__": "cc.PrefabInfo",
  401. "root": {
  402. "__id__": 1
  403. },
  404. "asset": {
  405. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  406. },
  407. "fileId": "daweRkpNVDiJyBZIkKuRU1",
  408. "sync": false
  409. },
  410. {
  411. "__type__": "cc.Node",
  412. "_name": "alertInfo",
  413. "_objFlags": 0,
  414. "_parent": {
  415. "__id__": 1
  416. },
  417. "_children": [
  418. {
  419. "__id__": 12
  420. },
  421. {
  422. "__id__": 15
  423. },
  424. {
  425. "__id__": 33
  426. }
  427. ],
  428. "_active": true,
  429. "_components": [],
  430. "_prefab": {
  431. "__id__": 36
  432. },
  433. "_opacity": 255,
  434. "_color": {
  435. "__type__": "cc.Color",
  436. "r": 255,
  437. "g": 255,
  438. "b": 255,
  439. "a": 255
  440. },
  441. "_contentSize": {
  442. "__type__": "cc.Size",
  443. "width": 658,
  444. "height": 114
  445. },
  446. "_anchorPoint": {
  447. "__type__": "cc.Vec2",
  448. "x": 0.5,
  449. "y": 0.5
  450. },
  451. "_trs": {
  452. "__type__": "TypedArray",
  453. "ctor": "Float64Array",
  454. "array": [
  455. 0,
  456. 23,
  457. 0,
  458. 0,
  459. 0,
  460. 0,
  461. 1,
  462. 1,
  463. 1,
  464. 1
  465. ]
  466. },
  467. "_eulerAngles": {
  468. "__type__": "cc.Vec3",
  469. "x": 0,
  470. "y": 0,
  471. "z": 0
  472. },
  473. "_skewX": 0,
  474. "_skewY": 0,
  475. "_is3DNode": false,
  476. "_groupIndex": 0,
  477. "groupIndex": 0,
  478. "_id": ""
  479. },
  480. {
  481. "__type__": "cc.Node",
  482. "_name": "content",
  483. "_objFlags": 0,
  484. "_parent": {
  485. "__id__": 11
  486. },
  487. "_children": [],
  488. "_active": true,
  489. "_components": [
  490. {
  491. "__id__": 13
  492. }
  493. ],
  494. "_prefab": {
  495. "__id__": 14
  496. },
  497. "_opacity": 255,
  498. "_color": {
  499. "__type__": "cc.Color",
  500. "r": 64,
  501. "g": 24,
  502. "b": 0,
  503. "a": 255
  504. },
  505. "_contentSize": {
  506. "__type__": "cc.Size",
  507. "width": 442,
  508. "height": 52
  509. },
  510. "_anchorPoint": {
  511. "__type__": "cc.Vec2",
  512. "x": 0.5,
  513. "y": 0.5
  514. },
  515. "_trs": {
  516. "__type__": "TypedArray",
  517. "ctor": "Float64Array",
  518. "array": [
  519. 0,
  520. 27,
  521. 0,
  522. 0,
  523. 0,
  524. 0,
  525. 1,
  526. 1,
  527. 1,
  528. 1
  529. ]
  530. },
  531. "_eulerAngles": {
  532. "__type__": "cc.Vec3",
  533. "x": 0,
  534. "y": 0,
  535. "z": 0
  536. },
  537. "_skewX": 0,
  538. "_skewY": 0,
  539. "_is3DNode": false,
  540. "_groupIndex": 0,
  541. "groupIndex": 0,
  542. "_id": ""
  543. },
  544. {
  545. "__type__": "cc.Label",
  546. "_name": "",
  547. "_objFlags": 0,
  548. "node": {
  549. "__id__": 12
  550. },
  551. "_enabled": true,
  552. "_materials": [],
  553. "_useOriginalSize": false,
  554. "_string": "新版本已经下载完成,是否立即安装?\n安装过程不消耗流量",
  555. "_N$string": "新版本已经下载完成,是否立即安装?\n安装过程不消耗流量",
  556. "_fontSize": 26,
  557. "_lineHeight": 26,
  558. "_enableWrapText": true,
  559. "_N$file": {
  560. "__uuid__": "6e82bca4-2312-41ba-bf07-3e4065619cf9"
  561. },
  562. "_isSystemFontUsed": false,
  563. "_spacingX": 0,
  564. "_batchAsBitmap": false,
  565. "_N$horizontalAlign": 1,
  566. "_N$verticalAlign": 1,
  567. "_N$fontFamily": "Arial",
  568. "_N$overflow": 3,
  569. "_N$cacheMode": 0,
  570. "_id": ""
  571. },
  572. {
  573. "__type__": "cc.PrefabInfo",
  574. "root": {
  575. "__id__": 1
  576. },
  577. "asset": {
  578. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  579. },
  580. "fileId": "53bXLvFqtCUYPHOIwLCxma",
  581. "sync": false
  582. },
  583. {
  584. "__type__": "cc.Node",
  585. "_name": "prefab_progress",
  586. "_objFlags": 0,
  587. "_parent": {
  588. "__id__": 11
  589. },
  590. "_children": [
  591. {
  592. "__id__": 16
  593. },
  594. {
  595. "__id__": 19
  596. },
  597. {
  598. "__id__": 22
  599. }
  600. ],
  601. "_active": true,
  602. "_components": [
  603. {
  604. "__id__": 29
  605. },
  606. {
  607. "__id__": 30
  608. },
  609. {
  610. "__id__": 31
  611. }
  612. ],
  613. "_prefab": {
  614. "__id__": 32
  615. },
  616. "_opacity": 255,
  617. "_color": {
  618. "__type__": "cc.Color",
  619. "r": 255,
  620. "g": 255,
  621. "b": 255,
  622. "a": 255
  623. },
  624. "_contentSize": {
  625. "__type__": "cc.Size",
  626. "width": 500,
  627. "height": 70
  628. },
  629. "_anchorPoint": {
  630. "__type__": "cc.Vec2",
  631. "x": 0.5,
  632. "y": 0.5
  633. },
  634. "_trs": {
  635. "__type__": "TypedArray",
  636. "ctor": "Float64Array",
  637. "array": [
  638. 2,
  639. -24,
  640. 0,
  641. 0,
  642. 0,
  643. 0,
  644. 1,
  645. 1,
  646. 1,
  647. 1
  648. ]
  649. },
  650. "_eulerAngles": {
  651. "__type__": "cc.Vec3",
  652. "x": 0,
  653. "y": 0,
  654. "z": 0
  655. },
  656. "_skewX": 0,
  657. "_skewY": 0,
  658. "_is3DNode": false,
  659. "_groupIndex": 0,
  660. "groupIndex": 0,
  661. "_id": ""
  662. },
  663. {
  664. "__type__": "cc.Node",
  665. "_name": "background",
  666. "_objFlags": 0,
  667. "_parent": {
  668. "__id__": 15
  669. },
  670. "_children": [],
  671. "_active": true,
  672. "_components": [
  673. {
  674. "__id__": 17
  675. }
  676. ],
  677. "_prefab": {
  678. "__id__": 18
  679. },
  680. "_opacity": 255,
  681. "_color": {
  682. "__type__": "cc.Color",
  683. "r": 255,
  684. "g": 255,
  685. "b": 255,
  686. "a": 255
  687. },
  688. "_contentSize": {
  689. "__type__": "cc.Size",
  690. "width": 478,
  691. "height": 30
  692. },
  693. "_anchorPoint": {
  694. "__type__": "cc.Vec2",
  695. "x": 0.5,
  696. "y": 0.5
  697. },
  698. "_trs": {
  699. "__type__": "TypedArray",
  700. "ctor": "Float64Array",
  701. "array": [
  702. 0,
  703. 0,
  704. 0,
  705. 0,
  706. 0,
  707. 0,
  708. 1,
  709. 1,
  710. 1,
  711. 1
  712. ]
  713. },
  714. "_eulerAngles": {
  715. "__type__": "cc.Vec3",
  716. "x": 0,
  717. "y": 0,
  718. "z": 0
  719. },
  720. "_skewX": 0,
  721. "_skewY": 0,
  722. "_is3DNode": false,
  723. "_groupIndex": 0,
  724. "groupIndex": 0,
  725. "_id": ""
  726. },
  727. {
  728. "__type__": "cc.Sprite",
  729. "_name": "",
  730. "_objFlags": 0,
  731. "node": {
  732. "__id__": 16
  733. },
  734. "_enabled": true,
  735. "_materials": [],
  736. "_srcBlendFactor": 770,
  737. "_dstBlendFactor": 771,
  738. "_spriteFrame": {
  739. "__uuid__": "50f6b0aa-4e55-4f97-a06e-04a3589c14b9"
  740. },
  741. "_type": 1,
  742. "_sizeMode": 0,
  743. "_fillType": 0,
  744. "_fillCenter": {
  745. "__type__": "cc.Vec2",
  746. "x": 0,
  747. "y": 0
  748. },
  749. "_fillStart": 0,
  750. "_fillRange": 0,
  751. "_isTrimmedMode": true,
  752. "_atlas": {
  753. "__uuid__": "6f5c2df6-85b2-49f1-a249-8792a99fdb9f"
  754. },
  755. "_id": ""
  756. },
  757. {
  758. "__type__": "cc.PrefabInfo",
  759. "root": {
  760. "__id__": 1
  761. },
  762. "asset": {
  763. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  764. },
  765. "fileId": "b1rJNY5r9NlZD1cT/jM+rV",
  766. "sync": false
  767. },
  768. {
  769. "__type__": "cc.Node",
  770. "_name": "progress",
  771. "_objFlags": 0,
  772. "_parent": {
  773. "__id__": 15
  774. },
  775. "_children": [],
  776. "_active": true,
  777. "_components": [
  778. {
  779. "__id__": 20
  780. }
  781. ],
  782. "_prefab": {
  783. "__id__": 21
  784. },
  785. "_opacity": 255,
  786. "_color": {
  787. "__type__": "cc.Color",
  788. "r": 255,
  789. "g": 255,
  790. "b": 255,
  791. "a": 255
  792. },
  793. "_contentSize": {
  794. "__type__": "cc.Size",
  795. "width": 478,
  796. "height": 26
  797. },
  798. "_anchorPoint": {
  799. "__type__": "cc.Vec2",
  800. "x": 0.5,
  801. "y": 0.5
  802. },
  803. "_trs": {
  804. "__type__": "TypedArray",
  805. "ctor": "Float64Array",
  806. "array": [
  807. -2,
  808. 0,
  809. 0,
  810. 0,
  811. 0,
  812. 0,
  813. 1,
  814. 1,
  815. 1,
  816. 1
  817. ]
  818. },
  819. "_eulerAngles": {
  820. "__type__": "cc.Vec3",
  821. "x": 0,
  822. "y": 0,
  823. "z": 0
  824. },
  825. "_skewX": 0,
  826. "_skewY": 0,
  827. "_is3DNode": false,
  828. "_groupIndex": 0,
  829. "groupIndex": 0,
  830. "_id": ""
  831. },
  832. {
  833. "__type__": "cc.Sprite",
  834. "_name": "",
  835. "_objFlags": 0,
  836. "node": {
  837. "__id__": 19
  838. },
  839. "_enabled": true,
  840. "_materials": [],
  841. "_srcBlendFactor": 770,
  842. "_dstBlendFactor": 771,
  843. "_spriteFrame": {
  844. "__uuid__": "a3048c18-d41f-4dbc-9769-727d30693f0f"
  845. },
  846. "_type": 3,
  847. "_sizeMode": 0,
  848. "_fillType": 0,
  849. "_fillCenter": {
  850. "__type__": "cc.Vec2",
  851. "x": 0,
  852. "y": 0
  853. },
  854. "_fillStart": 0,
  855. "_fillRange": 0.5,
  856. "_isTrimmedMode": true,
  857. "_atlas": {
  858. "__uuid__": "6f5c2df6-85b2-49f1-a249-8792a99fdb9f"
  859. },
  860. "_id": ""
  861. },
  862. {
  863. "__type__": "cc.PrefabInfo",
  864. "root": {
  865. "__id__": 1
  866. },
  867. "asset": {
  868. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  869. },
  870. "fileId": "0e4iDG5flLOaQ6g8bBVJNZ",
  871. "sync": false
  872. },
  873. {
  874. "__type__": "cc.Node",
  875. "_name": "label",
  876. "_objFlags": 0,
  877. "_parent": {
  878. "__id__": 15
  879. },
  880. "_children": [
  881. {
  882. "__id__": 23
  883. }
  884. ],
  885. "_active": true,
  886. "_components": [
  887. {
  888. "__id__": 27
  889. }
  890. ],
  891. "_prefab": {
  892. "__id__": 28
  893. },
  894. "_opacity": 255,
  895. "_color": {
  896. "__type__": "cc.Color",
  897. "r": 255,
  898. "g": 255,
  899. "b": 255,
  900. "a": 255
  901. },
  902. "_contentSize": {
  903. "__type__": "cc.Size",
  904. "width": 186.76,
  905. "height": 22
  906. },
  907. "_anchorPoint": {
  908. "__type__": "cc.Vec2",
  909. "x": 0.5,
  910. "y": 0.5
  911. },
  912. "_trs": {
  913. "__type__": "TypedArray",
  914. "ctor": "Float64Array",
  915. "array": [
  916. 0,
  917. 0,
  918. 0,
  919. 0,
  920. 0,
  921. 0,
  922. 1,
  923. 1,
  924. 1,
  925. 1
  926. ]
  927. },
  928. "_eulerAngles": {
  929. "__type__": "cc.Vec3",
  930. "x": 0,
  931. "y": 0,
  932. "z": 0
  933. },
  934. "_skewX": 0,
  935. "_skewY": 0,
  936. "_is3DNode": false,
  937. "_groupIndex": 0,
  938. "groupIndex": 0,
  939. "_id": ""
  940. },
  941. {
  942. "__type__": "cc.Node",
  943. "_name": "status",
  944. "_objFlags": 0,
  945. "_parent": {
  946. "__id__": 22
  947. },
  948. "_children": [],
  949. "_active": true,
  950. "_components": [
  951. {
  952. "__id__": 24
  953. },
  954. {
  955. "__id__": 25
  956. }
  957. ],
  958. "_prefab": {
  959. "__id__": 26
  960. },
  961. "_opacity": 255,
  962. "_color": {
  963. "__type__": "cc.Color",
  964. "r": 255,
  965. "g": 255,
  966. "b": 255,
  967. "a": 255
  968. },
  969. "_contentSize": {
  970. "__type__": "cc.Size",
  971. "width": 14,
  972. "height": 16
  973. },
  974. "_anchorPoint": {
  975. "__type__": "cc.Vec2",
  976. "x": 0.5,
  977. "y": 0.5
  978. },
  979. "_trs": {
  980. "__type__": "TypedArray",
  981. "ctor": "Float64Array",
  982. "array": [
  983. -103.33,
  984. 1,
  985. 0,
  986. 0,
  987. 0,
  988. 0,
  989. 1,
  990. 1,
  991. 1,
  992. 1
  993. ]
  994. },
  995. "_eulerAngles": {
  996. "__type__": "cc.Vec3",
  997. "x": 0,
  998. "y": 0,
  999. "z": 0
  1000. },
  1001. "_skewX": 0,
  1002. "_skewY": 0,
  1003. "_is3DNode": false,
  1004. "_groupIndex": 0,
  1005. "groupIndex": 0,
  1006. "_id": ""
  1007. },
  1008. {
  1009. "__type__": "cc.Sprite",
  1010. "_name": "",
  1011. "_objFlags": 0,
  1012. "node": {
  1013. "__id__": 23
  1014. },
  1015. "_enabled": true,
  1016. "_materials": [],
  1017. "_srcBlendFactor": 770,
  1018. "_dstBlendFactor": 771,
  1019. "_spriteFrame": {
  1020. "__uuid__": "4b21f840-a373-40df-aee6-9caa521380b6"
  1021. },
  1022. "_type": 0,
  1023. "_sizeMode": 1,
  1024. "_fillType": 0,
  1025. "_fillCenter": {
  1026. "__type__": "cc.Vec2",
  1027. "x": 0,
  1028. "y": 0
  1029. },
  1030. "_fillStart": 0,
  1031. "_fillRange": 0,
  1032. "_isTrimmedMode": true,
  1033. "_atlas": {
  1034. "__uuid__": "6f5c2df6-85b2-49f1-a249-8792a99fdb9f"
  1035. },
  1036. "_id": ""
  1037. },
  1038. {
  1039. "__type__": "cc.Widget",
  1040. "_name": "",
  1041. "_objFlags": 0,
  1042. "node": {
  1043. "__id__": 23
  1044. },
  1045. "_enabled": true,
  1046. "alignMode": 2,
  1047. "_target": null,
  1048. "_alignFlags": 8,
  1049. "_left": -16.950000000000003,
  1050. "_right": 0,
  1051. "_top": 0,
  1052. "_bottom": 0,
  1053. "_verticalCenter": 0,
  1054. "_horizontalCenter": 0,
  1055. "_isAbsLeft": true,
  1056. "_isAbsRight": true,
  1057. "_isAbsTop": true,
  1058. "_isAbsBottom": true,
  1059. "_isAbsHorizontalCenter": true,
  1060. "_isAbsVerticalCenter": true,
  1061. "_originalWidth": 0,
  1062. "_originalHeight": 0,
  1063. "_id": ""
  1064. },
  1065. {
  1066. "__type__": "cc.PrefabInfo",
  1067. "root": {
  1068. "__id__": 1
  1069. },
  1070. "asset": {
  1071. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  1072. },
  1073. "fileId": "0a4yMi+TRC8q6jmUFukNG5",
  1074. "sync": false
  1075. },
  1076. {
  1077. "__type__": "cc.Label",
  1078. "_name": "",
  1079. "_objFlags": 0,
  1080. "node": {
  1081. "__id__": 22
  1082. },
  1083. "_enabled": true,
  1084. "_materials": [],
  1085. "_useOriginalSize": false,
  1086. "_string": "100% (50.1M/50.1M)",
  1087. "_N$string": "100% (50.1M/50.1M)",
  1088. "_fontSize": 20,
  1089. "_lineHeight": 22,
  1090. "_enableWrapText": true,
  1091. "_N$file": {
  1092. "__uuid__": "6e82bca4-2312-41ba-bf07-3e4065619cf9"
  1093. },
  1094. "_isSystemFontUsed": false,
  1095. "_spacingX": 0,
  1096. "_batchAsBitmap": false,
  1097. "_N$horizontalAlign": 1,
  1098. "_N$verticalAlign": 1,
  1099. "_N$fontFamily": "Arial",
  1100. "_N$overflow": 0,
  1101. "_N$cacheMode": 0,
  1102. "_id": ""
  1103. },
  1104. {
  1105. "__type__": "cc.PrefabInfo",
  1106. "root": {
  1107. "__id__": 1
  1108. },
  1109. "asset": {
  1110. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  1111. },
  1112. "fileId": "fb58Oz5+RFtpSZDp6/EBGx",
  1113. "sync": false
  1114. },
  1115. {
  1116. "__type__": "cc.Sprite",
  1117. "_name": "",
  1118. "_objFlags": 0,
  1119. "node": {
  1120. "__id__": 15
  1121. },
  1122. "_enabled": true,
  1123. "_materials": [],
  1124. "_srcBlendFactor": 770,
  1125. "_dstBlendFactor": 771,
  1126. "_spriteFrame": null,
  1127. "_type": 1,
  1128. "_sizeMode": 0,
  1129. "_fillType": 0,
  1130. "_fillCenter": {
  1131. "__type__": "cc.Vec2",
  1132. "x": 0,
  1133. "y": 0
  1134. },
  1135. "_fillStart": 0,
  1136. "_fillRange": 0,
  1137. "_isTrimmedMode": true,
  1138. "_atlas": null,
  1139. "_id": ""
  1140. },
  1141. {
  1142. "__type__": "cc.Layout",
  1143. "_name": "",
  1144. "_objFlags": 0,
  1145. "node": {
  1146. "__id__": 15
  1147. },
  1148. "_enabled": true,
  1149. "_layoutSize": {
  1150. "__type__": "cc.Size",
  1151. "width": 500,
  1152. "height": 70
  1153. },
  1154. "_resize": 0,
  1155. "_N$layoutType": 0,
  1156. "_N$padding": 0,
  1157. "_N$cellSize": {
  1158. "__type__": "cc.Size",
  1159. "width": 40,
  1160. "height": 40
  1161. },
  1162. "_N$startAxis": 0,
  1163. "_N$paddingLeft": 0,
  1164. "_N$paddingRight": 0,
  1165. "_N$paddingTop": 0,
  1166. "_N$paddingBottom": 0,
  1167. "_N$spacingX": 0,
  1168. "_N$spacingY": 0,
  1169. "_N$verticalDirection": 1,
  1170. "_N$horizontalDirection": 0,
  1171. "_N$affectedByScale": false,
  1172. "_id": ""
  1173. },
  1174. {
  1175. "__type__": "49a24Lg+RpBxKxl6OYuN8QG",
  1176. "_name": "",
  1177. "_objFlags": 0,
  1178. "node": {
  1179. "__id__": 15
  1180. },
  1181. "_enabled": true,
  1182. "backgroundSprite": {
  1183. "__id__": 17
  1184. },
  1185. "progressSprite": {
  1186. "__id__": 20
  1187. },
  1188. "statusSprite": {
  1189. "__id__": 24
  1190. },
  1191. "progressLabel": {
  1192. "__id__": 27
  1193. },
  1194. "_id": ""
  1195. },
  1196. {
  1197. "__type__": "cc.PrefabInfo",
  1198. "root": {
  1199. "__id__": 1
  1200. },
  1201. "asset": {
  1202. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  1203. },
  1204. "fileId": "9fJSww5elL75OTMr+IYqBD",
  1205. "sync": false
  1206. },
  1207. {
  1208. "__type__": "cc.Node",
  1209. "_name": "wifi",
  1210. "_objFlags": 0,
  1211. "_parent": {
  1212. "__id__": 11
  1213. },
  1214. "_children": [],
  1215. "_active": true,
  1216. "_components": [
  1217. {
  1218. "__id__": 34
  1219. }
  1220. ],
  1221. "_prefab": {
  1222. "__id__": 35
  1223. },
  1224. "_opacity": 255,
  1225. "_color": {
  1226. "__type__": "cc.Color",
  1227. "r": 255,
  1228. "g": 0,
  1229. "b": 0,
  1230. "a": 255
  1231. },
  1232. "_contentSize": {
  1233. "__type__": "cc.Size",
  1234. "width": 351.98,
  1235. "height": 22
  1236. },
  1237. "_anchorPoint": {
  1238. "__type__": "cc.Vec2",
  1239. "x": 0.5,
  1240. "y": 0.5
  1241. },
  1242. "_trs": {
  1243. "__type__": "TypedArray",
  1244. "ctor": "Float64Array",
  1245. "array": [
  1246. 0,
  1247. -60,
  1248. 0,
  1249. 0,
  1250. 0,
  1251. 0,
  1252. 1,
  1253. 1,
  1254. 1,
  1255. 1
  1256. ]
  1257. },
  1258. "_eulerAngles": {
  1259. "__type__": "cc.Vec3",
  1260. "x": 0,
  1261. "y": 0,
  1262. "z": 0
  1263. },
  1264. "_skewX": 0,
  1265. "_skewY": 0,
  1266. "_is3DNode": false,
  1267. "_groupIndex": 0,
  1268. "groupIndex": 0,
  1269. "_id": ""
  1270. },
  1271. {
  1272. "__type__": "cc.Label",
  1273. "_name": "",
  1274. "_objFlags": 0,
  1275. "node": {
  1276. "__id__": 33
  1277. },
  1278. "_enabled": true,
  1279. "_materials": [],
  1280. "_useOriginalSize": false,
  1281. "_string": "当前为非WiFi网络,下载会消耗流量",
  1282. "_N$string": "当前为非WiFi网络,下载会消耗流量",
  1283. "_fontSize": 22,
  1284. "_lineHeight": 22,
  1285. "_enableWrapText": true,
  1286. "_N$file": {
  1287. "__uuid__": "6e82bca4-2312-41ba-bf07-3e4065619cf9"
  1288. },
  1289. "_isSystemFontUsed": false,
  1290. "_spacingX": 0,
  1291. "_batchAsBitmap": false,
  1292. "_N$horizontalAlign": 1,
  1293. "_N$verticalAlign": 1,
  1294. "_N$fontFamily": "Arial",
  1295. "_N$overflow": 0,
  1296. "_N$cacheMode": 0,
  1297. "_id": ""
  1298. },
  1299. {
  1300. "__type__": "cc.PrefabInfo",
  1301. "root": {
  1302. "__id__": 1
  1303. },
  1304. "asset": {
  1305. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  1306. },
  1307. "fileId": "88xGrWG55Gwb1Mjmm3lhIv",
  1308. "sync": false
  1309. },
  1310. {
  1311. "__type__": "cc.PrefabInfo",
  1312. "root": {
  1313. "__id__": 1
  1314. },
  1315. "asset": {
  1316. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  1317. },
  1318. "fileId": "baLck2XsNN5qSmVWN510Kj",
  1319. "sync": false
  1320. },
  1321. {
  1322. "__type__": "cc.Node",
  1323. "_name": "alertBtn",
  1324. "_objFlags": 0,
  1325. "_parent": {
  1326. "__id__": 1
  1327. },
  1328. "_children": [
  1329. {
  1330. "__id__": 38
  1331. },
  1332. {
  1333. "__id__": 50
  1334. }
  1335. ],
  1336. "_active": true,
  1337. "_components": [],
  1338. "_prefab": {
  1339. "__id__": 62
  1340. },
  1341. "_opacity": 255,
  1342. "_color": {
  1343. "__type__": "cc.Color",
  1344. "r": 255,
  1345. "g": 255,
  1346. "b": 255,
  1347. "a": 255
  1348. },
  1349. "_contentSize": {
  1350. "__type__": "cc.Size",
  1351. "width": 658,
  1352. "height": 88
  1353. },
  1354. "_anchorPoint": {
  1355. "__type__": "cc.Vec2",
  1356. "x": 0.5,
  1357. "y": 0.5
  1358. },
  1359. "_trs": {
  1360. "__type__": "TypedArray",
  1361. "ctor": "Float64Array",
  1362. "array": [
  1363. -1,
  1364. -101,
  1365. 0,
  1366. 0,
  1367. 0,
  1368. 0,
  1369. 1,
  1370. 1,
  1371. 1,
  1372. 1
  1373. ]
  1374. },
  1375. "_eulerAngles": {
  1376. "__type__": "cc.Vec3",
  1377. "x": 0,
  1378. "y": 0,
  1379. "z": 0
  1380. },
  1381. "_skewX": 0,
  1382. "_skewY": 0,
  1383. "_is3DNode": false,
  1384. "_groupIndex": 0,
  1385. "groupIndex": 0,
  1386. "_id": ""
  1387. },
  1388. {
  1389. "__type__": "cc.Node",
  1390. "_name": "prefab_button_green",
  1391. "_objFlags": 0,
  1392. "_parent": {
  1393. "__id__": 37
  1394. },
  1395. "_children": [
  1396. {
  1397. "__id__": 39
  1398. }
  1399. ],
  1400. "_active": true,
  1401. "_components": [
  1402. {
  1403. "__id__": 45
  1404. },
  1405. {
  1406. "__id__": 46
  1407. },
  1408. {
  1409. "__id__": 47
  1410. },
  1411. {
  1412. "__id__": 48
  1413. }
  1414. ],
  1415. "_prefab": {
  1416. "__id__": 49
  1417. },
  1418. "_opacity": 255,
  1419. "_color": {
  1420. "__type__": "cc.Color",
  1421. "r": 255,
  1422. "g": 255,
  1423. "b": 255,
  1424. "a": 255
  1425. },
  1426. "_contentSize": {
  1427. "__type__": "cc.Size",
  1428. "width": 188,
  1429. "height": 88
  1430. },
  1431. "_anchorPoint": {
  1432. "__type__": "cc.Vec2",
  1433. "x": 0.5,
  1434. "y": 0.5
  1435. },
  1436. "_trs": {
  1437. "__type__": "TypedArray",
  1438. "ctor": "Float64Array",
  1439. "array": [
  1440. -141,
  1441. 1,
  1442. 0,
  1443. 0,
  1444. 0,
  1445. 0,
  1446. 1,
  1447. 1,
  1448. 1,
  1449. 1
  1450. ]
  1451. },
  1452. "_eulerAngles": {
  1453. "__type__": "cc.Vec3",
  1454. "x": 0,
  1455. "y": 0,
  1456. "z": 0
  1457. },
  1458. "_skewX": 0,
  1459. "_skewY": 0,
  1460. "_is3DNode": false,
  1461. "_groupIndex": 0,
  1462. "groupIndex": 0,
  1463. "_id": ""
  1464. },
  1465. {
  1466. "__type__": "cc.Node",
  1467. "_name": "richText",
  1468. "_objFlags": 0,
  1469. "_parent": {
  1470. "__id__": 38
  1471. },
  1472. "_children": [
  1473. {
  1474. "__id__": 40
  1475. }
  1476. ],
  1477. "_active": true,
  1478. "_components": [
  1479. {
  1480. "__id__": 43
  1481. }
  1482. ],
  1483. "_prefab": {
  1484. "__id__": 44
  1485. },
  1486. "_opacity": 255,
  1487. "_color": {
  1488. "__type__": "cc.Color",
  1489. "r": 23,
  1490. "g": 23,
  1491. "b": 23,
  1492. "a": 255
  1493. },
  1494. "_contentSize": {
  1495. "__type__": "cc.Size",
  1496. "width": 128,
  1497. "height": 50
  1498. },
  1499. "_anchorPoint": {
  1500. "__type__": "cc.Vec2",
  1501. "x": 0.5,
  1502. "y": 0.5
  1503. },
  1504. "_trs": {
  1505. "__type__": "TypedArray",
  1506. "ctor": "Float64Array",
  1507. "array": [
  1508. 0,
  1509. 0,
  1510. 0,
  1511. 0,
  1512. 0,
  1513. 0,
  1514. 1,
  1515. 1,
  1516. 1,
  1517. 1
  1518. ]
  1519. },
  1520. "_eulerAngles": {
  1521. "__type__": "cc.Vec3",
  1522. "x": 0,
  1523. "y": 0,
  1524. "z": 0
  1525. },
  1526. "_skewX": 0,
  1527. "_skewY": 0,
  1528. "_is3DNode": false,
  1529. "_groupIndex": 0,
  1530. "groupIndex": 0,
  1531. "_id": ""
  1532. },
  1533. {
  1534. "__type__": "cc.PrivateNode",
  1535. "_name": "RICHTEXT_CHILD",
  1536. "_objFlags": 0,
  1537. "_parent": {
  1538. "__id__": 39
  1539. },
  1540. "_children": [],
  1541. "_active": false,
  1542. "_components": [
  1543. {
  1544. "__id__": 41
  1545. }
  1546. ],
  1547. "_prefab": {
  1548. "__id__": 42
  1549. },
  1550. "_opacity": 255,
  1551. "_color": {
  1552. "__type__": "cc.Color",
  1553. "r": 23,
  1554. "g": 23,
  1555. "b": 23,
  1556. "a": 255
  1557. },
  1558. "_contentSize": {
  1559. "__type__": "cc.Size",
  1560. "width": 128,
  1561. "height": 50
  1562. },
  1563. "_anchorPoint": {
  1564. "__type__": "cc.Vec2",
  1565. "x": 0,
  1566. "y": 0
  1567. },
  1568. "_position": {
  1569. "__type__": "cc.Vec3",
  1570. "x": -64,
  1571. "y": -25,
  1572. "z": 0
  1573. },
  1574. "_scale": {
  1575. "__type__": "cc.Vec3",
  1576. "x": 1,
  1577. "y": 1,
  1578. "z": 1
  1579. },
  1580. "_trs": {
  1581. "__type__": "TypedArray",
  1582. "ctor": "Float64Array",
  1583. "array": [
  1584. 0,
  1585. 0,
  1586. 0,
  1587. 0,
  1588. 0,
  1589. 0,
  1590. 1,
  1591. 1,
  1592. 1,
  1593. 1
  1594. ]
  1595. },
  1596. "_eulerAngles": {
  1597. "__type__": "cc.Vec3",
  1598. "x": 0,
  1599. "y": 0,
  1600. "z": 0
  1601. },
  1602. "_skewX": 0,
  1603. "_skewY": 0,
  1604. "_zIndex": -32768,
  1605. "_is3DNode": false,
  1606. "_groupIndex": 0,
  1607. "groupIndex": 0,
  1608. "showInEditor": false,
  1609. "_id": ""
  1610. },
  1611. {
  1612. "__type__": "cc.Label",
  1613. "_name": "",
  1614. "_objFlags": 0,
  1615. "node": {
  1616. "__id__": 40
  1617. },
  1618. "_enabled": true,
  1619. "_materials": [],
  1620. "_useOriginalSize": true,
  1621. "_string": "退出游戏",
  1622. "_N$string": "退出游戏",
  1623. "_fontSize": 32,
  1624. "_lineHeight": 50,
  1625. "_enableWrapText": true,
  1626. "_N$file": {
  1627. "__uuid__": "6e82bca4-2312-41ba-bf07-3e4065619cf9"
  1628. },
  1629. "_isSystemFontUsed": false,
  1630. "_spacingX": 0,
  1631. "_batchAsBitmap": false,
  1632. "_N$horizontalAlign": 0,
  1633. "_N$verticalAlign": 1,
  1634. "_N$fontFamily": "Arial",
  1635. "_N$overflow": 0,
  1636. "_N$cacheMode": 0,
  1637. "_id": ""
  1638. },
  1639. {
  1640. "__type__": "cc.PrefabInfo",
  1641. "root": {
  1642. "__id__": 1
  1643. },
  1644. "asset": {
  1645. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  1646. },
  1647. "fileId": "ccAD0A7uVM3LpTEKoVXaHD",
  1648. "sync": false
  1649. },
  1650. {
  1651. "__type__": "cc.RichText",
  1652. "_name": "",
  1653. "_objFlags": 0,
  1654. "node": {
  1655. "__id__": 39
  1656. },
  1657. "_enabled": true,
  1658. "_fontFamily": "Arial",
  1659. "_isSystemFontUsed": false,
  1660. "_N$string": "退出游戏",
  1661. "_N$horizontalAlign": 1,
  1662. "_N$fontSize": 32,
  1663. "_N$font": {
  1664. "__uuid__": "6e82bca4-2312-41ba-bf07-3e4065619cf9"
  1665. },
  1666. "_N$maxWidth": 0,
  1667. "_N$lineHeight": 50,
  1668. "_N$imageAtlas": null,
  1669. "_N$handleTouchEvent": true,
  1670. "_id": ""
  1671. },
  1672. {
  1673. "__type__": "cc.PrefabInfo",
  1674. "root": {
  1675. "__id__": 1
  1676. },
  1677. "asset": {
  1678. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  1679. },
  1680. "fileId": "83FhhynbFNVoX/f5PI+l4q",
  1681. "sync": false
  1682. },
  1683. {
  1684. "__type__": "cc.Sprite",
  1685. "_name": "",
  1686. "_objFlags": 0,
  1687. "node": {
  1688. "__id__": 38
  1689. },
  1690. "_enabled": true,
  1691. "_materials": [],
  1692. "_srcBlendFactor": 770,
  1693. "_dstBlendFactor": 771,
  1694. "_spriteFrame": {
  1695. "__uuid__": "b71babe4-862a-4cce-acb6-58e0c4b73edf"
  1696. },
  1697. "_type": 1,
  1698. "_sizeMode": 0,
  1699. "_fillType": 0,
  1700. "_fillCenter": {
  1701. "__type__": "cc.Vec2",
  1702. "x": 0,
  1703. "y": 0
  1704. },
  1705. "_fillStart": 0,
  1706. "_fillRange": 0,
  1707. "_isTrimmedMode": true,
  1708. "_atlas": {
  1709. "__uuid__": "3905bccb-bbf8-4db7-9c38-2343245ba06b"
  1710. },
  1711. "_id": ""
  1712. },
  1713. {
  1714. "__type__": "cc.Button",
  1715. "_name": "",
  1716. "_objFlags": 0,
  1717. "node": {
  1718. "__id__": 38
  1719. },
  1720. "_enabled": true,
  1721. "_normalMaterial": null,
  1722. "_grayMaterial": null,
  1723. "duration": 0.1,
  1724. "zoomScale": 1.2,
  1725. "clickEvents": [],
  1726. "_N$interactable": true,
  1727. "_N$enableAutoGrayEffect": true,
  1728. "_N$transition": 1,
  1729. "transition": 1,
  1730. "_N$normalColor": {
  1731. "__type__": "cc.Color",
  1732. "r": 255,
  1733. "g": 255,
  1734. "b": 255,
  1735. "a": 255
  1736. },
  1737. "_N$pressedColor": {
  1738. "__type__": "cc.Color",
  1739. "r": 155,
  1740. "g": 155,
  1741. "b": 155,
  1742. "a": 255
  1743. },
  1744. "pressedColor": {
  1745. "__type__": "cc.Color",
  1746. "r": 155,
  1747. "g": 155,
  1748. "b": 155,
  1749. "a": 255
  1750. },
  1751. "_N$hoverColor": {
  1752. "__type__": "cc.Color",
  1753. "r": 255,
  1754. "g": 255,
  1755. "b": 255,
  1756. "a": 255
  1757. },
  1758. "hoverColor": {
  1759. "__type__": "cc.Color",
  1760. "r": 255,
  1761. "g": 255,
  1762. "b": 255,
  1763. "a": 255
  1764. },
  1765. "_N$disabledColor": {
  1766. "__type__": "cc.Color",
  1767. "r": 255,
  1768. "g": 255,
  1769. "b": 255,
  1770. "a": 255
  1771. },
  1772. "_N$normalSprite": {
  1773. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1774. },
  1775. "_N$pressedSprite": {
  1776. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1777. },
  1778. "pressedSprite": {
  1779. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1780. },
  1781. "_N$hoverSprite": {
  1782. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1783. },
  1784. "hoverSprite": {
  1785. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1786. },
  1787. "_N$disabledSprite": {
  1788. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1789. },
  1790. "_N$target": {
  1791. "__id__": 38
  1792. },
  1793. "_id": ""
  1794. },
  1795. {
  1796. "__type__": "e4f5d8RjqtEt7DmSwWW+VtU",
  1797. "_name": "",
  1798. "_objFlags": 0,
  1799. "node": {
  1800. "__id__": 38
  1801. },
  1802. "_enabled": true,
  1803. "_id": ""
  1804. },
  1805. {
  1806. "__type__": "70a2bJBRohCmqgoC/xm65fj",
  1807. "_name": "",
  1808. "_objFlags": 0,
  1809. "node": {
  1810. "__id__": 38
  1811. },
  1812. "_enabled": true,
  1813. "spriteNameFormat": "btn_label_a1_%s",
  1814. "button": {
  1815. "__id__": 46
  1816. },
  1817. "sprite": {
  1818. "__id__": 45
  1819. },
  1820. "label": {
  1821. "__id__": 43
  1822. },
  1823. "spriteAtlas": {
  1824. "__uuid__": "3905bccb-bbf8-4db7-9c38-2343245ba06b"
  1825. },
  1826. "_buttonType": 1,
  1827. "_interactable": true,
  1828. "_title": "退出游戏",
  1829. "_disabledTitle": "",
  1830. "_id": ""
  1831. },
  1832. {
  1833. "__type__": "cc.PrefabInfo",
  1834. "root": {
  1835. "__id__": 1
  1836. },
  1837. "asset": {
  1838. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  1839. },
  1840. "fileId": "daLO7m5gBGkbp6Erv83Ntr",
  1841. "sync": false
  1842. },
  1843. {
  1844. "__type__": "cc.Node",
  1845. "_name": "prefab_button_yellow",
  1846. "_objFlags": 0,
  1847. "_parent": {
  1848. "__id__": 37
  1849. },
  1850. "_children": [
  1851. {
  1852. "__id__": 51
  1853. }
  1854. ],
  1855. "_active": true,
  1856. "_components": [
  1857. {
  1858. "__id__": 57
  1859. },
  1860. {
  1861. "__id__": 58
  1862. },
  1863. {
  1864. "__id__": 59
  1865. },
  1866. {
  1867. "__id__": 60
  1868. }
  1869. ],
  1870. "_prefab": {
  1871. "__id__": 61
  1872. },
  1873. "_opacity": 255,
  1874. "_color": {
  1875. "__type__": "cc.Color",
  1876. "r": 255,
  1877. "g": 255,
  1878. "b": 255,
  1879. "a": 255
  1880. },
  1881. "_contentSize": {
  1882. "__type__": "cc.Size",
  1883. "width": 188,
  1884. "height": 88
  1885. },
  1886. "_anchorPoint": {
  1887. "__type__": "cc.Vec2",
  1888. "x": 0.5,
  1889. "y": 0.5
  1890. },
  1891. "_trs": {
  1892. "__type__": "TypedArray",
  1893. "ctor": "Float64Array",
  1894. "array": [
  1895. 142,
  1896. 1,
  1897. 0,
  1898. 0,
  1899. 0,
  1900. 0,
  1901. 1,
  1902. 1,
  1903. 1,
  1904. 1
  1905. ]
  1906. },
  1907. "_eulerAngles": {
  1908. "__type__": "cc.Vec3",
  1909. "x": 0,
  1910. "y": 0,
  1911. "z": 0
  1912. },
  1913. "_skewX": 0,
  1914. "_skewY": 0,
  1915. "_is3DNode": false,
  1916. "_groupIndex": 0,
  1917. "groupIndex": 0,
  1918. "_id": ""
  1919. },
  1920. {
  1921. "__type__": "cc.Node",
  1922. "_name": "richText",
  1923. "_objFlags": 0,
  1924. "_parent": {
  1925. "__id__": 50
  1926. },
  1927. "_children": [
  1928. {
  1929. "__id__": 52
  1930. }
  1931. ],
  1932. "_active": true,
  1933. "_components": [
  1934. {
  1935. "__id__": 55
  1936. }
  1937. ],
  1938. "_prefab": {
  1939. "__id__": 56
  1940. },
  1941. "_opacity": 255,
  1942. "_color": {
  1943. "__type__": "cc.Color",
  1944. "r": 23,
  1945. "g": 23,
  1946. "b": 23,
  1947. "a": 255
  1948. },
  1949. "_contentSize": {
  1950. "__type__": "cc.Size",
  1951. "width": 128,
  1952. "height": 50
  1953. },
  1954. "_anchorPoint": {
  1955. "__type__": "cc.Vec2",
  1956. "x": 0.5,
  1957. "y": 0.5
  1958. },
  1959. "_trs": {
  1960. "__type__": "TypedArray",
  1961. "ctor": "Float64Array",
  1962. "array": [
  1963. 0,
  1964. 0,
  1965. 0,
  1966. 0,
  1967. 0,
  1968. 0,
  1969. 1,
  1970. 1,
  1971. 1,
  1972. 1
  1973. ]
  1974. },
  1975. "_eulerAngles": {
  1976. "__type__": "cc.Vec3",
  1977. "x": 0,
  1978. "y": 0,
  1979. "z": 0
  1980. },
  1981. "_skewX": 0,
  1982. "_skewY": 0,
  1983. "_is3DNode": false,
  1984. "_groupIndex": 0,
  1985. "groupIndex": 0,
  1986. "_id": ""
  1987. },
  1988. {
  1989. "__type__": "cc.PrivateNode",
  1990. "_name": "RICHTEXT_CHILD",
  1991. "_objFlags": 0,
  1992. "_parent": {
  1993. "__id__": 51
  1994. },
  1995. "_children": [],
  1996. "_active": false,
  1997. "_components": [
  1998. {
  1999. "__id__": 53
  2000. }
  2001. ],
  2002. "_prefab": {
  2003. "__id__": 54
  2004. },
  2005. "_opacity": 255,
  2006. "_color": {
  2007. "__type__": "cc.Color",
  2008. "r": 23,
  2009. "g": 23,
  2010. "b": 23,
  2011. "a": 255
  2012. },
  2013. "_contentSize": {
  2014. "__type__": "cc.Size",
  2015. "width": 128,
  2016. "height": 50
  2017. },
  2018. "_anchorPoint": {
  2019. "__type__": "cc.Vec2",
  2020. "x": 0,
  2021. "y": 0
  2022. },
  2023. "_position": {
  2024. "__type__": "cc.Vec3",
  2025. "x": -64,
  2026. "y": -25,
  2027. "z": 0
  2028. },
  2029. "_scale": {
  2030. "__type__": "cc.Vec3",
  2031. "x": 1,
  2032. "y": 1,
  2033. "z": 1
  2034. },
  2035. "_trs": {
  2036. "__type__": "TypedArray",
  2037. "ctor": "Float64Array",
  2038. "array": [
  2039. 0,
  2040. 0,
  2041. 0,
  2042. 0,
  2043. 0,
  2044. 0,
  2045. 1,
  2046. 1,
  2047. 1,
  2048. 1
  2049. ]
  2050. },
  2051. "_eulerAngles": {
  2052. "__type__": "cc.Vec3",
  2053. "x": 0,
  2054. "y": 0,
  2055. "z": 0
  2056. },
  2057. "_skewX": 0,
  2058. "_skewY": 0,
  2059. "_zIndex": -32768,
  2060. "_is3DNode": false,
  2061. "_groupIndex": 0,
  2062. "groupIndex": 0,
  2063. "showInEditor": false,
  2064. "_id": ""
  2065. },
  2066. {
  2067. "__type__": "cc.Label",
  2068. "_name": "",
  2069. "_objFlags": 0,
  2070. "node": {
  2071. "__id__": 52
  2072. },
  2073. "_enabled": true,
  2074. "_materials": [],
  2075. "_useOriginalSize": true,
  2076. "_string": "立刻更新",
  2077. "_N$string": "立刻更新",
  2078. "_fontSize": 32,
  2079. "_lineHeight": 50,
  2080. "_enableWrapText": true,
  2081. "_N$file": {
  2082. "__uuid__": "6e82bca4-2312-41ba-bf07-3e4065619cf9"
  2083. },
  2084. "_isSystemFontUsed": false,
  2085. "_spacingX": 0,
  2086. "_batchAsBitmap": false,
  2087. "_N$horizontalAlign": 0,
  2088. "_N$verticalAlign": 1,
  2089. "_N$fontFamily": "Arial",
  2090. "_N$overflow": 0,
  2091. "_N$cacheMode": 0,
  2092. "_id": ""
  2093. },
  2094. {
  2095. "__type__": "cc.PrefabInfo",
  2096. "root": {
  2097. "__id__": 1
  2098. },
  2099. "asset": {
  2100. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  2101. },
  2102. "fileId": "5e2oTbhNpC+rmTTlljRp+S",
  2103. "sync": false
  2104. },
  2105. {
  2106. "__type__": "cc.RichText",
  2107. "_name": "",
  2108. "_objFlags": 0,
  2109. "node": {
  2110. "__id__": 51
  2111. },
  2112. "_enabled": true,
  2113. "_fontFamily": "Arial",
  2114. "_isSystemFontUsed": false,
  2115. "_N$string": "立刻更新",
  2116. "_N$horizontalAlign": 1,
  2117. "_N$fontSize": 32,
  2118. "_N$font": {
  2119. "__uuid__": "6e82bca4-2312-41ba-bf07-3e4065619cf9"
  2120. },
  2121. "_N$maxWidth": 0,
  2122. "_N$lineHeight": 50,
  2123. "_N$imageAtlas": null,
  2124. "_N$handleTouchEvent": true,
  2125. "_id": ""
  2126. },
  2127. {
  2128. "__type__": "cc.PrefabInfo",
  2129. "root": {
  2130. "__id__": 1
  2131. },
  2132. "asset": {
  2133. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  2134. },
  2135. "fileId": "b1guojsCFEOa6vPHxQnjmk",
  2136. "sync": false
  2137. },
  2138. {
  2139. "__type__": "cc.Sprite",
  2140. "_name": "",
  2141. "_objFlags": 0,
  2142. "node": {
  2143. "__id__": 50
  2144. },
  2145. "_enabled": true,
  2146. "_materials": [],
  2147. "_srcBlendFactor": 770,
  2148. "_dstBlendFactor": 771,
  2149. "_spriteFrame": {
  2150. "__uuid__": "5271a05d-b867-41ef-91b5-c0d7117abc73"
  2151. },
  2152. "_type": 1,
  2153. "_sizeMode": 0,
  2154. "_fillType": 0,
  2155. "_fillCenter": {
  2156. "__type__": "cc.Vec2",
  2157. "x": 0,
  2158. "y": 0
  2159. },
  2160. "_fillStart": 0,
  2161. "_fillRange": 0,
  2162. "_isTrimmedMode": true,
  2163. "_atlas": {
  2164. "__uuid__": "3905bccb-bbf8-4db7-9c38-2343245ba06b"
  2165. },
  2166. "_id": ""
  2167. },
  2168. {
  2169. "__type__": "cc.Button",
  2170. "_name": "",
  2171. "_objFlags": 0,
  2172. "node": {
  2173. "__id__": 50
  2174. },
  2175. "_enabled": true,
  2176. "_normalMaterial": null,
  2177. "_grayMaterial": null,
  2178. "duration": 0.1,
  2179. "zoomScale": 1.2,
  2180. "clickEvents": [],
  2181. "_N$interactable": true,
  2182. "_N$enableAutoGrayEffect": true,
  2183. "_N$transition": 1,
  2184. "transition": 1,
  2185. "_N$normalColor": {
  2186. "__type__": "cc.Color",
  2187. "r": 255,
  2188. "g": 255,
  2189. "b": 255,
  2190. "a": 255
  2191. },
  2192. "_N$pressedColor": {
  2193. "__type__": "cc.Color",
  2194. "r": 155,
  2195. "g": 155,
  2196. "b": 155,
  2197. "a": 255
  2198. },
  2199. "pressedColor": {
  2200. "__type__": "cc.Color",
  2201. "r": 155,
  2202. "g": 155,
  2203. "b": 155,
  2204. "a": 255
  2205. },
  2206. "_N$hoverColor": {
  2207. "__type__": "cc.Color",
  2208. "r": 255,
  2209. "g": 255,
  2210. "b": 255,
  2211. "a": 255
  2212. },
  2213. "hoverColor": {
  2214. "__type__": "cc.Color",
  2215. "r": 255,
  2216. "g": 255,
  2217. "b": 255,
  2218. "a": 255
  2219. },
  2220. "_N$disabledColor": {
  2221. "__type__": "cc.Color",
  2222. "r": 255,
  2223. "g": 255,
  2224. "b": 255,
  2225. "a": 255
  2226. },
  2227. "_N$normalSprite": {
  2228. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2229. },
  2230. "_N$pressedSprite": {
  2231. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2232. },
  2233. "pressedSprite": {
  2234. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2235. },
  2236. "_N$hoverSprite": {
  2237. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2238. },
  2239. "hoverSprite": {
  2240. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2241. },
  2242. "_N$disabledSprite": {
  2243. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2244. },
  2245. "_N$target": {
  2246. "__id__": 50
  2247. },
  2248. "_id": ""
  2249. },
  2250. {
  2251. "__type__": "e4f5d8RjqtEt7DmSwWW+VtU",
  2252. "_name": "",
  2253. "_objFlags": 0,
  2254. "node": {
  2255. "__id__": 50
  2256. },
  2257. "_enabled": true,
  2258. "_id": ""
  2259. },
  2260. {
  2261. "__type__": "70a2bJBRohCmqgoC/xm65fj",
  2262. "_name": "",
  2263. "_objFlags": 0,
  2264. "node": {
  2265. "__id__": 50
  2266. },
  2267. "_enabled": true,
  2268. "spriteNameFormat": "btn_label_a1_%s",
  2269. "button": {
  2270. "__id__": 58
  2271. },
  2272. "sprite": {
  2273. "__id__": 57
  2274. },
  2275. "label": {
  2276. "__id__": 55
  2277. },
  2278. "spriteAtlas": {
  2279. "__uuid__": "3905bccb-bbf8-4db7-9c38-2343245ba06b"
  2280. },
  2281. "_buttonType": 3,
  2282. "_interactable": true,
  2283. "_title": "立刻更新",
  2284. "_disabledTitle": "",
  2285. "_id": ""
  2286. },
  2287. {
  2288. "__type__": "cc.PrefabInfo",
  2289. "root": {
  2290. "__id__": 1
  2291. },
  2292. "asset": {
  2293. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  2294. },
  2295. "fileId": "125VbEwLNAWL47RNMp2tQ6",
  2296. "sync": false
  2297. },
  2298. {
  2299. "__type__": "cc.PrefabInfo",
  2300. "root": {
  2301. "__id__": 1
  2302. },
  2303. "asset": {
  2304. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  2305. },
  2306. "fileId": "12aXeA2hlHOqjMiBssHyA5",
  2307. "sync": false
  2308. },
  2309. {
  2310. "__type__": "10afdM/DENMRo9dabFkdDQk",
  2311. "_name": "",
  2312. "_objFlags": 0,
  2313. "node": {
  2314. "__id__": 1
  2315. },
  2316. "_enabled": true,
  2317. "contentLabel": {
  2318. "__id__": 13
  2319. },
  2320. "progressNode": {
  2321. "__id__": 15
  2322. },
  2323. "wifiNode": {
  2324. "__id__": 33
  2325. },
  2326. "greenNode": {
  2327. "__id__": 38
  2328. },
  2329. "yellowNode": {
  2330. "__id__": 50
  2331. },
  2332. "bannerNode": null,
  2333. "awardNode": null,
  2334. "_alertName": "prefab_update_alert",
  2335. "_id": ""
  2336. },
  2337. {
  2338. "__type__": "cc.BlockInputEvents",
  2339. "_name": "",
  2340. "_objFlags": 0,
  2341. "node": {
  2342. "__id__": 1
  2343. },
  2344. "_enabled": true,
  2345. "_id": ""
  2346. },
  2347. {
  2348. "__type__": "cc.PrefabInfo",
  2349. "root": {
  2350. "__id__": 1
  2351. },
  2352. "asset": {
  2353. "__uuid__": "6dde33af-1e4e-4281-96e9-32ec0fc3a3ef"
  2354. },
  2355. "fileId": "253UJ/v0lDHYMMZggrSjXp",
  2356. "sync": false
  2357. }
  2358. ]