prefab_update_banner_alert.prefab 45 KB

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