12136205-219e-4064-9220-10b2f397c6af.json 65 KB

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