InsLevelUI.prefab 67 KB

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