debug.prefab 64 KB

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