MainScene.fire 72 KB

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