GameOverUI.prefab 59 KB

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