award.prefab 51 KB

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