Game.fire 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009
  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. "_active": false,
  21. "_components": [],
  22. "_prefab": null,
  23. "_opacity": 255,
  24. "_color": {
  25. "__type__": "cc.Color",
  26. "r": 255,
  27. "g": 255,
  28. "b": 255,
  29. "a": 255
  30. },
  31. "_contentSize": {
  32. "__type__": "cc.Size",
  33. "width": 0,
  34. "height": 0
  35. },
  36. "_anchorPoint": {
  37. "__type__": "cc.Vec2",
  38. "x": 0,
  39. "y": 0
  40. },
  41. "_trs": {
  42. "__type__": "TypedArray",
  43. "ctor": "Float64Array",
  44. "array": [
  45. 0,
  46. 0,
  47. 0,
  48. 0,
  49. 0,
  50. 0,
  51. 1,
  52. 1,
  53. 1,
  54. 1
  55. ]
  56. },
  57. "_is3DNode": true,
  58. "_groupIndex": 0,
  59. "groupIndex": 0,
  60. "autoReleaseAssets": false,
  61. "_id": "d63cc9fa-b530-4024-b7c5-e78eaf9bc9ad"
  62. },
  63. {
  64. "__type__": "cc.Node",
  65. "_name": "Canvas",
  66. "_objFlags": 0,
  67. "_parent": {
  68. "__id__": 1
  69. },
  70. "_children": [
  71. {
  72. "__id__": 3
  73. },
  74. {
  75. "__id__": 5
  76. },
  77. {
  78. "__id__": 7
  79. },
  80. {
  81. "__id__": 18
  82. },
  83. {
  84. "__id__": 47
  85. }
  86. ],
  87. "_active": true,
  88. "_components": [
  89. {
  90. "__id__": 66
  91. },
  92. {
  93. "__id__": 67
  94. },
  95. {
  96. "__id__": 68
  97. }
  98. ],
  99. "_prefab": null,
  100. "_opacity": 255,
  101. "_color": {
  102. "__type__": "cc.Color",
  103. "r": 255,
  104. "g": 255,
  105. "b": 255,
  106. "a": 255
  107. },
  108. "_contentSize": {
  109. "__type__": "cc.Size",
  110. "width": 1280,
  111. "height": 720
  112. },
  113. "_anchorPoint": {
  114. "__type__": "cc.Vec2",
  115. "x": 0.5,
  116. "y": 0.5
  117. },
  118. "_trs": {
  119. "__type__": "TypedArray",
  120. "ctor": "Float64Array",
  121. "array": [
  122. 640,
  123. 360,
  124. 0,
  125. 0,
  126. 0,
  127. 0,
  128. 1,
  129. 1,
  130. 1,
  131. 1
  132. ]
  133. },
  134. "_eulerAngles": {
  135. "__type__": "cc.Vec3",
  136. "x": 0,
  137. "y": 0,
  138. "z": 0
  139. },
  140. "_skewX": 0,
  141. "_skewY": 0,
  142. "_is3DNode": false,
  143. "_groupIndex": 0,
  144. "groupIndex": 0,
  145. "_id": "69In7FW49CtqSkIooavBrz"
  146. },
  147. {
  148. "__type__": "cc.Node",
  149. "_name": "Main Camera",
  150. "_objFlags": 0,
  151. "_parent": {
  152. "__id__": 2
  153. },
  154. "_children": [],
  155. "_active": true,
  156. "_components": [
  157. {
  158. "__id__": 4
  159. }
  160. ],
  161. "_prefab": null,
  162. "_opacity": 255,
  163. "_color": {
  164. "__type__": "cc.Color",
  165. "r": 255,
  166. "g": 255,
  167. "b": 255,
  168. "a": 255
  169. },
  170. "_contentSize": {
  171. "__type__": "cc.Size",
  172. "width": 0,
  173. "height": 0
  174. },
  175. "_anchorPoint": {
  176. "__type__": "cc.Vec2",
  177. "x": 0.5,
  178. "y": 0.5
  179. },
  180. "_trs": {
  181. "__type__": "TypedArray",
  182. "ctor": "Float64Array",
  183. "array": [
  184. 0,
  185. 0,
  186. 224.3005828857422,
  187. 0,
  188. 0,
  189. 0,
  190. 1,
  191. 1,
  192. 1,
  193. 1
  194. ]
  195. },
  196. "_eulerAngles": {
  197. "__type__": "cc.Vec3",
  198. "x": 0,
  199. "y": 0,
  200. "z": 0
  201. },
  202. "_skewX": 0,
  203. "_skewY": 0,
  204. "_is3DNode": false,
  205. "_groupIndex": 0,
  206. "groupIndex": 0,
  207. "_id": "abXbn9ntlPzoUB5OMHyL/r"
  208. },
  209. {
  210. "__type__": "cc.Camera",
  211. "_name": "",
  212. "_objFlags": 0,
  213. "node": {
  214. "__id__": 3
  215. },
  216. "_enabled": true,
  217. "_cullingMask": 4294967295,
  218. "_clearFlags": 7,
  219. "_backgroundColor": {
  220. "__type__": "cc.Color",
  221. "r": 0,
  222. "g": 0,
  223. "b": 0,
  224. "a": 255
  225. },
  226. "_depth": -1,
  227. "_zoomRatio": 1,
  228. "_targetTexture": null,
  229. "_fov": 60,
  230. "_orthoSize": 10,
  231. "_nearClip": 1,
  232. "_farClip": 4096,
  233. "_ortho": true,
  234. "_rect": {
  235. "__type__": "cc.Rect",
  236. "x": 0,
  237. "y": 0,
  238. "width": 1,
  239. "height": 1
  240. },
  241. "_renderStages": 1,
  242. "_id": "531jpHhy1HB4VoVPi6dDwD"
  243. },
  244. {
  245. "__type__": "cc.Node",
  246. "_name": "Map",
  247. "_objFlags": 0,
  248. "_parent": {
  249. "__id__": 2
  250. },
  251. "_children": [],
  252. "_active": true,
  253. "_components": [
  254. {
  255. "__id__": 6
  256. }
  257. ],
  258. "_prefab": null,
  259. "_opacity": 255,
  260. "_color": {
  261. "__type__": "cc.Color",
  262. "r": 255,
  263. "g": 255,
  264. "b": 255,
  265. "a": 255
  266. },
  267. "_contentSize": {
  268. "__type__": "cc.Size",
  269. "width": 0,
  270. "height": 0
  271. },
  272. "_anchorPoint": {
  273. "__type__": "cc.Vec2",
  274. "x": 0.5,
  275. "y": 0.5
  276. },
  277. "_trs": {
  278. "__type__": "TypedArray",
  279. "ctor": "Float64Array",
  280. "array": [
  281. 0,
  282. 0,
  283. 0,
  284. 0,
  285. 0,
  286. 0,
  287. 1,
  288. 1,
  289. 1,
  290. 1
  291. ]
  292. },
  293. "_eulerAngles": {
  294. "__type__": "cc.Vec3",
  295. "x": 0,
  296. "y": 0,
  297. "z": 0
  298. },
  299. "_skewX": 0,
  300. "_skewY": 0,
  301. "_is3DNode": false,
  302. "_groupIndex": 0,
  303. "groupIndex": 0,
  304. "_id": "cfo4xg/KVO2Yawu4CVOpeO"
  305. },
  306. {
  307. "__type__": "b683dcwDkxPnpQjeHPyr4Ne",
  308. "_name": "",
  309. "_objFlags": 0,
  310. "node": {
  311. "__id__": 5
  312. },
  313. "_enabled": true,
  314. "_id": "fdRuWCzM9KsI5eUppSrJgt"
  315. },
  316. {
  317. "__type__": "cc.Node",
  318. "_name": "KeyBoardPanel",
  319. "_objFlags": 0,
  320. "_parent": {
  321. "__id__": 2
  322. },
  323. "_children": [
  324. {
  325. "__id__": 8
  326. },
  327. {
  328. "__id__": 11
  329. },
  330. {
  331. "__id__": 14
  332. }
  333. ],
  334. "_active": false,
  335. "_components": [
  336. {
  337. "__id__": 17
  338. }
  339. ],
  340. "_prefab": null,
  341. "_opacity": 255,
  342. "_color": {
  343. "__type__": "cc.Color",
  344. "r": 255,
  345. "g": 255,
  346. "b": 255,
  347. "a": 255
  348. },
  349. "_contentSize": {
  350. "__type__": "cc.Size",
  351. "width": 0,
  352. "height": 0
  353. },
  354. "_anchorPoint": {
  355. "__type__": "cc.Vec2",
  356. "x": 0.5,
  357. "y": 0.5
  358. },
  359. "_trs": {
  360. "__type__": "TypedArray",
  361. "ctor": "Float64Array",
  362. "array": [
  363. 0,
  364. 0,
  365. 0,
  366. 0,
  367. 0,
  368. 0,
  369. 1,
  370. 1,
  371. 1,
  372. 1
  373. ]
  374. },
  375. "_eulerAngles": {
  376. "__type__": "cc.Vec3",
  377. "x": 0,
  378. "y": 0,
  379. "z": 0
  380. },
  381. "_skewX": 0,
  382. "_skewY": 0,
  383. "_is3DNode": false,
  384. "_groupIndex": 0,
  385. "groupIndex": 0,
  386. "_id": "07sVkoBthI37P5j79olfYm"
  387. },
  388. {
  389. "__type__": "cc.Node",
  390. "_name": "Left",
  391. "_objFlags": 0,
  392. "_parent": {
  393. "__id__": 7
  394. },
  395. "_children": [],
  396. "_active": true,
  397. "_components": [
  398. {
  399. "__id__": 9
  400. },
  401. {
  402. "__id__": 10
  403. }
  404. ],
  405. "_prefab": null,
  406. "_opacity": 255,
  407. "_color": {
  408. "__type__": "cc.Color",
  409. "r": 0,
  410. "g": 0,
  411. "b": 0,
  412. "a": 255
  413. },
  414. "_contentSize": {
  415. "__type__": "cc.Size",
  416. "width": 120,
  417. "height": 146
  418. },
  419. "_anchorPoint": {
  420. "__type__": "cc.Vec2",
  421. "x": 0.5,
  422. "y": 0.5
  423. },
  424. "_trs": {
  425. "__type__": "TypedArray",
  426. "ctor": "Float64Array",
  427. "array": [
  428. -480,
  429. -220,
  430. 0,
  431. 0,
  432. 0,
  433. 0,
  434. 1,
  435. 1,
  436. 1,
  437. 1
  438. ]
  439. },
  440. "_eulerAngles": {
  441. "__type__": "cc.Vec3",
  442. "x": 0,
  443. "y": 0,
  444. "z": 0
  445. },
  446. "_skewX": 0,
  447. "_skewY": 0,
  448. "_is3DNode": false,
  449. "_groupIndex": 0,
  450. "groupIndex": 0,
  451. "_id": "08CEeb6K5M1LLQU0maFV94"
  452. },
  453. {
  454. "__type__": "cc.Label",
  455. "_name": "",
  456. "_objFlags": 0,
  457. "node": {
  458. "__id__": 8
  459. },
  460. "_enabled": true,
  461. "_materials": [
  462. {
  463. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  464. }
  465. ],
  466. "_useOriginalSize": false,
  467. "_string": "←",
  468. "_N$string": "←",
  469. "_fontSize": 100,
  470. "_lineHeight": 100,
  471. "_enableWrapText": true,
  472. "_N$file": null,
  473. "_isSystemFontUsed": true,
  474. "_spacingX": 0,
  475. "_batchAsBitmap": false,
  476. "_N$horizontalAlign": 1,
  477. "_N$verticalAlign": 1,
  478. "_N$fontFamily": "Arial",
  479. "_N$overflow": 0,
  480. "_N$cacheMode": 0,
  481. "_id": "3epDTtUIBGx5TZ0hvcNiNK"
  482. },
  483. {
  484. "__type__": "cc.LabelOutline",
  485. "_name": "",
  486. "_objFlags": 0,
  487. "node": {
  488. "__id__": 8
  489. },
  490. "_enabled": true,
  491. "_color": {
  492. "__type__": "cc.Color",
  493. "r": 255,
  494. "g": 255,
  495. "b": 0,
  496. "a": 255
  497. },
  498. "_width": 10,
  499. "_id": "50hgryj0tH37NhFGkok1PK"
  500. },
  501. {
  502. "__type__": "cc.Node",
  503. "_name": "Right",
  504. "_objFlags": 0,
  505. "_parent": {
  506. "__id__": 7
  507. },
  508. "_children": [],
  509. "_active": true,
  510. "_components": [
  511. {
  512. "__id__": 12
  513. },
  514. {
  515. "__id__": 13
  516. }
  517. ],
  518. "_prefab": null,
  519. "_opacity": 255,
  520. "_color": {
  521. "__type__": "cc.Color",
  522. "r": 0,
  523. "g": 0,
  524. "b": 0,
  525. "a": 255
  526. },
  527. "_contentSize": {
  528. "__type__": "cc.Size",
  529. "width": 120,
  530. "height": 146
  531. },
  532. "_anchorPoint": {
  533. "__type__": "cc.Vec2",
  534. "x": 0.5,
  535. "y": 0.5
  536. },
  537. "_trs": {
  538. "__type__": "TypedArray",
  539. "ctor": "Float64Array",
  540. "array": [
  541. -330,
  542. -220,
  543. 0,
  544. 0,
  545. 0,
  546. 0,
  547. 1,
  548. -1,
  549. 1,
  550. 1
  551. ]
  552. },
  553. "_eulerAngles": {
  554. "__type__": "cc.Vec3",
  555. "x": 0,
  556. "y": 0,
  557. "z": 0
  558. },
  559. "_skewX": 0,
  560. "_skewY": 0,
  561. "_is3DNode": false,
  562. "_groupIndex": 0,
  563. "groupIndex": 0,
  564. "_id": "74r7oynIRIlIfwIetl2+Q9"
  565. },
  566. {
  567. "__type__": "cc.Label",
  568. "_name": "",
  569. "_objFlags": 0,
  570. "node": {
  571. "__id__": 11
  572. },
  573. "_enabled": true,
  574. "_materials": [
  575. {
  576. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  577. }
  578. ],
  579. "_useOriginalSize": false,
  580. "_string": "←",
  581. "_N$string": "←",
  582. "_fontSize": 100,
  583. "_lineHeight": 100,
  584. "_enableWrapText": true,
  585. "_N$file": null,
  586. "_isSystemFontUsed": true,
  587. "_spacingX": 0,
  588. "_batchAsBitmap": false,
  589. "_N$horizontalAlign": 1,
  590. "_N$verticalAlign": 1,
  591. "_N$fontFamily": "Arial",
  592. "_N$overflow": 0,
  593. "_N$cacheMode": 0,
  594. "_id": "98x1HPG/BBY6Uj8Z1VDQVx"
  595. },
  596. {
  597. "__type__": "cc.LabelOutline",
  598. "_name": "",
  599. "_objFlags": 0,
  600. "node": {
  601. "__id__": 11
  602. },
  603. "_enabled": true,
  604. "_color": {
  605. "__type__": "cc.Color",
  606. "r": 255,
  607. "g": 255,
  608. "b": 0,
  609. "a": 255
  610. },
  611. "_width": 10,
  612. "_id": "ffmw3fQudBTaYzA25cigrr"
  613. },
  614. {
  615. "__type__": "cc.Node",
  616. "_name": "Jump",
  617. "_objFlags": 0,
  618. "_parent": {
  619. "__id__": 7
  620. },
  621. "_children": [],
  622. "_active": true,
  623. "_components": [
  624. {
  625. "__id__": 15
  626. },
  627. {
  628. "__id__": 16
  629. }
  630. ],
  631. "_prefab": null,
  632. "_opacity": 255,
  633. "_color": {
  634. "__type__": "cc.Color",
  635. "r": 0,
  636. "g": 0,
  637. "b": 0,
  638. "a": 255
  639. },
  640. "_contentSize": {
  641. "__type__": "cc.Size",
  642. "width": 211.63,
  643. "height": 116.8
  644. },
  645. "_anchorPoint": {
  646. "__type__": "cc.Vec2",
  647. "x": 0.5,
  648. "y": 0.5
  649. },
  650. "_trs": {
  651. "__type__": "TypedArray",
  652. "ctor": "Float64Array",
  653. "array": [
  654. 450,
  655. -220,
  656. 0,
  657. 0,
  658. 0,
  659. 0,
  660. 1,
  661. 1,
  662. 1,
  663. 1
  664. ]
  665. },
  666. "_eulerAngles": {
  667. "__type__": "cc.Vec3",
  668. "x": 0,
  669. "y": 0,
  670. "z": 0
  671. },
  672. "_skewX": 0,
  673. "_skewY": 0,
  674. "_is3DNode": false,
  675. "_groupIndex": 0,
  676. "groupIndex": 0,
  677. "_id": "dcvwaVM1tNBal5CfjF8PHd"
  678. },
  679. {
  680. "__type__": "cc.Label",
  681. "_name": "",
  682. "_objFlags": 0,
  683. "node": {
  684. "__id__": 14
  685. },
  686. "_enabled": true,
  687. "_materials": [
  688. {
  689. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  690. }
  691. ],
  692. "_useOriginalSize": false,
  693. "_string": "Jump",
  694. "_N$string": "Jump",
  695. "_fontSize": 80,
  696. "_lineHeight": 80,
  697. "_enableWrapText": true,
  698. "_N$file": null,
  699. "_isSystemFontUsed": true,
  700. "_spacingX": 0,
  701. "_batchAsBitmap": false,
  702. "_N$horizontalAlign": 1,
  703. "_N$verticalAlign": 1,
  704. "_N$fontFamily": "Arial",
  705. "_N$overflow": 0,
  706. "_N$cacheMode": 0,
  707. "_id": "6dC/ITok5N8JFcBnWn0WCh"
  708. },
  709. {
  710. "__type__": "cc.LabelOutline",
  711. "_name": "",
  712. "_objFlags": 0,
  713. "node": {
  714. "__id__": 14
  715. },
  716. "_enabled": true,
  717. "_color": {
  718. "__type__": "cc.Color",
  719. "r": 255,
  720. "g": 255,
  721. "b": 0,
  722. "a": 255
  723. },
  724. "_width": 8,
  725. "_id": "68zkmATFxCfafwyOhzEqjH"
  726. },
  727. {
  728. "__type__": "4a9ecuW4AZPdIX8GQWyB84Y",
  729. "_name": "",
  730. "_objFlags": 0,
  731. "node": {
  732. "__id__": 7
  733. },
  734. "_enabled": true,
  735. "_id": "5cuEA/bnBIG4vv7onpy/jp"
  736. },
  737. {
  738. "__type__": "cc.Node",
  739. "_name": "MatchingPanel",
  740. "_objFlags": 0,
  741. "_parent": {
  742. "__id__": 2
  743. },
  744. "_children": [
  745. {
  746. "__id__": 19
  747. },
  748. {
  749. "__id__": 22
  750. },
  751. {
  752. "__id__": 26
  753. },
  754. {
  755. "__id__": 31
  756. },
  757. {
  758. "__id__": 36
  759. },
  760. {
  761. "__id__": 41
  762. }
  763. ],
  764. "_active": true,
  765. "_components": [
  766. {
  767. "__id__": 46
  768. }
  769. ],
  770. "_prefab": null,
  771. "_opacity": 255,
  772. "_color": {
  773. "__type__": "cc.Color",
  774. "r": 255,
  775. "g": 255,
  776. "b": 255,
  777. "a": 255
  778. },
  779. "_contentSize": {
  780. "__type__": "cc.Size",
  781. "width": 0,
  782. "height": 0
  783. },
  784. "_anchorPoint": {
  785. "__type__": "cc.Vec2",
  786. "x": 0.5,
  787. "y": 0.5
  788. },
  789. "_trs": {
  790. "__type__": "TypedArray",
  791. "ctor": "Float64Array",
  792. "array": [
  793. 0,
  794. 0,
  795. 0,
  796. 0,
  797. 0,
  798. 0,
  799. 1,
  800. 1,
  801. 1,
  802. 1
  803. ]
  804. },
  805. "_eulerAngles": {
  806. "__type__": "cc.Vec3",
  807. "x": 0,
  808. "y": 0,
  809. "z": 0
  810. },
  811. "_skewX": 0,
  812. "_skewY": 0,
  813. "_is3DNode": false,
  814. "_groupIndex": 0,
  815. "groupIndex": 0,
  816. "_id": "75+4gDs5dJdLP9FEqbMDGF"
  817. },
  818. {
  819. "__type__": "cc.Node",
  820. "_name": "BG",
  821. "_objFlags": 0,
  822. "_parent": {
  823. "__id__": 18
  824. },
  825. "_children": [],
  826. "_active": true,
  827. "_components": [
  828. {
  829. "__id__": 20
  830. },
  831. {
  832. "__id__": 21
  833. }
  834. ],
  835. "_prefab": null,
  836. "_opacity": 100,
  837. "_color": {
  838. "__type__": "cc.Color",
  839. "r": 0,
  840. "g": 0,
  841. "b": 0,
  842. "a": 255
  843. },
  844. "_contentSize": {
  845. "__type__": "cc.Size",
  846. "width": 1280,
  847. "height": 720
  848. },
  849. "_anchorPoint": {
  850. "__type__": "cc.Vec2",
  851. "x": 0.5,
  852. "y": 0.5
  853. },
  854. "_trs": {
  855. "__type__": "TypedArray",
  856. "ctor": "Float64Array",
  857. "array": [
  858. 0,
  859. 0,
  860. 0,
  861. 0,
  862. 0,
  863. 0,
  864. 1,
  865. 1,
  866. 1,
  867. 1
  868. ]
  869. },
  870. "_eulerAngles": {
  871. "__type__": "cc.Vec3",
  872. "x": 0,
  873. "y": 0,
  874. "z": 0
  875. },
  876. "_skewX": 0,
  877. "_skewY": 0,
  878. "_is3DNode": false,
  879. "_groupIndex": 0,
  880. "groupIndex": 0,
  881. "_id": "a9JJIs/mpOeKvOLnl//nhN"
  882. },
  883. {
  884. "__type__": "cc.Sprite",
  885. "_name": "",
  886. "_objFlags": 0,
  887. "node": {
  888. "__id__": 19
  889. },
  890. "_enabled": true,
  891. "_materials": [
  892. {
  893. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  894. }
  895. ],
  896. "_srcBlendFactor": 770,
  897. "_dstBlendFactor": 771,
  898. "_spriteFrame": {
  899. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  900. },
  901. "_type": 0,
  902. "_sizeMode": 0,
  903. "_fillType": 0,
  904. "_fillCenter": {
  905. "__type__": "cc.Vec2",
  906. "x": 0,
  907. "y": 0
  908. },
  909. "_fillStart": 0,
  910. "_fillRange": 0,
  911. "_isTrimmedMode": true,
  912. "_atlas": null,
  913. "_id": "ef9OorLrBA+p7vHvnx9wqZ"
  914. },
  915. {
  916. "__type__": "cc.BlockInputEvents",
  917. "_name": "",
  918. "_objFlags": 0,
  919. "node": {
  920. "__id__": 19
  921. },
  922. "_enabled": true,
  923. "_id": "11E8xu16BAwIqePbLNyDWw"
  924. },
  925. {
  926. "__type__": "cc.Node",
  927. "_name": "Title",
  928. "_objFlags": 0,
  929. "_parent": {
  930. "__id__": 18
  931. },
  932. "_children": [],
  933. "_active": true,
  934. "_components": [
  935. {
  936. "__id__": 23
  937. },
  938. {
  939. "__id__": 24
  940. },
  941. {
  942. "__id__": 25
  943. }
  944. ],
  945. "_prefab": null,
  946. "_opacity": 255,
  947. "_color": {
  948. "__type__": "cc.Color",
  949. "r": 255,
  950. "g": 255,
  951. "b": 255,
  952. "a": 255
  953. },
  954. "_contentSize": {
  955. "__type__": "cc.Size",
  956. "width": 216,
  957. "height": 94.2
  958. },
  959. "_anchorPoint": {
  960. "__type__": "cc.Vec2",
  961. "x": 0.5,
  962. "y": 0.5
  963. },
  964. "_trs": {
  965. "__type__": "TypedArray",
  966. "ctor": "Float64Array",
  967. "array": [
  968. 0,
  969. 200,
  970. 0,
  971. 0,
  972. 0,
  973. 0,
  974. 1,
  975. 1,
  976. 1,
  977. 1
  978. ]
  979. },
  980. "_eulerAngles": {
  981. "__type__": "cc.Vec3",
  982. "x": 0,
  983. "y": 0,
  984. "z": 0
  985. },
  986. "_skewX": 0,
  987. "_skewY": 0,
  988. "_is3DNode": false,
  989. "_groupIndex": 0,
  990. "groupIndex": 0,
  991. "_id": "a9LGyeEXxBlqLI1JWrCYrf"
  992. },
  993. {
  994. "__type__": "cc.Label",
  995. "_name": "",
  996. "_objFlags": 0,
  997. "node": {
  998. "__id__": 22
  999. },
  1000. "_enabled": true,
  1001. "_materials": [
  1002. {
  1003. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1004. }
  1005. ],
  1006. "_useOriginalSize": false,
  1007. "_string": "匹配中",
  1008. "_N$string": "匹配中",
  1009. "_fontSize": 70,
  1010. "_lineHeight": 70,
  1011. "_enableWrapText": true,
  1012. "_N$file": null,
  1013. "_isSystemFontUsed": true,
  1014. "_spacingX": 0,
  1015. "_batchAsBitmap": false,
  1016. "_N$horizontalAlign": 1,
  1017. "_N$verticalAlign": 1,
  1018. "_N$fontFamily": "Arial",
  1019. "_N$overflow": 0,
  1020. "_N$cacheMode": 0,
  1021. "_id": "81FPETPphD36bUBu1tiXDk"
  1022. },
  1023. {
  1024. "__type__": "cc.LabelOutline",
  1025. "_name": "",
  1026. "_objFlags": 0,
  1027. "node": {
  1028. "__id__": 22
  1029. },
  1030. "_enabled": true,
  1031. "_color": {
  1032. "__type__": "cc.Color",
  1033. "r": 0,
  1034. "g": 255,
  1035. "b": 255,
  1036. "a": 255
  1037. },
  1038. "_width": 3,
  1039. "_id": "89sKk9snNJDKBlq9GueiIe"
  1040. },
  1041. {
  1042. "__type__": "cc.Animation",
  1043. "_name": "",
  1044. "_objFlags": 0,
  1045. "node": {
  1046. "__id__": 22
  1047. },
  1048. "_enabled": true,
  1049. "_defaultClip": {
  1050. "__uuid__": "291f1554-10ce-4d88-bc5c-8085b67cd3d9"
  1051. },
  1052. "_clips": [
  1053. {
  1054. "__uuid__": "291f1554-10ce-4d88-bc5c-8085b67cd3d9"
  1055. }
  1056. ],
  1057. "playOnLoad": true,
  1058. "_id": "6dBQFFVCpDsIp8LhDBF+tH"
  1059. },
  1060. {
  1061. "__type__": "cc.Node",
  1062. "_name": "RoleNode",
  1063. "_objFlags": 0,
  1064. "_parent": {
  1065. "__id__": 18
  1066. },
  1067. "_children": [
  1068. {
  1069. "__id__": 27
  1070. }
  1071. ],
  1072. "_active": true,
  1073. "_components": [],
  1074. "_prefab": null,
  1075. "_opacity": 255,
  1076. "_color": {
  1077. "__type__": "cc.Color",
  1078. "r": 255,
  1079. "g": 255,
  1080. "b": 255,
  1081. "a": 255
  1082. },
  1083. "_contentSize": {
  1084. "__type__": "cc.Size",
  1085. "width": 0,
  1086. "height": 0
  1087. },
  1088. "_anchorPoint": {
  1089. "__type__": "cc.Vec2",
  1090. "x": 0.5,
  1091. "y": 0.5
  1092. },
  1093. "_trs": {
  1094. "__type__": "TypedArray",
  1095. "ctor": "Float64Array",
  1096. "array": [
  1097. -390,
  1098. -50,
  1099. 0,
  1100. 0,
  1101. 0,
  1102. 0,
  1103. 1,
  1104. 1,
  1105. 1,
  1106. 1
  1107. ]
  1108. },
  1109. "_eulerAngles": {
  1110. "__type__": "cc.Vec3",
  1111. "x": 0,
  1112. "y": 0,
  1113. "z": 0
  1114. },
  1115. "_skewX": 0,
  1116. "_skewY": 0,
  1117. "_is3DNode": false,
  1118. "_groupIndex": 0,
  1119. "groupIndex": 0,
  1120. "_id": "66PzNZpD5CH4ZwYkV5LxE7"
  1121. },
  1122. {
  1123. "__type__": "cc.Node",
  1124. "_name": "Frame",
  1125. "_objFlags": 0,
  1126. "_parent": {
  1127. "__id__": 26
  1128. },
  1129. "_children": [
  1130. {
  1131. "__id__": 28
  1132. }
  1133. ],
  1134. "_active": true,
  1135. "_components": [
  1136. {
  1137. "__id__": 30
  1138. }
  1139. ],
  1140. "_prefab": null,
  1141. "_opacity": 255,
  1142. "_color": {
  1143. "__type__": "cc.Color",
  1144. "r": 255,
  1145. "g": 255,
  1146. "b": 255,
  1147. "a": 255
  1148. },
  1149. "_contentSize": {
  1150. "__type__": "cc.Size",
  1151. "width": 200,
  1152. "height": 200
  1153. },
  1154. "_anchorPoint": {
  1155. "__type__": "cc.Vec2",
  1156. "x": 0.5,
  1157. "y": 0.5
  1158. },
  1159. "_trs": {
  1160. "__type__": "TypedArray",
  1161. "ctor": "Float64Array",
  1162. "array": [
  1163. 0,
  1164. 0,
  1165. 0,
  1166. 0,
  1167. 0,
  1168. 0,
  1169. 1,
  1170. 1,
  1171. 1,
  1172. 1
  1173. ]
  1174. },
  1175. "_eulerAngles": {
  1176. "__type__": "cc.Vec3",
  1177. "x": 0,
  1178. "y": 0,
  1179. "z": 0
  1180. },
  1181. "_skewX": 0,
  1182. "_skewY": 0,
  1183. "_is3DNode": false,
  1184. "_groupIndex": 0,
  1185. "groupIndex": 0,
  1186. "_id": "274pfLGOJHKYGgBA6FR7+G"
  1187. },
  1188. {
  1189. "__type__": "cc.Node",
  1190. "_name": "BG",
  1191. "_objFlags": 0,
  1192. "_parent": {
  1193. "__id__": 27
  1194. },
  1195. "_children": [],
  1196. "_active": true,
  1197. "_components": [
  1198. {
  1199. "__id__": 29
  1200. }
  1201. ],
  1202. "_prefab": null,
  1203. "_opacity": 255,
  1204. "_color": {
  1205. "__type__": "cc.Color",
  1206. "r": 0,
  1207. "g": 255,
  1208. "b": 255,
  1209. "a": 255
  1210. },
  1211. "_contentSize": {
  1212. "__type__": "cc.Size",
  1213. "width": 220,
  1214. "height": 220
  1215. },
  1216. "_anchorPoint": {
  1217. "__type__": "cc.Vec2",
  1218. "x": 0.5,
  1219. "y": 0.5
  1220. },
  1221. "_trs": {
  1222. "__type__": "TypedArray",
  1223. "ctor": "Float64Array",
  1224. "array": [
  1225. 0,
  1226. 0,
  1227. 0,
  1228. 0,
  1229. 0,
  1230. 0,
  1231. 1,
  1232. 1,
  1233. 1,
  1234. 1
  1235. ]
  1236. },
  1237. "_eulerAngles": {
  1238. "__type__": "cc.Vec3",
  1239. "x": 0,
  1240. "y": 0,
  1241. "z": 0
  1242. },
  1243. "_skewX": 0,
  1244. "_skewY": 0,
  1245. "_is3DNode": false,
  1246. "_groupIndex": 0,
  1247. "groupIndex": 0,
  1248. "_id": "e62x1NhkJDq6qExsZkV/Gq"
  1249. },
  1250. {
  1251. "__type__": "cc.Sprite",
  1252. "_name": "",
  1253. "_objFlags": 0,
  1254. "node": {
  1255. "__id__": 28
  1256. },
  1257. "_enabled": true,
  1258. "_materials": [
  1259. {
  1260. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1261. }
  1262. ],
  1263. "_srcBlendFactor": 770,
  1264. "_dstBlendFactor": 771,
  1265. "_spriteFrame": {
  1266. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1267. },
  1268. "_type": 0,
  1269. "_sizeMode": 0,
  1270. "_fillType": 0,
  1271. "_fillCenter": {
  1272. "__type__": "cc.Vec2",
  1273. "x": 0,
  1274. "y": 0
  1275. },
  1276. "_fillStart": 0,
  1277. "_fillRange": 0,
  1278. "_isTrimmedMode": true,
  1279. "_atlas": null,
  1280. "_id": "84udwMegRC9rhxPdcCB6U3"
  1281. },
  1282. {
  1283. "__type__": "cc.Mask",
  1284. "_name": "",
  1285. "_objFlags": 0,
  1286. "node": {
  1287. "__id__": 27
  1288. },
  1289. "_enabled": true,
  1290. "_materials": [
  1291. {
  1292. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1293. }
  1294. ],
  1295. "_spriteFrame": null,
  1296. "_type": 0,
  1297. "_segments": 64,
  1298. "_N$alphaThreshold": 0,
  1299. "_N$inverted": true,
  1300. "_id": "85j0tEizhCAZZwHHMphc5+"
  1301. },
  1302. {
  1303. "__type__": "cc.Node",
  1304. "_name": "RoleNode",
  1305. "_objFlags": 0,
  1306. "_parent": {
  1307. "__id__": 18
  1308. },
  1309. "_children": [
  1310. {
  1311. "__id__": 32
  1312. }
  1313. ],
  1314. "_active": true,
  1315. "_components": [],
  1316. "_prefab": null,
  1317. "_opacity": 255,
  1318. "_color": {
  1319. "__type__": "cc.Color",
  1320. "r": 255,
  1321. "g": 255,
  1322. "b": 255,
  1323. "a": 255
  1324. },
  1325. "_contentSize": {
  1326. "__type__": "cc.Size",
  1327. "width": 0,
  1328. "height": 0
  1329. },
  1330. "_anchorPoint": {
  1331. "__type__": "cc.Vec2",
  1332. "x": 0.5,
  1333. "y": 0.5
  1334. },
  1335. "_trs": {
  1336. "__type__": "TypedArray",
  1337. "ctor": "Float64Array",
  1338. "array": [
  1339. -130,
  1340. -50,
  1341. 0,
  1342. 0,
  1343. 0,
  1344. 0,
  1345. 1,
  1346. 1,
  1347. 1,
  1348. 1
  1349. ]
  1350. },
  1351. "_eulerAngles": {
  1352. "__type__": "cc.Vec3",
  1353. "x": 0,
  1354. "y": 0,
  1355. "z": 0
  1356. },
  1357. "_skewX": 0,
  1358. "_skewY": 0,
  1359. "_is3DNode": false,
  1360. "_groupIndex": 0,
  1361. "groupIndex": 0,
  1362. "_id": "24C3rEKYRO6bTa3Kb2Wksh"
  1363. },
  1364. {
  1365. "__type__": "cc.Node",
  1366. "_name": "Frame",
  1367. "_objFlags": 0,
  1368. "_parent": {
  1369. "__id__": 31
  1370. },
  1371. "_children": [
  1372. {
  1373. "__id__": 33
  1374. }
  1375. ],
  1376. "_active": true,
  1377. "_components": [
  1378. {
  1379. "__id__": 35
  1380. }
  1381. ],
  1382. "_prefab": null,
  1383. "_opacity": 255,
  1384. "_color": {
  1385. "__type__": "cc.Color",
  1386. "r": 255,
  1387. "g": 255,
  1388. "b": 255,
  1389. "a": 255
  1390. },
  1391. "_contentSize": {
  1392. "__type__": "cc.Size",
  1393. "width": 200,
  1394. "height": 200
  1395. },
  1396. "_anchorPoint": {
  1397. "__type__": "cc.Vec2",
  1398. "x": 0.5,
  1399. "y": 0.5
  1400. },
  1401. "_trs": {
  1402. "__type__": "TypedArray",
  1403. "ctor": "Float64Array",
  1404. "array": [
  1405. 0,
  1406. 0,
  1407. 0,
  1408. 0,
  1409. 0,
  1410. 0,
  1411. 1,
  1412. 1,
  1413. 1,
  1414. 1
  1415. ]
  1416. },
  1417. "_eulerAngles": {
  1418. "__type__": "cc.Vec3",
  1419. "x": 0,
  1420. "y": 0,
  1421. "z": 0
  1422. },
  1423. "_skewX": 0,
  1424. "_skewY": 0,
  1425. "_is3DNode": false,
  1426. "_groupIndex": 0,
  1427. "groupIndex": 0,
  1428. "_id": "8c24+pPl1HvpMxxryVsbq5"
  1429. },
  1430. {
  1431. "__type__": "cc.Node",
  1432. "_name": "BG",
  1433. "_objFlags": 0,
  1434. "_parent": {
  1435. "__id__": 32
  1436. },
  1437. "_children": [],
  1438. "_active": true,
  1439. "_components": [
  1440. {
  1441. "__id__": 34
  1442. }
  1443. ],
  1444. "_prefab": null,
  1445. "_opacity": 255,
  1446. "_color": {
  1447. "__type__": "cc.Color",
  1448. "r": 0,
  1449. "g": 255,
  1450. "b": 255,
  1451. "a": 255
  1452. },
  1453. "_contentSize": {
  1454. "__type__": "cc.Size",
  1455. "width": 220,
  1456. "height": 220
  1457. },
  1458. "_anchorPoint": {
  1459. "__type__": "cc.Vec2",
  1460. "x": 0.5,
  1461. "y": 0.5
  1462. },
  1463. "_trs": {
  1464. "__type__": "TypedArray",
  1465. "ctor": "Float64Array",
  1466. "array": [
  1467. 0,
  1468. 0,
  1469. 0,
  1470. 0,
  1471. 0,
  1472. 0,
  1473. 1,
  1474. 1,
  1475. 1,
  1476. 1
  1477. ]
  1478. },
  1479. "_eulerAngles": {
  1480. "__type__": "cc.Vec3",
  1481. "x": 0,
  1482. "y": 0,
  1483. "z": 0
  1484. },
  1485. "_skewX": 0,
  1486. "_skewY": 0,
  1487. "_is3DNode": false,
  1488. "_groupIndex": 0,
  1489. "groupIndex": 0,
  1490. "_id": "fecTF7UVZDv5HPSNMzEC8K"
  1491. },
  1492. {
  1493. "__type__": "cc.Sprite",
  1494. "_name": "",
  1495. "_objFlags": 0,
  1496. "node": {
  1497. "__id__": 33
  1498. },
  1499. "_enabled": true,
  1500. "_materials": [
  1501. {
  1502. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1503. }
  1504. ],
  1505. "_srcBlendFactor": 770,
  1506. "_dstBlendFactor": 771,
  1507. "_spriteFrame": {
  1508. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1509. },
  1510. "_type": 0,
  1511. "_sizeMode": 0,
  1512. "_fillType": 0,
  1513. "_fillCenter": {
  1514. "__type__": "cc.Vec2",
  1515. "x": 0,
  1516. "y": 0
  1517. },
  1518. "_fillStart": 0,
  1519. "_fillRange": 0,
  1520. "_isTrimmedMode": true,
  1521. "_atlas": null,
  1522. "_id": "a0wBfbblFKjYcGglQiLo8f"
  1523. },
  1524. {
  1525. "__type__": "cc.Mask",
  1526. "_name": "",
  1527. "_objFlags": 0,
  1528. "node": {
  1529. "__id__": 32
  1530. },
  1531. "_enabled": true,
  1532. "_materials": [
  1533. {
  1534. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1535. }
  1536. ],
  1537. "_spriteFrame": null,
  1538. "_type": 0,
  1539. "_segments": 64,
  1540. "_N$alphaThreshold": 0,
  1541. "_N$inverted": true,
  1542. "_id": "0762HXHP5AerxIM/HVmM9j"
  1543. },
  1544. {
  1545. "__type__": "cc.Node",
  1546. "_name": "RoleNode",
  1547. "_objFlags": 0,
  1548. "_parent": {
  1549. "__id__": 18
  1550. },
  1551. "_children": [
  1552. {
  1553. "__id__": 37
  1554. }
  1555. ],
  1556. "_active": true,
  1557. "_components": [],
  1558. "_prefab": null,
  1559. "_opacity": 255,
  1560. "_color": {
  1561. "__type__": "cc.Color",
  1562. "r": 255,
  1563. "g": 255,
  1564. "b": 255,
  1565. "a": 255
  1566. },
  1567. "_contentSize": {
  1568. "__type__": "cc.Size",
  1569. "width": 0,
  1570. "height": 0
  1571. },
  1572. "_anchorPoint": {
  1573. "__type__": "cc.Vec2",
  1574. "x": 0.5,
  1575. "y": 0.5
  1576. },
  1577. "_trs": {
  1578. "__type__": "TypedArray",
  1579. "ctor": "Float64Array",
  1580. "array": [
  1581. 130,
  1582. -50,
  1583. 0,
  1584. 0,
  1585. 0,
  1586. 0,
  1587. 1,
  1588. 1,
  1589. 1,
  1590. 1
  1591. ]
  1592. },
  1593. "_eulerAngles": {
  1594. "__type__": "cc.Vec3",
  1595. "x": 0,
  1596. "y": 0,
  1597. "z": 0
  1598. },
  1599. "_skewX": 0,
  1600. "_skewY": 0,
  1601. "_is3DNode": false,
  1602. "_groupIndex": 0,
  1603. "groupIndex": 0,
  1604. "_id": "dcXc+SM5FGtZa0sGPeYrsw"
  1605. },
  1606. {
  1607. "__type__": "cc.Node",
  1608. "_name": "Frame",
  1609. "_objFlags": 0,
  1610. "_parent": {
  1611. "__id__": 36
  1612. },
  1613. "_children": [
  1614. {
  1615. "__id__": 38
  1616. }
  1617. ],
  1618. "_active": true,
  1619. "_components": [
  1620. {
  1621. "__id__": 40
  1622. }
  1623. ],
  1624. "_prefab": null,
  1625. "_opacity": 255,
  1626. "_color": {
  1627. "__type__": "cc.Color",
  1628. "r": 255,
  1629. "g": 255,
  1630. "b": 255,
  1631. "a": 255
  1632. },
  1633. "_contentSize": {
  1634. "__type__": "cc.Size",
  1635. "width": 200,
  1636. "height": 200
  1637. },
  1638. "_anchorPoint": {
  1639. "__type__": "cc.Vec2",
  1640. "x": 0.5,
  1641. "y": 0.5
  1642. },
  1643. "_trs": {
  1644. "__type__": "TypedArray",
  1645. "ctor": "Float64Array",
  1646. "array": [
  1647. 0,
  1648. 0,
  1649. 0,
  1650. 0,
  1651. 0,
  1652. 0,
  1653. 1,
  1654. 1,
  1655. 1,
  1656. 1
  1657. ]
  1658. },
  1659. "_eulerAngles": {
  1660. "__type__": "cc.Vec3",
  1661. "x": 0,
  1662. "y": 0,
  1663. "z": 0
  1664. },
  1665. "_skewX": 0,
  1666. "_skewY": 0,
  1667. "_is3DNode": false,
  1668. "_groupIndex": 0,
  1669. "groupIndex": 0,
  1670. "_id": "8avBBTJ71MDJEl4W8lPegg"
  1671. },
  1672. {
  1673. "__type__": "cc.Node",
  1674. "_name": "BG",
  1675. "_objFlags": 0,
  1676. "_parent": {
  1677. "__id__": 37
  1678. },
  1679. "_children": [],
  1680. "_active": true,
  1681. "_components": [
  1682. {
  1683. "__id__": 39
  1684. }
  1685. ],
  1686. "_prefab": null,
  1687. "_opacity": 255,
  1688. "_color": {
  1689. "__type__": "cc.Color",
  1690. "r": 0,
  1691. "g": 255,
  1692. "b": 255,
  1693. "a": 255
  1694. },
  1695. "_contentSize": {
  1696. "__type__": "cc.Size",
  1697. "width": 220,
  1698. "height": 220
  1699. },
  1700. "_anchorPoint": {
  1701. "__type__": "cc.Vec2",
  1702. "x": 0.5,
  1703. "y": 0.5
  1704. },
  1705. "_trs": {
  1706. "__type__": "TypedArray",
  1707. "ctor": "Float64Array",
  1708. "array": [
  1709. 0,
  1710. 0,
  1711. 0,
  1712. 0,
  1713. 0,
  1714. 0,
  1715. 1,
  1716. 1,
  1717. 1,
  1718. 1
  1719. ]
  1720. },
  1721. "_eulerAngles": {
  1722. "__type__": "cc.Vec3",
  1723. "x": 0,
  1724. "y": 0,
  1725. "z": 0
  1726. },
  1727. "_skewX": 0,
  1728. "_skewY": 0,
  1729. "_is3DNode": false,
  1730. "_groupIndex": 0,
  1731. "groupIndex": 0,
  1732. "_id": "d77EeSmupJa6wKgyMHUiJv"
  1733. },
  1734. {
  1735. "__type__": "cc.Sprite",
  1736. "_name": "",
  1737. "_objFlags": 0,
  1738. "node": {
  1739. "__id__": 38
  1740. },
  1741. "_enabled": true,
  1742. "_materials": [
  1743. {
  1744. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1745. }
  1746. ],
  1747. "_srcBlendFactor": 770,
  1748. "_dstBlendFactor": 771,
  1749. "_spriteFrame": {
  1750. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1751. },
  1752. "_type": 0,
  1753. "_sizeMode": 0,
  1754. "_fillType": 0,
  1755. "_fillCenter": {
  1756. "__type__": "cc.Vec2",
  1757. "x": 0,
  1758. "y": 0
  1759. },
  1760. "_fillStart": 0,
  1761. "_fillRange": 0,
  1762. "_isTrimmedMode": true,
  1763. "_atlas": null,
  1764. "_id": "551Ldve41EjJ6EWD0L7NSX"
  1765. },
  1766. {
  1767. "__type__": "cc.Mask",
  1768. "_name": "",
  1769. "_objFlags": 0,
  1770. "node": {
  1771. "__id__": 37
  1772. },
  1773. "_enabled": true,
  1774. "_materials": [
  1775. {
  1776. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1777. }
  1778. ],
  1779. "_spriteFrame": null,
  1780. "_type": 0,
  1781. "_segments": 64,
  1782. "_N$alphaThreshold": 0,
  1783. "_N$inverted": true,
  1784. "_id": "f0aA0Qvp5E96vmlZXdko4a"
  1785. },
  1786. {
  1787. "__type__": "cc.Node",
  1788. "_name": "RoleNode",
  1789. "_objFlags": 0,
  1790. "_parent": {
  1791. "__id__": 18
  1792. },
  1793. "_children": [
  1794. {
  1795. "__id__": 42
  1796. }
  1797. ],
  1798. "_active": true,
  1799. "_components": [],
  1800. "_prefab": null,
  1801. "_opacity": 255,
  1802. "_color": {
  1803. "__type__": "cc.Color",
  1804. "r": 255,
  1805. "g": 255,
  1806. "b": 255,
  1807. "a": 255
  1808. },
  1809. "_contentSize": {
  1810. "__type__": "cc.Size",
  1811. "width": 0,
  1812. "height": 0
  1813. },
  1814. "_anchorPoint": {
  1815. "__type__": "cc.Vec2",
  1816. "x": 0.5,
  1817. "y": 0.5
  1818. },
  1819. "_trs": {
  1820. "__type__": "TypedArray",
  1821. "ctor": "Float64Array",
  1822. "array": [
  1823. 390,
  1824. -50,
  1825. 0,
  1826. 0,
  1827. 0,
  1828. 0,
  1829. 1,
  1830. 1,
  1831. 1,
  1832. 1
  1833. ]
  1834. },
  1835. "_eulerAngles": {
  1836. "__type__": "cc.Vec3",
  1837. "x": 0,
  1838. "y": 0,
  1839. "z": 0
  1840. },
  1841. "_skewX": 0,
  1842. "_skewY": 0,
  1843. "_is3DNode": false,
  1844. "_groupIndex": 0,
  1845. "groupIndex": 0,
  1846. "_id": "f9cn9QUd5Ktb5ETvcImCqp"
  1847. },
  1848. {
  1849. "__type__": "cc.Node",
  1850. "_name": "Frame",
  1851. "_objFlags": 0,
  1852. "_parent": {
  1853. "__id__": 41
  1854. },
  1855. "_children": [
  1856. {
  1857. "__id__": 43
  1858. }
  1859. ],
  1860. "_active": true,
  1861. "_components": [
  1862. {
  1863. "__id__": 45
  1864. }
  1865. ],
  1866. "_prefab": null,
  1867. "_opacity": 255,
  1868. "_color": {
  1869. "__type__": "cc.Color",
  1870. "r": 255,
  1871. "g": 255,
  1872. "b": 255,
  1873. "a": 255
  1874. },
  1875. "_contentSize": {
  1876. "__type__": "cc.Size",
  1877. "width": 200,
  1878. "height": 200
  1879. },
  1880. "_anchorPoint": {
  1881. "__type__": "cc.Vec2",
  1882. "x": 0.5,
  1883. "y": 0.5
  1884. },
  1885. "_trs": {
  1886. "__type__": "TypedArray",
  1887. "ctor": "Float64Array",
  1888. "array": [
  1889. 0,
  1890. 0,
  1891. 0,
  1892. 0,
  1893. 0,
  1894. 0,
  1895. 1,
  1896. 1,
  1897. 1,
  1898. 1
  1899. ]
  1900. },
  1901. "_eulerAngles": {
  1902. "__type__": "cc.Vec3",
  1903. "x": 0,
  1904. "y": 0,
  1905. "z": 0
  1906. },
  1907. "_skewX": 0,
  1908. "_skewY": 0,
  1909. "_is3DNode": false,
  1910. "_groupIndex": 0,
  1911. "groupIndex": 0,
  1912. "_id": "5dh+ANKm9N7psDOSajSnBf"
  1913. },
  1914. {
  1915. "__type__": "cc.Node",
  1916. "_name": "BG",
  1917. "_objFlags": 0,
  1918. "_parent": {
  1919. "__id__": 42
  1920. },
  1921. "_children": [],
  1922. "_active": true,
  1923. "_components": [
  1924. {
  1925. "__id__": 44
  1926. }
  1927. ],
  1928. "_prefab": null,
  1929. "_opacity": 255,
  1930. "_color": {
  1931. "__type__": "cc.Color",
  1932. "r": 0,
  1933. "g": 255,
  1934. "b": 255,
  1935. "a": 255
  1936. },
  1937. "_contentSize": {
  1938. "__type__": "cc.Size",
  1939. "width": 220,
  1940. "height": 220
  1941. },
  1942. "_anchorPoint": {
  1943. "__type__": "cc.Vec2",
  1944. "x": 0.5,
  1945. "y": 0.5
  1946. },
  1947. "_trs": {
  1948. "__type__": "TypedArray",
  1949. "ctor": "Float64Array",
  1950. "array": [
  1951. 0,
  1952. 0,
  1953. 0,
  1954. 0,
  1955. 0,
  1956. 0,
  1957. 1,
  1958. 1,
  1959. 1,
  1960. 1
  1961. ]
  1962. },
  1963. "_eulerAngles": {
  1964. "__type__": "cc.Vec3",
  1965. "x": 0,
  1966. "y": 0,
  1967. "z": 0
  1968. },
  1969. "_skewX": 0,
  1970. "_skewY": 0,
  1971. "_is3DNode": false,
  1972. "_groupIndex": 0,
  1973. "groupIndex": 0,
  1974. "_id": "5fz+fTurZH05TSgnmoErj3"
  1975. },
  1976. {
  1977. "__type__": "cc.Sprite",
  1978. "_name": "",
  1979. "_objFlags": 0,
  1980. "node": {
  1981. "__id__": 43
  1982. },
  1983. "_enabled": true,
  1984. "_materials": [
  1985. {
  1986. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1987. }
  1988. ],
  1989. "_srcBlendFactor": 770,
  1990. "_dstBlendFactor": 771,
  1991. "_spriteFrame": {
  1992. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1993. },
  1994. "_type": 0,
  1995. "_sizeMode": 0,
  1996. "_fillType": 0,
  1997. "_fillCenter": {
  1998. "__type__": "cc.Vec2",
  1999. "x": 0,
  2000. "y": 0
  2001. },
  2002. "_fillStart": 0,
  2003. "_fillRange": 0,
  2004. "_isTrimmedMode": true,
  2005. "_atlas": null,
  2006. "_id": "cfADCZTztAerfB+QunKVRu"
  2007. },
  2008. {
  2009. "__type__": "cc.Mask",
  2010. "_name": "",
  2011. "_objFlags": 0,
  2012. "node": {
  2013. "__id__": 42
  2014. },
  2015. "_enabled": true,
  2016. "_materials": [
  2017. {
  2018. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2019. }
  2020. ],
  2021. "_spriteFrame": null,
  2022. "_type": 0,
  2023. "_segments": 64,
  2024. "_N$alphaThreshold": 0,
  2025. "_N$inverted": true,
  2026. "_id": "f3ypZDvmNGCbl4hhiLthxL"
  2027. },
  2028. {
  2029. "__type__": "38763IWsCxKBpgD8S4DIMvN",
  2030. "_name": "",
  2031. "_objFlags": 0,
  2032. "node": {
  2033. "__id__": 18
  2034. },
  2035. "_enabled": true,
  2036. "_id": "f7P+eTEH5K/rvjydGimYZl"
  2037. },
  2038. {
  2039. "__type__": "cc.Node",
  2040. "_name": "SettlementPanel",
  2041. "_objFlags": 0,
  2042. "_parent": {
  2043. "__id__": 2
  2044. },
  2045. "_children": [
  2046. {
  2047. "__id__": 48
  2048. },
  2049. {
  2050. "__id__": 51
  2051. },
  2052. {
  2053. "__id__": 54
  2054. },
  2055. {
  2056. "__id__": 61
  2057. }
  2058. ],
  2059. "_active": false,
  2060. "_components": [
  2061. {
  2062. "__id__": 65
  2063. }
  2064. ],
  2065. "_prefab": null,
  2066. "_opacity": 255,
  2067. "_color": {
  2068. "__type__": "cc.Color",
  2069. "r": 255,
  2070. "g": 255,
  2071. "b": 255,
  2072. "a": 255
  2073. },
  2074. "_contentSize": {
  2075. "__type__": "cc.Size",
  2076. "width": 0,
  2077. "height": 0
  2078. },
  2079. "_anchorPoint": {
  2080. "__type__": "cc.Vec2",
  2081. "x": 0.5,
  2082. "y": 0.5
  2083. },
  2084. "_trs": {
  2085. "__type__": "TypedArray",
  2086. "ctor": "Float64Array",
  2087. "array": [
  2088. 0,
  2089. 0,
  2090. 0,
  2091. 0,
  2092. 0,
  2093. 0,
  2094. 1,
  2095. 1,
  2096. 1,
  2097. 1
  2098. ]
  2099. },
  2100. "_eulerAngles": {
  2101. "__type__": "cc.Vec3",
  2102. "x": 0,
  2103. "y": 0,
  2104. "z": 0
  2105. },
  2106. "_skewX": 0,
  2107. "_skewY": 0,
  2108. "_is3DNode": false,
  2109. "_groupIndex": 0,
  2110. "groupIndex": 0,
  2111. "_id": "43TYPw1fdNA5kZfxbMfJ+a"
  2112. },
  2113. {
  2114. "__type__": "cc.Node",
  2115. "_name": "BG",
  2116. "_objFlags": 0,
  2117. "_parent": {
  2118. "__id__": 47
  2119. },
  2120. "_children": [],
  2121. "_active": true,
  2122. "_components": [
  2123. {
  2124. "__id__": 49
  2125. },
  2126. {
  2127. "__id__": 50
  2128. }
  2129. ],
  2130. "_prefab": null,
  2131. "_opacity": 100,
  2132. "_color": {
  2133. "__type__": "cc.Color",
  2134. "r": 0,
  2135. "g": 0,
  2136. "b": 0,
  2137. "a": 255
  2138. },
  2139. "_contentSize": {
  2140. "__type__": "cc.Size",
  2141. "width": 1280,
  2142. "height": 720
  2143. },
  2144. "_anchorPoint": {
  2145. "__type__": "cc.Vec2",
  2146. "x": 0.5,
  2147. "y": 0.5
  2148. },
  2149. "_trs": {
  2150. "__type__": "TypedArray",
  2151. "ctor": "Float64Array",
  2152. "array": [
  2153. 0,
  2154. 0,
  2155. 0,
  2156. 0,
  2157. 0,
  2158. 0,
  2159. 1,
  2160. 1,
  2161. 1,
  2162. 1
  2163. ]
  2164. },
  2165. "_eulerAngles": {
  2166. "__type__": "cc.Vec3",
  2167. "x": 0,
  2168. "y": 0,
  2169. "z": 0
  2170. },
  2171. "_skewX": 0,
  2172. "_skewY": 0,
  2173. "_is3DNode": false,
  2174. "_groupIndex": 0,
  2175. "groupIndex": 0,
  2176. "_id": "afzMA3ne1EPKjLjDQQStcH"
  2177. },
  2178. {
  2179. "__type__": "cc.Sprite",
  2180. "_name": "",
  2181. "_objFlags": 0,
  2182. "node": {
  2183. "__id__": 48
  2184. },
  2185. "_enabled": true,
  2186. "_materials": [
  2187. {
  2188. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2189. }
  2190. ],
  2191. "_srcBlendFactor": 770,
  2192. "_dstBlendFactor": 771,
  2193. "_spriteFrame": {
  2194. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  2195. },
  2196. "_type": 0,
  2197. "_sizeMode": 0,
  2198. "_fillType": 0,
  2199. "_fillCenter": {
  2200. "__type__": "cc.Vec2",
  2201. "x": 0,
  2202. "y": 0
  2203. },
  2204. "_fillStart": 0,
  2205. "_fillRange": 0,
  2206. "_isTrimmedMode": true,
  2207. "_atlas": null,
  2208. "_id": "9542GxhzBKcq9z107rvmh9"
  2209. },
  2210. {
  2211. "__type__": "cc.BlockInputEvents",
  2212. "_name": "",
  2213. "_objFlags": 0,
  2214. "node": {
  2215. "__id__": 48
  2216. },
  2217. "_enabled": true,
  2218. "_id": "a9WNdY621EZKySRK5ahd02"
  2219. },
  2220. {
  2221. "__type__": "cc.Node",
  2222. "_name": "Title",
  2223. "_objFlags": 0,
  2224. "_parent": {
  2225. "__id__": 47
  2226. },
  2227. "_children": [],
  2228. "_active": true,
  2229. "_components": [
  2230. {
  2231. "__id__": 52
  2232. },
  2233. {
  2234. "__id__": 53
  2235. }
  2236. ],
  2237. "_prefab": null,
  2238. "_opacity": 255,
  2239. "_color": {
  2240. "__type__": "cc.Color",
  2241. "r": 255,
  2242. "g": 255,
  2243. "b": 255,
  2244. "a": 255
  2245. },
  2246. "_contentSize": {
  2247. "__type__": "cc.Size",
  2248. "width": 356,
  2249. "height": 94.2
  2250. },
  2251. "_anchorPoint": {
  2252. "__type__": "cc.Vec2",
  2253. "x": 0.5,
  2254. "y": 0.5
  2255. },
  2256. "_trs": {
  2257. "__type__": "TypedArray",
  2258. "ctor": "Float64Array",
  2259. "array": [
  2260. 0,
  2261. 250,
  2262. 0,
  2263. 0,
  2264. 0,
  2265. 0,
  2266. 1,
  2267. 1,
  2268. 1,
  2269. 1
  2270. ]
  2271. },
  2272. "_eulerAngles": {
  2273. "__type__": "cc.Vec3",
  2274. "x": 0,
  2275. "y": 0,
  2276. "z": 0
  2277. },
  2278. "_skewX": 0,
  2279. "_skewY": 0,
  2280. "_is3DNode": false,
  2281. "_groupIndex": 0,
  2282. "groupIndex": 0,
  2283. "_id": "028/E6b4dH8ZA19dqzcPZM"
  2284. },
  2285. {
  2286. "__type__": "cc.Label",
  2287. "_name": "",
  2288. "_objFlags": 0,
  2289. "node": {
  2290. "__id__": 51
  2291. },
  2292. "_enabled": true,
  2293. "_materials": [
  2294. {
  2295. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2296. }
  2297. ],
  2298. "_useOriginalSize": false,
  2299. "_string": "恭喜胜利者",
  2300. "_N$string": "恭喜胜利者",
  2301. "_fontSize": 60,
  2302. "_lineHeight": 60,
  2303. "_enableWrapText": true,
  2304. "_N$file": null,
  2305. "_isSystemFontUsed": true,
  2306. "_spacingX": 0,
  2307. "_batchAsBitmap": false,
  2308. "_N$horizontalAlign": 1,
  2309. "_N$verticalAlign": 1,
  2310. "_N$fontFamily": "Arial",
  2311. "_N$overflow": 0,
  2312. "_N$cacheMode": 0,
  2313. "_id": "98Ss20TOJH45m2tb9ipUrX"
  2314. },
  2315. {
  2316. "__type__": "cc.LabelOutline",
  2317. "_name": "",
  2318. "_objFlags": 0,
  2319. "node": {
  2320. "__id__": 51
  2321. },
  2322. "_enabled": true,
  2323. "_color": {
  2324. "__type__": "cc.Color",
  2325. "r": 0,
  2326. "g": 255,
  2327. "b": 255,
  2328. "a": 255
  2329. },
  2330. "_width": 3,
  2331. "_id": "4dR1kNid1LGJ60y8k6XbFC"
  2332. },
  2333. {
  2334. "__type__": "cc.Node",
  2335. "_name": "RoleNode",
  2336. "_objFlags": 0,
  2337. "_parent": {
  2338. "__id__": 47
  2339. },
  2340. "_children": [
  2341. {
  2342. "__id__": 55
  2343. }
  2344. ],
  2345. "_active": true,
  2346. "_components": [],
  2347. "_prefab": null,
  2348. "_opacity": 255,
  2349. "_color": {
  2350. "__type__": "cc.Color",
  2351. "r": 255,
  2352. "g": 255,
  2353. "b": 255,
  2354. "a": 255
  2355. },
  2356. "_contentSize": {
  2357. "__type__": "cc.Size",
  2358. "width": 0,
  2359. "height": 0
  2360. },
  2361. "_anchorPoint": {
  2362. "__type__": "cc.Vec2",
  2363. "x": 0.5,
  2364. "y": 0.5
  2365. },
  2366. "_trs": {
  2367. "__type__": "TypedArray",
  2368. "ctor": "Float64Array",
  2369. "array": [
  2370. 0,
  2371. 0,
  2372. 0,
  2373. 0,
  2374. 0,
  2375. 0,
  2376. 1,
  2377. 1,
  2378. 1,
  2379. 1
  2380. ]
  2381. },
  2382. "_eulerAngles": {
  2383. "__type__": "cc.Vec3",
  2384. "x": 0,
  2385. "y": 0,
  2386. "z": 0
  2387. },
  2388. "_skewX": 0,
  2389. "_skewY": 0,
  2390. "_is3DNode": false,
  2391. "_groupIndex": 0,
  2392. "groupIndex": 0,
  2393. "_id": "31SdwO/E5CoI4DlcBdrHI6"
  2394. },
  2395. {
  2396. "__type__": "cc.Node",
  2397. "_name": "Frame",
  2398. "_objFlags": 0,
  2399. "_parent": {
  2400. "__id__": 54
  2401. },
  2402. "_children": [
  2403. {
  2404. "__id__": 56
  2405. },
  2406. {
  2407. "__id__": 58
  2408. }
  2409. ],
  2410. "_active": true,
  2411. "_components": [
  2412. {
  2413. "__id__": 60
  2414. }
  2415. ],
  2416. "_prefab": null,
  2417. "_opacity": 255,
  2418. "_color": {
  2419. "__type__": "cc.Color",
  2420. "r": 255,
  2421. "g": 255,
  2422. "b": 255,
  2423. "a": 255
  2424. },
  2425. "_contentSize": {
  2426. "__type__": "cc.Size",
  2427. "width": 200,
  2428. "height": 200
  2429. },
  2430. "_anchorPoint": {
  2431. "__type__": "cc.Vec2",
  2432. "x": 0.5,
  2433. "y": 0.5
  2434. },
  2435. "_trs": {
  2436. "__type__": "TypedArray",
  2437. "ctor": "Float64Array",
  2438. "array": [
  2439. 0,
  2440. 0,
  2441. 0,
  2442. 0,
  2443. 0,
  2444. 0,
  2445. 1,
  2446. 1,
  2447. 1,
  2448. 1
  2449. ]
  2450. },
  2451. "_eulerAngles": {
  2452. "__type__": "cc.Vec3",
  2453. "x": 0,
  2454. "y": 0,
  2455. "z": 0
  2456. },
  2457. "_skewX": 0,
  2458. "_skewY": 0,
  2459. "_is3DNode": false,
  2460. "_groupIndex": 0,
  2461. "groupIndex": 0,
  2462. "_id": "382In46/lFSaKO8OuwX6Tn"
  2463. },
  2464. {
  2465. "__type__": "cc.Node",
  2466. "_name": "BG",
  2467. "_objFlags": 0,
  2468. "_parent": {
  2469. "__id__": 55
  2470. },
  2471. "_children": [],
  2472. "_active": true,
  2473. "_components": [
  2474. {
  2475. "__id__": 57
  2476. }
  2477. ],
  2478. "_prefab": null,
  2479. "_opacity": 255,
  2480. "_color": {
  2481. "__type__": "cc.Color",
  2482. "r": 0,
  2483. "g": 255,
  2484. "b": 255,
  2485. "a": 255
  2486. },
  2487. "_contentSize": {
  2488. "__type__": "cc.Size",
  2489. "width": 220,
  2490. "height": 220
  2491. },
  2492. "_anchorPoint": {
  2493. "__type__": "cc.Vec2",
  2494. "x": 0.5,
  2495. "y": 0.5
  2496. },
  2497. "_trs": {
  2498. "__type__": "TypedArray",
  2499. "ctor": "Float64Array",
  2500. "array": [
  2501. 0,
  2502. 0,
  2503. 0,
  2504. 0,
  2505. 0,
  2506. 0,
  2507. 1,
  2508. 1,
  2509. 1,
  2510. 1
  2511. ]
  2512. },
  2513. "_eulerAngles": {
  2514. "__type__": "cc.Vec3",
  2515. "x": 0,
  2516. "y": 0,
  2517. "z": 0
  2518. },
  2519. "_skewX": 0,
  2520. "_skewY": 0,
  2521. "_is3DNode": false,
  2522. "_groupIndex": 0,
  2523. "groupIndex": 0,
  2524. "_id": "9eBaDf/N9CDJtWCV04uZsD"
  2525. },
  2526. {
  2527. "__type__": "cc.Sprite",
  2528. "_name": "",
  2529. "_objFlags": 0,
  2530. "node": {
  2531. "__id__": 56
  2532. },
  2533. "_enabled": true,
  2534. "_materials": [
  2535. {
  2536. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2537. }
  2538. ],
  2539. "_srcBlendFactor": 770,
  2540. "_dstBlendFactor": 771,
  2541. "_spriteFrame": {
  2542. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  2543. },
  2544. "_type": 0,
  2545. "_sizeMode": 0,
  2546. "_fillType": 0,
  2547. "_fillCenter": {
  2548. "__type__": "cc.Vec2",
  2549. "x": 0,
  2550. "y": 0
  2551. },
  2552. "_fillStart": 0,
  2553. "_fillRange": 0,
  2554. "_isTrimmedMode": true,
  2555. "_atlas": null,
  2556. "_id": "e0fgFfsuhK5o1MbbKqQ8Hd"
  2557. },
  2558. {
  2559. "__type__": "cc.Node",
  2560. "_name": "Atom",
  2561. "_objFlags": 0,
  2562. "_parent": {
  2563. "__id__": 55
  2564. },
  2565. "_children": [],
  2566. "_active": true,
  2567. "_components": [
  2568. {
  2569. "__id__": 59
  2570. }
  2571. ],
  2572. "_prefab": null,
  2573. "_opacity": 255,
  2574. "_color": {
  2575. "__type__": "cc.Color",
  2576. "r": 255,
  2577. "g": 255,
  2578. "b": 255,
  2579. "a": 255
  2580. },
  2581. "_contentSize": {
  2582. "__type__": "cc.Size",
  2583. "width": 0,
  2584. "height": 0
  2585. },
  2586. "_anchorPoint": {
  2587. "__type__": "cc.Vec2",
  2588. "x": 0.5,
  2589. "y": 0.5
  2590. },
  2591. "_trs": {
  2592. "__type__": "TypedArray",
  2593. "ctor": "Float64Array",
  2594. "array": [
  2595. 0,
  2596. 0,
  2597. 0,
  2598. 0,
  2599. 0,
  2600. 0,
  2601. 1,
  2602. 6,
  2603. 6,
  2604. 1
  2605. ]
  2606. },
  2607. "_eulerAngles": {
  2608. "__type__": "cc.Vec3",
  2609. "x": 0,
  2610. "y": 0,
  2611. "z": 0
  2612. },
  2613. "_skewX": 0,
  2614. "_skewY": 0,
  2615. "_is3DNode": false,
  2616. "_groupIndex": 0,
  2617. "groupIndex": 0,
  2618. "_id": "4cRrbbKdlOaIaYbrrXsOyk"
  2619. },
  2620. {
  2621. "__type__": "cc.ParticleSystem",
  2622. "_name": "",
  2623. "_objFlags": 0,
  2624. "node": {
  2625. "__id__": 58
  2626. },
  2627. "_enabled": true,
  2628. "_materials": [
  2629. {
  2630. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2631. }
  2632. ],
  2633. "_srcBlendFactor": 770,
  2634. "_dstBlendFactor": 1,
  2635. "_custom": false,
  2636. "_file": {
  2637. "__uuid__": "b2687ac4-099e-403c-a192-ff477686f4f5"
  2638. },
  2639. "_spriteFrame": {
  2640. "__uuid__": "472df5d3-35e7-4184-9e6c-7f41bee65ee3"
  2641. },
  2642. "_texture": {
  2643. "__uuid__": "d0a82d39-bede-46c4-b698-c81ff0dedfff"
  2644. },
  2645. "_stopped": true,
  2646. "playOnLoad": true,
  2647. "autoRemoveOnFinish": false,
  2648. "totalParticles": 200,
  2649. "duration": -1,
  2650. "emissionRate": 999.999985098839,
  2651. "life": 0.20000000298023224,
  2652. "lifeVar": 0.5,
  2653. "_startColor": {
  2654. "__type__": "cc.Color",
  2655. "r": 202,
  2656. "g": 200,
  2657. "b": 86,
  2658. "a": 163
  2659. },
  2660. "_startColorVar": {
  2661. "__type__": "cc.Color",
  2662. "r": 229,
  2663. "g": 255,
  2664. "b": 173,
  2665. "a": 198
  2666. },
  2667. "_endColor": {
  2668. "__type__": "cc.Color",
  2669. "r": 173,
  2670. "g": 161,
  2671. "b": 19,
  2672. "a": 214
  2673. },
  2674. "_endColorVar": {
  2675. "__type__": "cc.Color",
  2676. "r": 107,
  2677. "g": 249,
  2678. "b": 249,
  2679. "a": 188
  2680. },
  2681. "angle": 360,
  2682. "angleVar": 360,
  2683. "startSize": 3.369999885559082,
  2684. "startSizeVar": 50,
  2685. "endSize": 30.31999969482422,
  2686. "endSizeVar": 0,
  2687. "startSpin": -47.369998931884766,
  2688. "startSpinVar": 0,
  2689. "endSpin": -47.369998931884766,
  2690. "endSpinVar": -142.11000061035156,
  2691. "sourcePos": {
  2692. "__type__": "cc.Vec2",
  2693. "x": 0,
  2694. "y": 0
  2695. },
  2696. "posVar": {
  2697. "__type__": "cc.Vec2",
  2698. "x": 7,
  2699. "y": 7
  2700. },
  2701. "_positionType": 1,
  2702. "positionType": 1,
  2703. "emitterMode": 0,
  2704. "gravity": {
  2705. "__type__": "cc.Vec2",
  2706. "x": 0.25,
  2707. "y": 0.8600000143051147
  2708. },
  2709. "speed": 0,
  2710. "speedVar": 190.7899932861328,
  2711. "tangentialAccel": -92.11000061035156,
  2712. "tangentialAccelVar": 65.79000091552734,
  2713. "radialAccel": -671.0499877929688,
  2714. "radialAccelVar": 65.79000091552734,
  2715. "rotationIsDir": false,
  2716. "startRadius": 0,
  2717. "startRadiusVar": 0,
  2718. "endRadius": 0,
  2719. "endRadiusVar": 0,
  2720. "rotatePerS": 0,
  2721. "rotatePerSVar": 0,
  2722. "_N$preview": true,
  2723. "_id": "73RawjNqpFL5x2TH91yKUw"
  2724. },
  2725. {
  2726. "__type__": "cc.Mask",
  2727. "_name": "",
  2728. "_objFlags": 0,
  2729. "node": {
  2730. "__id__": 55
  2731. },
  2732. "_enabled": true,
  2733. "_materials": [
  2734. {
  2735. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2736. }
  2737. ],
  2738. "_spriteFrame": null,
  2739. "_type": 0,
  2740. "_segments": 64,
  2741. "_N$alphaThreshold": 0,
  2742. "_N$inverted": true,
  2743. "_id": "68zDabrjxPFKKFlpR7oq9t"
  2744. },
  2745. {
  2746. "__type__": "cc.Node",
  2747. "_name": "Restart",
  2748. "_objFlags": 0,
  2749. "_parent": {
  2750. "__id__": 47
  2751. },
  2752. "_children": [],
  2753. "_active": true,
  2754. "_components": [
  2755. {
  2756. "__id__": 62
  2757. },
  2758. {
  2759. "__id__": 63
  2760. },
  2761. {
  2762. "__id__": 64
  2763. }
  2764. ],
  2765. "_prefab": null,
  2766. "_opacity": 255,
  2767. "_color": {
  2768. "__type__": "cc.Color",
  2769. "r": 255,
  2770. "g": 255,
  2771. "b": 255,
  2772. "a": 255
  2773. },
  2774. "_contentSize": {
  2775. "__type__": "cc.Size",
  2776. "width": 204,
  2777. "height": 67
  2778. },
  2779. "_anchorPoint": {
  2780. "__type__": "cc.Vec2",
  2781. "x": 0.5,
  2782. "y": 0.5
  2783. },
  2784. "_trs": {
  2785. "__type__": "TypedArray",
  2786. "ctor": "Float64Array",
  2787. "array": [
  2788. 0,
  2789. -250,
  2790. 0,
  2791. 0,
  2792. 0,
  2793. 0,
  2794. 1,
  2795. 1,
  2796. 1,
  2797. 1
  2798. ]
  2799. },
  2800. "_eulerAngles": {
  2801. "__type__": "cc.Vec3",
  2802. "x": 0,
  2803. "y": 0,
  2804. "z": 0
  2805. },
  2806. "_skewX": 0,
  2807. "_skewY": 0,
  2808. "_is3DNode": false,
  2809. "_groupIndex": 0,
  2810. "groupIndex": 0,
  2811. "_id": "cbhB5JOqtOxojXzZPIxaDS"
  2812. },
  2813. {
  2814. "__type__": "cc.Label",
  2815. "_name": "",
  2816. "_objFlags": 0,
  2817. "node": {
  2818. "__id__": 61
  2819. },
  2820. "_enabled": true,
  2821. "_materials": [
  2822. {
  2823. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2824. }
  2825. ],
  2826. "_useOriginalSize": false,
  2827. "_string": "重新开始",
  2828. "_N$string": "重新开始",
  2829. "_fontSize": 50,
  2830. "_lineHeight": 50,
  2831. "_enableWrapText": true,
  2832. "_N$file": null,
  2833. "_isSystemFontUsed": true,
  2834. "_spacingX": 0,
  2835. "_batchAsBitmap": false,
  2836. "_N$horizontalAlign": 1,
  2837. "_N$verticalAlign": 1,
  2838. "_N$fontFamily": "Arial",
  2839. "_N$overflow": 0,
  2840. "_N$cacheMode": 0,
  2841. "_id": "31SBCxHmdIXYZxmHAuKnVn"
  2842. },
  2843. {
  2844. "__type__": "cc.LabelOutline",
  2845. "_name": "",
  2846. "_objFlags": 0,
  2847. "node": {
  2848. "__id__": 61
  2849. },
  2850. "_enabled": true,
  2851. "_color": {
  2852. "__type__": "cc.Color",
  2853. "r": 0,
  2854. "g": 255,
  2855. "b": 255,
  2856. "a": 255
  2857. },
  2858. "_width": 2,
  2859. "_id": "a7QpHuzSNHJoYl61Zln2u5"
  2860. },
  2861. {
  2862. "__type__": "cc.Button",
  2863. "_name": "",
  2864. "_objFlags": 0,
  2865. "node": {
  2866. "__id__": 61
  2867. },
  2868. "_enabled": true,
  2869. "duration": 0.1,
  2870. "zoomScale": 1.1,
  2871. "clickEvents": [],
  2872. "_N$interactable": true,
  2873. "_N$enableAutoGrayEffect": false,
  2874. "_N$transition": 3,
  2875. "transition": 3,
  2876. "_N$normalColor": {
  2877. "__type__": "cc.Color",
  2878. "r": 255,
  2879. "g": 255,
  2880. "b": 255,
  2881. "a": 255
  2882. },
  2883. "_N$pressedColor": {
  2884. "__type__": "cc.Color",
  2885. "r": 211,
  2886. "g": 211,
  2887. "b": 211,
  2888. "a": 255
  2889. },
  2890. "pressedColor": {
  2891. "__type__": "cc.Color",
  2892. "r": 211,
  2893. "g": 211,
  2894. "b": 211,
  2895. "a": 255
  2896. },
  2897. "_N$hoverColor": {
  2898. "__type__": "cc.Color",
  2899. "r": 255,
  2900. "g": 255,
  2901. "b": 255,
  2902. "a": 255
  2903. },
  2904. "hoverColor": {
  2905. "__type__": "cc.Color",
  2906. "r": 255,
  2907. "g": 255,
  2908. "b": 255,
  2909. "a": 255
  2910. },
  2911. "_N$disabledColor": {
  2912. "__type__": "cc.Color",
  2913. "r": 124,
  2914. "g": 124,
  2915. "b": 124,
  2916. "a": 255
  2917. },
  2918. "_N$normalSprite": null,
  2919. "_N$pressedSprite": null,
  2920. "pressedSprite": null,
  2921. "_N$hoverSprite": null,
  2922. "hoverSprite": null,
  2923. "_N$disabledSprite": null,
  2924. "_N$target": null,
  2925. "_id": "68O46cskNFoo8myvnqIddi"
  2926. },
  2927. {
  2928. "__type__": "d8557jhZxxDw4cmVz32zKhQ",
  2929. "_name": "",
  2930. "_objFlags": 0,
  2931. "node": {
  2932. "__id__": 47
  2933. },
  2934. "_enabled": true,
  2935. "_id": "3eimWq0o5IsJ24pnYav3ou"
  2936. },
  2937. {
  2938. "__type__": "cc.Canvas",
  2939. "_name": "",
  2940. "_objFlags": 0,
  2941. "node": {
  2942. "__id__": 2
  2943. },
  2944. "_enabled": true,
  2945. "_designResolution": {
  2946. "__type__": "cc.Size",
  2947. "width": 1280,
  2948. "height": 720
  2949. },
  2950. "_fitWidth": false,
  2951. "_fitHeight": true,
  2952. "_id": "a4CpxK0ctPFptf3rxg0dRI"
  2953. },
  2954. {
  2955. "__type__": "602ebnaPZ1Pkquy0QHg9zHe",
  2956. "_name": "",
  2957. "_objFlags": 0,
  2958. "node": {
  2959. "__id__": 2
  2960. },
  2961. "_enabled": true,
  2962. "_id": "efhPDUtFtKDoD3b33Jfcye"
  2963. },
  2964. {
  2965. "__type__": "0dbfbolIjlNhZJYAbzHYuIV",
  2966. "_name": "",
  2967. "_objFlags": 0,
  2968. "node": {
  2969. "__id__": 2
  2970. },
  2971. "_enabled": true,
  2972. "mapInfo": {
  2973. "__uuid__": "a05ec271-72cd-4ef6-a9aa-92ebc7cd8fce"
  2974. },
  2975. "pf_BG": {
  2976. "__uuid__": "78978e34-178d-4e7b-a84e-10055d4363b4"
  2977. },
  2978. "pf_Ground": {
  2979. "__uuid__": "8ad8923a-0922-4916-aea3-3abd0dc760e6"
  2980. },
  2981. "pf_Box": {
  2982. "__uuid__": "f7ee12ca-53fe-418b-8f0e-e652bd54c65a"
  2983. },
  2984. "pf_Role": {
  2985. "__uuid__": "32f68105-de00-4cba-bab9-525db0affbfb"
  2986. },
  2987. "pf_Saw": {
  2988. "__uuid__": "c9f10b5d-19f6-4726-9c61-3ce629b8dbb8"
  2989. },
  2990. "sf_Blood": {
  2991. "__uuid__": "1fde0e32-5b45-452f-9865-9ee78cf4580c"
  2992. },
  2993. "sf_StartCountDownAnimation": [
  2994. {
  2995. "__uuid__": "d20ec6ad-bc8a-477b-acf7-1d43c7847589"
  2996. },
  2997. {
  2998. "__uuid__": "70eaabd7-49b6-4ef0-b179-ad46ae9f4123"
  2999. },
  3000. {
  3001. "__uuid__": "1dab0bdc-0442-4253-85ca-0831e9d04cfc"
  3002. },
  3003. {
  3004. "__uuid__": "ec1cbd74-d2ba-4690-bdb1-a91286bbcdf9"
  3005. }
  3006. ],
  3007. "_id": "1bSati/stLKKgT+znFE8qC"
  3008. }
  3009. ]