matching.fire 61 KB

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