GameMainPrefab.prefab 61 KB

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