GameUI.prefab 67 KB

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