prefab_update_award_banner_alert.prefab 63 KB

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