VerticalRecommentPanel.prefab 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541
  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": "VerticalRecommentPanel",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. }
  22. ],
  23. "_active": true,
  24. "_level": 1,
  25. "_components": [
  26. {
  27. "__id__": 73
  28. },
  29. {
  30. "__id__": 74
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 75
  35. },
  36. "_opacity": 255,
  37. "_color": {
  38. "__type__": "cc.Color",
  39. "r": 255,
  40. "g": 255,
  41. "b": 255,
  42. "a": 255
  43. },
  44. "_contentSize": {
  45. "__type__": "cc.Size",
  46. "width": 899,
  47. "height": 256
  48. },
  49. "_anchorPoint": {
  50. "__type__": "cc.Vec2",
  51. "x": 0.5,
  52. "y": 0.5
  53. },
  54. "_quat": {
  55. "__type__": "cc.Quat",
  56. "x": 0,
  57. "y": 0,
  58. "z": -0.7071067811865475,
  59. "w": 0.7071067811865476
  60. },
  61. "_skewX": 0,
  62. "_skewY": 0,
  63. "groupIndex": 0,
  64. "_id": "",
  65. "_eulerAngles": {
  66. "__type__": "cc.Vec3",
  67. "x": 0,
  68. "y": 0,
  69. "z": -90
  70. },
  71. "_trs": {
  72. "__type__": "TypedArray",
  73. "ctor": "Float64Array",
  74. "array": [
  75. -288,
  76. -34,
  77. 0,
  78. 0,
  79. 0,
  80. 0,
  81. 1,
  82. 1,
  83. 1,
  84. 1
  85. ]
  86. }
  87. },
  88. {
  89. "__type__": "cc.Node",
  90. "_name": "Panel",
  91. "_objFlags": 0,
  92. "_parent": {
  93. "__id__": 1
  94. },
  95. "_children": [
  96. {
  97. "__id__": 3
  98. }
  99. ],
  100. "_active": true,
  101. "_level": 2,
  102. "_components": [],
  103. "_prefab": {
  104. "__id__": 72
  105. },
  106. "_opacity": 255,
  107. "_color": {
  108. "__type__": "cc.Color",
  109. "r": 0,
  110. "g": 0,
  111. "b": 0,
  112. "a": 255
  113. },
  114. "_contentSize": {
  115. "__type__": "cc.Size",
  116. "width": 899,
  117. "height": 256
  118. },
  119. "_anchorPoint": {
  120. "__type__": "cc.Vec2",
  121. "x": 0.5,
  122. "y": 0.5
  123. },
  124. "_quat": {
  125. "__type__": "cc.Quat",
  126. "x": 0,
  127. "y": 0,
  128. "z": 0,
  129. "w": 1
  130. },
  131. "_skewX": 0,
  132. "_skewY": 0,
  133. "groupIndex": 0,
  134. "_id": "",
  135. "_trs": {
  136. "__type__": "TypedArray",
  137. "ctor": "Float64Array",
  138. "array": [
  139. 0,
  140. 0,
  141. 0,
  142. 0,
  143. 0,
  144. 0,
  145. 1,
  146. 1,
  147. 1,
  148. 1
  149. ]
  150. }
  151. },
  152. {
  153. "__type__": "cc.Node",
  154. "_name": "RecommendGamesNode",
  155. "_objFlags": 0,
  156. "_parent": {
  157. "__id__": 2
  158. },
  159. "_children": [
  160. {
  161. "__id__": 4
  162. },
  163. {
  164. "__id__": 26
  165. },
  166. {
  167. "__id__": 48
  168. }
  169. ],
  170. "_active": true,
  171. "_level": 3,
  172. "_components": [
  173. {
  174. "__id__": 70
  175. }
  176. ],
  177. "_prefab": {
  178. "__id__": 71
  179. },
  180. "_opacity": 255,
  181. "_color": {
  182. "__type__": "cc.Color",
  183. "r": 255,
  184. "g": 255,
  185. "b": 255,
  186. "a": 255
  187. },
  188. "_contentSize": {
  189. "__type__": "cc.Size",
  190. "width": 899,
  191. "height": 256
  192. },
  193. "_anchorPoint": {
  194. "__type__": "cc.Vec2",
  195. "x": 0.5,
  196. "y": 0.5
  197. },
  198. "_quat": {
  199. "__type__": "cc.Quat",
  200. "x": 0,
  201. "y": 0,
  202. "z": 0,
  203. "w": 1
  204. },
  205. "_skewX": 0,
  206. "_skewY": 0,
  207. "groupIndex": 0,
  208. "_id": "",
  209. "_trs": {
  210. "__type__": "TypedArray",
  211. "ctor": "Float64Array",
  212. "array": [
  213. 0,
  214. 0,
  215. 0,
  216. 0,
  217. 0,
  218. 0,
  219. 1,
  220. 1,
  221. 1,
  222. 1
  223. ]
  224. }
  225. },
  226. {
  227. "__type__": "cc.Node",
  228. "_name": "GameItem",
  229. "_objFlags": 0,
  230. "_parent": {
  231. "__id__": 3
  232. },
  233. "_children": [
  234. {
  235. "__id__": 5
  236. },
  237. {
  238. "__id__": 17
  239. },
  240. {
  241. "__id__": 20
  242. }
  243. ],
  244. "_active": true,
  245. "_level": 4,
  246. "_components": [
  247. {
  248. "__id__": 23
  249. },
  250. {
  251. "__id__": 24
  252. }
  253. ],
  254. "_prefab": {
  255. "__id__": 25
  256. },
  257. "_opacity": 255,
  258. "_color": {
  259. "__type__": "cc.Color",
  260. "r": 255,
  261. "g": 155,
  262. "b": 155,
  263. "a": 255
  264. },
  265. "_contentSize": {
  266. "__type__": "cc.Size",
  267. "width": 195,
  268. "height": 189
  269. },
  270. "_anchorPoint": {
  271. "__type__": "cc.Vec2",
  272. "x": 0.5,
  273. "y": 0.5
  274. },
  275. "_quat": {
  276. "__type__": "cc.Quat",
  277. "x": 0,
  278. "y": 0,
  279. "z": 0.7071067811865475,
  280. "w": 0.7071067811865476
  281. },
  282. "_skewX": 0,
  283. "_skewY": 0,
  284. "groupIndex": 0,
  285. "_id": "",
  286. "_eulerAngles": {
  287. "__type__": "cc.Vec3",
  288. "x": 0,
  289. "y": 0,
  290. "z": 90
  291. },
  292. "_trs": {
  293. "__type__": "TypedArray",
  294. "ctor": "Float64Array",
  295. "array": [
  296. -312,
  297. 0,
  298. 0,
  299. 0,
  300. 0,
  301. 0,
  302. 1,
  303. 1,
  304. 1,
  305. 1
  306. ]
  307. }
  308. },
  309. {
  310. "__type__": "cc.Node",
  311. "_name": "Mask",
  312. "_objFlags": 0,
  313. "_parent": {
  314. "__id__": 4
  315. },
  316. "_children": [
  317. {
  318. "__id__": 6
  319. },
  320. {
  321. "__id__": 9
  322. },
  323. {
  324. "__id__": 12
  325. }
  326. ],
  327. "_active": true,
  328. "_level": 2,
  329. "_components": [],
  330. "_prefab": {
  331. "__id__": 16
  332. },
  333. "_opacity": 255,
  334. "_color": {
  335. "__type__": "cc.Color",
  336. "r": 255,
  337. "g": 255,
  338. "b": 255,
  339. "a": 255
  340. },
  341. "_contentSize": {
  342. "__type__": "cc.Size",
  343. "width": 195,
  344. "height": 189
  345. },
  346. "_anchorPoint": {
  347. "__type__": "cc.Vec2",
  348. "x": 0.5,
  349. "y": 0.5
  350. },
  351. "_quat": {
  352. "__type__": "cc.Quat",
  353. "x": 0,
  354. "y": 0,
  355. "z": 0,
  356. "w": 1
  357. },
  358. "_skewX": 0,
  359. "_skewY": 0,
  360. "groupIndex": 0,
  361. "_id": "",
  362. "_trs": {
  363. "__type__": "TypedArray",
  364. "ctor": "Float64Array",
  365. "array": [
  366. 0,
  367. 0,
  368. 0,
  369. 0,
  370. 0,
  371. 0,
  372. 1,
  373. 1,
  374. 1,
  375. 1
  376. ]
  377. }
  378. },
  379. {
  380. "__type__": "cc.Node",
  381. "_name": "itemBg",
  382. "_objFlags": 0,
  383. "_parent": {
  384. "__id__": 5
  385. },
  386. "_children": [],
  387. "_active": false,
  388. "_level": 3,
  389. "_components": [
  390. {
  391. "__id__": 7
  392. }
  393. ],
  394. "_prefab": {
  395. "__id__": 8
  396. },
  397. "_opacity": 255,
  398. "_color": {
  399. "__type__": "cc.Color",
  400. "r": 255,
  401. "g": 255,
  402. "b": 255,
  403. "a": 255
  404. },
  405. "_contentSize": {
  406. "__type__": "cc.Size",
  407. "width": 195,
  408. "height": 189
  409. },
  410. "_anchorPoint": {
  411. "__type__": "cc.Vec2",
  412. "x": 0.5,
  413. "y": 0.5
  414. },
  415. "_quat": {
  416. "__type__": "cc.Quat",
  417. "x": 0,
  418. "y": 0,
  419. "z": 0,
  420. "w": 1
  421. },
  422. "_skewX": 0,
  423. "_skewY": 0,
  424. "groupIndex": 0,
  425. "_id": "",
  426. "_trs": {
  427. "__type__": "TypedArray",
  428. "ctor": "Float64Array",
  429. "array": [
  430. 0,
  431. 0,
  432. 0,
  433. 0,
  434. 0,
  435. 0,
  436. 1,
  437. 1,
  438. 1,
  439. 1
  440. ]
  441. }
  442. },
  443. {
  444. "__type__": "cc.Sprite",
  445. "_name": "",
  446. "_objFlags": 0,
  447. "node": {
  448. "__id__": 6
  449. },
  450. "_enabled": true,
  451. "_spriteFrame": {
  452. "__uuid__": "c6c48f2b-5f42-4535-b724-34d63a5ddd50"
  453. },
  454. "_type": 0,
  455. "_sizeMode": 0,
  456. "_fillType": 0,
  457. "_fillCenter": {
  458. "__type__": "cc.Vec2",
  459. "x": 0,
  460. "y": 0
  461. },
  462. "_fillStart": 0,
  463. "_fillRange": 0,
  464. "_isTrimmedMode": true,
  465. "_state": 0,
  466. "_atlas": {
  467. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  468. },
  469. "_srcBlendFactor": 770,
  470. "_dstBlendFactor": 771,
  471. "_id": ""
  472. },
  473. {
  474. "__type__": "cc.PrefabInfo",
  475. "root": {
  476. "__id__": 1
  477. },
  478. "asset": {
  479. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  480. },
  481. "fileId": "6bZcNsQPRN2puU4VaYkxoI",
  482. "sync": false
  483. },
  484. {
  485. "__type__": "cc.Node",
  486. "_name": "Icon",
  487. "_objFlags": 0,
  488. "_parent": {
  489. "__id__": 5
  490. },
  491. "_children": [],
  492. "_active": true,
  493. "_level": 3,
  494. "_components": [
  495. {
  496. "__id__": 10
  497. }
  498. ],
  499. "_prefab": {
  500. "__id__": 11
  501. },
  502. "_opacity": 255,
  503. "_color": {
  504. "__type__": "cc.Color",
  505. "r": 255,
  506. "g": 255,
  507. "b": 255,
  508. "a": 255
  509. },
  510. "_contentSize": {
  511. "__type__": "cc.Size",
  512. "width": 184,
  513. "height": 180
  514. },
  515. "_anchorPoint": {
  516. "__type__": "cc.Vec2",
  517. "x": 0.5,
  518. "y": 0.5
  519. },
  520. "_quat": {
  521. "__type__": "cc.Quat",
  522. "x": 0,
  523. "y": 0,
  524. "z": 0,
  525. "w": 1
  526. },
  527. "_skewX": 0,
  528. "_skewY": 0,
  529. "groupIndex": 0,
  530. "_id": "",
  531. "_trs": {
  532. "__type__": "TypedArray",
  533. "ctor": "Float64Array",
  534. "array": [
  535. 0,
  536. -0.2,
  537. 0,
  538. 0,
  539. 0,
  540. 0,
  541. 1,
  542. 1,
  543. 1,
  544. 1
  545. ]
  546. }
  547. },
  548. {
  549. "__type__": "cc.Sprite",
  550. "_name": "",
  551. "_objFlags": 0,
  552. "node": {
  553. "__id__": 9
  554. },
  555. "_enabled": true,
  556. "_spriteFrame": {
  557. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  558. },
  559. "_type": 0,
  560. "_sizeMode": 0,
  561. "_fillType": 0,
  562. "_fillCenter": {
  563. "__type__": "cc.Vec2",
  564. "x": 0,
  565. "y": 0
  566. },
  567. "_fillStart": 0,
  568. "_fillRange": 0,
  569. "_isTrimmedMode": true,
  570. "_state": 0,
  571. "_atlas": null,
  572. "_srcBlendFactor": 770,
  573. "_dstBlendFactor": 771,
  574. "_id": ""
  575. },
  576. {
  577. "__type__": "cc.PrefabInfo",
  578. "root": {
  579. "__id__": 1
  580. },
  581. "asset": {
  582. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  583. },
  584. "fileId": "c231/bVT5Ptogabmn+Inow",
  585. "sync": false
  586. },
  587. {
  588. "__type__": "cc.Node",
  589. "_name": "redpoint",
  590. "_objFlags": 0,
  591. "_parent": {
  592. "__id__": 5
  593. },
  594. "_children": [],
  595. "_active": true,
  596. "_level": 3,
  597. "_components": [
  598. {
  599. "__id__": 13
  600. },
  601. {
  602. "__id__": 14
  603. }
  604. ],
  605. "_prefab": {
  606. "__id__": 15
  607. },
  608. "_opacity": 255,
  609. "_color": {
  610. "__type__": "cc.Color",
  611. "r": 255,
  612. "g": 255,
  613. "b": 255,
  614. "a": 255
  615. },
  616. "_contentSize": {
  617. "__type__": "cc.Size",
  618. "width": 28,
  619. "height": 28
  620. },
  621. "_anchorPoint": {
  622. "__type__": "cc.Vec2",
  623. "x": 0.5,
  624. "y": 0.5
  625. },
  626. "_quat": {
  627. "__type__": "cc.Quat",
  628. "x": 0,
  629. "y": 0,
  630. "z": 0,
  631. "w": 1
  632. },
  633. "_skewX": 0,
  634. "_skewY": 0,
  635. "groupIndex": 0,
  636. "_id": "",
  637. "_trs": {
  638. "__type__": "TypedArray",
  639. "ctor": "Float64Array",
  640. "array": [
  641. -85.2,
  642. 80.8,
  643. 0,
  644. 0,
  645. 0,
  646. 0,
  647. 1,
  648. 1,
  649. 1,
  650. 1
  651. ]
  652. }
  653. },
  654. {
  655. "__type__": "cc.Sprite",
  656. "_name": "",
  657. "_objFlags": 0,
  658. "node": {
  659. "__id__": 12
  660. },
  661. "_enabled": true,
  662. "_spriteFrame": {
  663. "__uuid__": "35bedd17-5e47-4233-9e85-2a5e323208cb"
  664. },
  665. "_type": 0,
  666. "_sizeMode": 1,
  667. "_fillType": 0,
  668. "_fillCenter": {
  669. "__type__": "cc.Vec2",
  670. "x": 0,
  671. "y": 0
  672. },
  673. "_fillStart": 0,
  674. "_fillRange": 0,
  675. "_isTrimmedMode": true,
  676. "_state": 0,
  677. "_atlas": {
  678. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  679. },
  680. "_srcBlendFactor": 770,
  681. "_dstBlendFactor": 771,
  682. "_id": ""
  683. },
  684. {
  685. "__type__": "8ecccKnp/lLRYK/tCxltDQL",
  686. "_name": "",
  687. "_objFlags": 0,
  688. "node": {
  689. "__id__": 12
  690. },
  691. "_enabled": true,
  692. "_id": ""
  693. },
  694. {
  695. "__type__": "cc.PrefabInfo",
  696. "root": {
  697. "__id__": 1
  698. },
  699. "asset": {
  700. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  701. },
  702. "fileId": "5bELA2HvRLVpHX3BBsvALH",
  703. "sync": false
  704. },
  705. {
  706. "__type__": "cc.PrefabInfo",
  707. "root": {
  708. "__id__": 1
  709. },
  710. "asset": {
  711. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  712. },
  713. "fileId": "afoi8NPVFA6I8Arvlv68Jo",
  714. "sync": false
  715. },
  716. {
  717. "__type__": "cc.Node",
  718. "_name": "LabelShadow",
  719. "_objFlags": 0,
  720. "_parent": {
  721. "__id__": 4
  722. },
  723. "_children": [],
  724. "_active": false,
  725. "_level": 2,
  726. "_components": [
  727. {
  728. "__id__": 18
  729. }
  730. ],
  731. "_prefab": {
  732. "__id__": 19
  733. },
  734. "_opacity": 255,
  735. "_color": {
  736. "__type__": "cc.Color",
  737. "r": 229,
  738. "g": 212,
  739. "b": 40,
  740. "a": 255
  741. },
  742. "_contentSize": {
  743. "__type__": "cc.Size",
  744. "width": 88,
  745. "height": 30
  746. },
  747. "_anchorPoint": {
  748. "__type__": "cc.Vec2",
  749. "x": 0.5,
  750. "y": 0.5
  751. },
  752. "_quat": {
  753. "__type__": "cc.Quat",
  754. "x": 0,
  755. "y": 0,
  756. "z": 0,
  757. "w": 1
  758. },
  759. "_skewX": 0,
  760. "_skewY": 0,
  761. "groupIndex": 0,
  762. "_id": "",
  763. "_trs": {
  764. "__type__": "TypedArray",
  765. "ctor": "Float64Array",
  766. "array": [
  767. 0.2,
  768. -77.7,
  769. 0,
  770. 0,
  771. 0,
  772. 0,
  773. 1,
  774. 1,
  775. 1,
  776. 1
  777. ]
  778. }
  779. },
  780. {
  781. "__type__": "cc.Label",
  782. "_name": "",
  783. "_objFlags": 0,
  784. "node": {
  785. "__id__": 17
  786. },
  787. "_enabled": true,
  788. "_useOriginalSize": false,
  789. "_string": "绝地求生",
  790. "_N$string": "绝地求生",
  791. "_fontSize": 22,
  792. "_lineHeight": 30,
  793. "_enableWrapText": true,
  794. "_N$file": null,
  795. "_isSystemFontUsed": true,
  796. "_spacingX": 0,
  797. "_batchAsBitmap": false,
  798. "_N$horizontalAlign": 1,
  799. "_N$verticalAlign": 1,
  800. "_N$fontFamily": "Arial",
  801. "_N$overflow": 0,
  802. "_N$cacheMode": 0,
  803. "_id": ""
  804. },
  805. {
  806. "__type__": "cc.PrefabInfo",
  807. "root": {
  808. "__id__": 1
  809. },
  810. "asset": {
  811. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  812. },
  813. "fileId": "ffDnZE/IFEfo7PrvH8dIVw",
  814. "sync": false
  815. },
  816. {
  817. "__type__": "cc.Node",
  818. "_name": "Label",
  819. "_objFlags": 0,
  820. "_parent": {
  821. "__id__": 4
  822. },
  823. "_children": [],
  824. "_active": true,
  825. "_level": 2,
  826. "_components": [
  827. {
  828. "__id__": 21
  829. }
  830. ],
  831. "_prefab": {
  832. "__id__": 22
  833. },
  834. "_opacity": 255,
  835. "_color": {
  836. "__type__": "cc.Color",
  837. "r": 255,
  838. "g": 255,
  839. "b": 255,
  840. "a": 255
  841. },
  842. "_contentSize": {
  843. "__type__": "cc.Size",
  844. "width": 140,
  845. "height": 40
  846. },
  847. "_anchorPoint": {
  848. "__type__": "cc.Vec2",
  849. "x": 0.5,
  850. "y": 0.5
  851. },
  852. "_quat": {
  853. "__type__": "cc.Quat",
  854. "x": 0,
  855. "y": 0,
  856. "z": 0,
  857. "w": 1
  858. },
  859. "_skewX": 0,
  860. "_skewY": 0,
  861. "groupIndex": 0,
  862. "_id": "",
  863. "_trs": {
  864. "__type__": "TypedArray",
  865. "ctor": "Float64Array",
  866. "array": [
  867. 0,
  868. -136.2,
  869. 0,
  870. 0,
  871. 0,
  872. 0,
  873. 1,
  874. 1,
  875. 1,
  876. 1
  877. ]
  878. }
  879. },
  880. {
  881. "__type__": "cc.Label",
  882. "_name": "",
  883. "_objFlags": 0,
  884. "node": {
  885. "__id__": 20
  886. },
  887. "_enabled": true,
  888. "_useOriginalSize": false,
  889. "_string": "绝地求生",
  890. "_N$string": "绝地求生",
  891. "_fontSize": 35,
  892. "_lineHeight": 40,
  893. "_enableWrapText": true,
  894. "_N$file": null,
  895. "_isSystemFontUsed": true,
  896. "_spacingX": 0,
  897. "_batchAsBitmap": false,
  898. "_N$horizontalAlign": 1,
  899. "_N$verticalAlign": 1,
  900. "_N$fontFamily": "Arial",
  901. "_N$overflow": 0,
  902. "_N$cacheMode": 0,
  903. "_id": ""
  904. },
  905. {
  906. "__type__": "cc.PrefabInfo",
  907. "root": {
  908. "__id__": 1
  909. },
  910. "asset": {
  911. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  912. },
  913. "fileId": "c0g3aQb9pLAJLyxnGC6j9/",
  914. "sync": false
  915. },
  916. {
  917. "__type__": "cc.Sprite",
  918. "_name": "",
  919. "_objFlags": 0,
  920. "node": {
  921. "__id__": 4
  922. },
  923. "_enabled": false,
  924. "_spriteFrame": {
  925. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  926. },
  927. "_type": 0,
  928. "_sizeMode": 0,
  929. "_fillType": 0,
  930. "_fillCenter": {
  931. "__type__": "cc.Vec2",
  932. "x": 0,
  933. "y": 0
  934. },
  935. "_fillStart": 0,
  936. "_fillRange": 0,
  937. "_isTrimmedMode": true,
  938. "_state": 0,
  939. "_atlas": null,
  940. "_srcBlendFactor": 770,
  941. "_dstBlendFactor": 771,
  942. "_id": ""
  943. },
  944. {
  945. "__type__": "e2d27IwlQ5B5pmeL0p/D+5H",
  946. "_name": "",
  947. "_objFlags": 0,
  948. "node": {
  949. "__id__": 4
  950. },
  951. "_enabled": true,
  952. "_id": ""
  953. },
  954. {
  955. "__type__": "cc.PrefabInfo",
  956. "root": {
  957. "__id__": 1
  958. },
  959. "asset": {
  960. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  961. },
  962. "fileId": "e4ZjclZ6JGn4u1oAveI4IF",
  963. "sync": false
  964. },
  965. {
  966. "__type__": "cc.Node",
  967. "_name": "GameItem",
  968. "_objFlags": 0,
  969. "_parent": {
  970. "__id__": 3
  971. },
  972. "_children": [
  973. {
  974. "__id__": 27
  975. },
  976. {
  977. "__id__": 39
  978. },
  979. {
  980. "__id__": 42
  981. }
  982. ],
  983. "_active": true,
  984. "_level": 4,
  985. "_components": [
  986. {
  987. "__id__": 45
  988. },
  989. {
  990. "__id__": 46
  991. }
  992. ],
  993. "_prefab": {
  994. "__id__": 47
  995. },
  996. "_opacity": 255,
  997. "_color": {
  998. "__type__": "cc.Color",
  999. "r": 255,
  1000. "g": 155,
  1001. "b": 155,
  1002. "a": 255
  1003. },
  1004. "_contentSize": {
  1005. "__type__": "cc.Size",
  1006. "width": 195,
  1007. "height": 189
  1008. },
  1009. "_anchorPoint": {
  1010. "__type__": "cc.Vec2",
  1011. "x": 0.5,
  1012. "y": 0.5
  1013. },
  1014. "_quat": {
  1015. "__type__": "cc.Quat",
  1016. "x": 0,
  1017. "y": 0,
  1018. "z": 0.7071067811865475,
  1019. "w": 0.7071067811865476
  1020. },
  1021. "_skewX": 0,
  1022. "_skewY": 0,
  1023. "groupIndex": 0,
  1024. "_id": "",
  1025. "_eulerAngles": {
  1026. "__type__": "cc.Vec3",
  1027. "x": 0,
  1028. "y": 0,
  1029. "z": 90
  1030. },
  1031. "_trs": {
  1032. "__type__": "TypedArray",
  1033. "ctor": "Float64Array",
  1034. "array": [
  1035. -28,
  1036. 0,
  1037. 0,
  1038. 0,
  1039. 0,
  1040. 0,
  1041. 1,
  1042. 1,
  1043. 1,
  1044. 1
  1045. ]
  1046. }
  1047. },
  1048. {
  1049. "__type__": "cc.Node",
  1050. "_name": "Mask",
  1051. "_objFlags": 0,
  1052. "_parent": {
  1053. "__id__": 26
  1054. },
  1055. "_children": [
  1056. {
  1057. "__id__": 28
  1058. },
  1059. {
  1060. "__id__": 31
  1061. },
  1062. {
  1063. "__id__": 34
  1064. }
  1065. ],
  1066. "_active": true,
  1067. "_level": 2,
  1068. "_components": [],
  1069. "_prefab": {
  1070. "__id__": 38
  1071. },
  1072. "_opacity": 255,
  1073. "_color": {
  1074. "__type__": "cc.Color",
  1075. "r": 255,
  1076. "g": 255,
  1077. "b": 255,
  1078. "a": 255
  1079. },
  1080. "_contentSize": {
  1081. "__type__": "cc.Size",
  1082. "width": 195,
  1083. "height": 189
  1084. },
  1085. "_anchorPoint": {
  1086. "__type__": "cc.Vec2",
  1087. "x": 0.5,
  1088. "y": 0.5
  1089. },
  1090. "_quat": {
  1091. "__type__": "cc.Quat",
  1092. "x": 0,
  1093. "y": 0,
  1094. "z": 0,
  1095. "w": 1
  1096. },
  1097. "_skewX": 0,
  1098. "_skewY": 0,
  1099. "groupIndex": 0,
  1100. "_id": "",
  1101. "_trs": {
  1102. "__type__": "TypedArray",
  1103. "ctor": "Float64Array",
  1104. "array": [
  1105. 0,
  1106. 0,
  1107. 0,
  1108. 0,
  1109. 0,
  1110. 0,
  1111. 1,
  1112. 1,
  1113. 1,
  1114. 1
  1115. ]
  1116. }
  1117. },
  1118. {
  1119. "__type__": "cc.Node",
  1120. "_name": "itemBg",
  1121. "_objFlags": 0,
  1122. "_parent": {
  1123. "__id__": 27
  1124. },
  1125. "_children": [],
  1126. "_active": false,
  1127. "_level": 3,
  1128. "_components": [
  1129. {
  1130. "__id__": 29
  1131. }
  1132. ],
  1133. "_prefab": {
  1134. "__id__": 30
  1135. },
  1136. "_opacity": 255,
  1137. "_color": {
  1138. "__type__": "cc.Color",
  1139. "r": 255,
  1140. "g": 255,
  1141. "b": 255,
  1142. "a": 255
  1143. },
  1144. "_contentSize": {
  1145. "__type__": "cc.Size",
  1146. "width": 195,
  1147. "height": 189
  1148. },
  1149. "_anchorPoint": {
  1150. "__type__": "cc.Vec2",
  1151. "x": 0.5,
  1152. "y": 0.5
  1153. },
  1154. "_quat": {
  1155. "__type__": "cc.Quat",
  1156. "x": 0,
  1157. "y": 0,
  1158. "z": 0,
  1159. "w": 1
  1160. },
  1161. "_skewX": 0,
  1162. "_skewY": 0,
  1163. "groupIndex": 0,
  1164. "_id": "",
  1165. "_trs": {
  1166. "__type__": "TypedArray",
  1167. "ctor": "Float64Array",
  1168. "array": [
  1169. 0,
  1170. 0,
  1171. 0,
  1172. 0,
  1173. 0,
  1174. 0,
  1175. 1,
  1176. 1,
  1177. 1,
  1178. 1
  1179. ]
  1180. }
  1181. },
  1182. {
  1183. "__type__": "cc.Sprite",
  1184. "_name": "",
  1185. "_objFlags": 0,
  1186. "node": {
  1187. "__id__": 28
  1188. },
  1189. "_enabled": true,
  1190. "_spriteFrame": {
  1191. "__uuid__": "c6c48f2b-5f42-4535-b724-34d63a5ddd50"
  1192. },
  1193. "_type": 0,
  1194. "_sizeMode": 0,
  1195. "_fillType": 0,
  1196. "_fillCenter": {
  1197. "__type__": "cc.Vec2",
  1198. "x": 0,
  1199. "y": 0
  1200. },
  1201. "_fillStart": 0,
  1202. "_fillRange": 0,
  1203. "_isTrimmedMode": true,
  1204. "_state": 0,
  1205. "_atlas": {
  1206. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  1207. },
  1208. "_srcBlendFactor": 770,
  1209. "_dstBlendFactor": 771,
  1210. "_id": ""
  1211. },
  1212. {
  1213. "__type__": "cc.PrefabInfo",
  1214. "root": {
  1215. "__id__": 1
  1216. },
  1217. "asset": {
  1218. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  1219. },
  1220. "fileId": "97FNPMboFH16SlouLUyJiI",
  1221. "sync": false
  1222. },
  1223. {
  1224. "__type__": "cc.Node",
  1225. "_name": "Icon",
  1226. "_objFlags": 0,
  1227. "_parent": {
  1228. "__id__": 27
  1229. },
  1230. "_children": [],
  1231. "_active": true,
  1232. "_level": 3,
  1233. "_components": [
  1234. {
  1235. "__id__": 32
  1236. }
  1237. ],
  1238. "_prefab": {
  1239. "__id__": 33
  1240. },
  1241. "_opacity": 255,
  1242. "_color": {
  1243. "__type__": "cc.Color",
  1244. "r": 255,
  1245. "g": 255,
  1246. "b": 255,
  1247. "a": 255
  1248. },
  1249. "_contentSize": {
  1250. "__type__": "cc.Size",
  1251. "width": 184,
  1252. "height": 180
  1253. },
  1254. "_anchorPoint": {
  1255. "__type__": "cc.Vec2",
  1256. "x": 0.5,
  1257. "y": 0.5
  1258. },
  1259. "_quat": {
  1260. "__type__": "cc.Quat",
  1261. "x": 0,
  1262. "y": 0,
  1263. "z": 0,
  1264. "w": 1
  1265. },
  1266. "_skewX": 0,
  1267. "_skewY": 0,
  1268. "groupIndex": 0,
  1269. "_id": "",
  1270. "_trs": {
  1271. "__type__": "TypedArray",
  1272. "ctor": "Float64Array",
  1273. "array": [
  1274. 0,
  1275. -0.2,
  1276. 0,
  1277. 0,
  1278. 0,
  1279. 0,
  1280. 1,
  1281. 1,
  1282. 1,
  1283. 1
  1284. ]
  1285. }
  1286. },
  1287. {
  1288. "__type__": "cc.Sprite",
  1289. "_name": "",
  1290. "_objFlags": 0,
  1291. "node": {
  1292. "__id__": 31
  1293. },
  1294. "_enabled": true,
  1295. "_spriteFrame": {
  1296. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1297. },
  1298. "_type": 0,
  1299. "_sizeMode": 0,
  1300. "_fillType": 0,
  1301. "_fillCenter": {
  1302. "__type__": "cc.Vec2",
  1303. "x": 0,
  1304. "y": 0
  1305. },
  1306. "_fillStart": 0,
  1307. "_fillRange": 0,
  1308. "_isTrimmedMode": true,
  1309. "_state": 0,
  1310. "_atlas": null,
  1311. "_srcBlendFactor": 770,
  1312. "_dstBlendFactor": 771,
  1313. "_id": ""
  1314. },
  1315. {
  1316. "__type__": "cc.PrefabInfo",
  1317. "root": {
  1318. "__id__": 1
  1319. },
  1320. "asset": {
  1321. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  1322. },
  1323. "fileId": "492dZhRERJAplRDGSo27kK",
  1324. "sync": false
  1325. },
  1326. {
  1327. "__type__": "cc.Node",
  1328. "_name": "redpoint",
  1329. "_objFlags": 0,
  1330. "_parent": {
  1331. "__id__": 27
  1332. },
  1333. "_children": [],
  1334. "_active": true,
  1335. "_level": 3,
  1336. "_components": [
  1337. {
  1338. "__id__": 35
  1339. },
  1340. {
  1341. "__id__": 36
  1342. }
  1343. ],
  1344. "_prefab": {
  1345. "__id__": 37
  1346. },
  1347. "_opacity": 255,
  1348. "_color": {
  1349. "__type__": "cc.Color",
  1350. "r": 255,
  1351. "g": 255,
  1352. "b": 255,
  1353. "a": 255
  1354. },
  1355. "_contentSize": {
  1356. "__type__": "cc.Size",
  1357. "width": 28,
  1358. "height": 28
  1359. },
  1360. "_anchorPoint": {
  1361. "__type__": "cc.Vec2",
  1362. "x": 0.5,
  1363. "y": 0.5
  1364. },
  1365. "_quat": {
  1366. "__type__": "cc.Quat",
  1367. "x": 0,
  1368. "y": 0,
  1369. "z": 0,
  1370. "w": 1
  1371. },
  1372. "_skewX": 0,
  1373. "_skewY": 0,
  1374. "groupIndex": 0,
  1375. "_id": "",
  1376. "_trs": {
  1377. "__type__": "TypedArray",
  1378. "ctor": "Float64Array",
  1379. "array": [
  1380. -85.2,
  1381. 80.8,
  1382. 0,
  1383. 0,
  1384. 0,
  1385. 0,
  1386. 1,
  1387. 1,
  1388. 1,
  1389. 1
  1390. ]
  1391. }
  1392. },
  1393. {
  1394. "__type__": "cc.Sprite",
  1395. "_name": "",
  1396. "_objFlags": 0,
  1397. "node": {
  1398. "__id__": 34
  1399. },
  1400. "_enabled": true,
  1401. "_spriteFrame": {
  1402. "__uuid__": "35bedd17-5e47-4233-9e85-2a5e323208cb"
  1403. },
  1404. "_type": 0,
  1405. "_sizeMode": 1,
  1406. "_fillType": 0,
  1407. "_fillCenter": {
  1408. "__type__": "cc.Vec2",
  1409. "x": 0,
  1410. "y": 0
  1411. },
  1412. "_fillStart": 0,
  1413. "_fillRange": 0,
  1414. "_isTrimmedMode": true,
  1415. "_state": 0,
  1416. "_atlas": {
  1417. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  1418. },
  1419. "_srcBlendFactor": 770,
  1420. "_dstBlendFactor": 771,
  1421. "_id": ""
  1422. },
  1423. {
  1424. "__type__": "8ecccKnp/lLRYK/tCxltDQL",
  1425. "_name": "",
  1426. "_objFlags": 0,
  1427. "node": {
  1428. "__id__": 34
  1429. },
  1430. "_enabled": true,
  1431. "_id": ""
  1432. },
  1433. {
  1434. "__type__": "cc.PrefabInfo",
  1435. "root": {
  1436. "__id__": 1
  1437. },
  1438. "asset": {
  1439. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  1440. },
  1441. "fileId": "3deiH+/S5As7UYXWV2LdNJ",
  1442. "sync": false
  1443. },
  1444. {
  1445. "__type__": "cc.PrefabInfo",
  1446. "root": {
  1447. "__id__": 1
  1448. },
  1449. "asset": {
  1450. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  1451. },
  1452. "fileId": "63bs+vvqhPh7ZmYeUUNunh",
  1453. "sync": false
  1454. },
  1455. {
  1456. "__type__": "cc.Node",
  1457. "_name": "LabelShadow",
  1458. "_objFlags": 0,
  1459. "_parent": {
  1460. "__id__": 26
  1461. },
  1462. "_children": [],
  1463. "_active": false,
  1464. "_level": 2,
  1465. "_components": [
  1466. {
  1467. "__id__": 40
  1468. }
  1469. ],
  1470. "_prefab": {
  1471. "__id__": 41
  1472. },
  1473. "_opacity": 255,
  1474. "_color": {
  1475. "__type__": "cc.Color",
  1476. "r": 229,
  1477. "g": 212,
  1478. "b": 40,
  1479. "a": 255
  1480. },
  1481. "_contentSize": {
  1482. "__type__": "cc.Size",
  1483. "width": 88,
  1484. "height": 30
  1485. },
  1486. "_anchorPoint": {
  1487. "__type__": "cc.Vec2",
  1488. "x": 0.5,
  1489. "y": 0.5
  1490. },
  1491. "_quat": {
  1492. "__type__": "cc.Quat",
  1493. "x": 0,
  1494. "y": 0,
  1495. "z": 0,
  1496. "w": 1
  1497. },
  1498. "_skewX": 0,
  1499. "_skewY": 0,
  1500. "groupIndex": 0,
  1501. "_id": "",
  1502. "_trs": {
  1503. "__type__": "TypedArray",
  1504. "ctor": "Float64Array",
  1505. "array": [
  1506. 0.2,
  1507. -77.7,
  1508. 0,
  1509. 0,
  1510. 0,
  1511. 0,
  1512. 1,
  1513. 1,
  1514. 1,
  1515. 1
  1516. ]
  1517. }
  1518. },
  1519. {
  1520. "__type__": "cc.Label",
  1521. "_name": "",
  1522. "_objFlags": 0,
  1523. "node": {
  1524. "__id__": 39
  1525. },
  1526. "_enabled": true,
  1527. "_useOriginalSize": false,
  1528. "_string": "绝地求生",
  1529. "_N$string": "绝地求生",
  1530. "_fontSize": 22,
  1531. "_lineHeight": 30,
  1532. "_enableWrapText": true,
  1533. "_N$file": null,
  1534. "_isSystemFontUsed": true,
  1535. "_spacingX": 0,
  1536. "_batchAsBitmap": false,
  1537. "_N$horizontalAlign": 1,
  1538. "_N$verticalAlign": 1,
  1539. "_N$fontFamily": "Arial",
  1540. "_N$overflow": 0,
  1541. "_N$cacheMode": 0,
  1542. "_id": ""
  1543. },
  1544. {
  1545. "__type__": "cc.PrefabInfo",
  1546. "root": {
  1547. "__id__": 1
  1548. },
  1549. "asset": {
  1550. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  1551. },
  1552. "fileId": "a3Xldkj8RBN7skMPHvxFzV",
  1553. "sync": false
  1554. },
  1555. {
  1556. "__type__": "cc.Node",
  1557. "_name": "Label",
  1558. "_objFlags": 0,
  1559. "_parent": {
  1560. "__id__": 26
  1561. },
  1562. "_children": [],
  1563. "_active": true,
  1564. "_level": 2,
  1565. "_components": [
  1566. {
  1567. "__id__": 43
  1568. }
  1569. ],
  1570. "_prefab": {
  1571. "__id__": 44
  1572. },
  1573. "_opacity": 255,
  1574. "_color": {
  1575. "__type__": "cc.Color",
  1576. "r": 255,
  1577. "g": 255,
  1578. "b": 255,
  1579. "a": 255
  1580. },
  1581. "_contentSize": {
  1582. "__type__": "cc.Size",
  1583. "width": 140,
  1584. "height": 40
  1585. },
  1586. "_anchorPoint": {
  1587. "__type__": "cc.Vec2",
  1588. "x": 0.5,
  1589. "y": 0.5
  1590. },
  1591. "_quat": {
  1592. "__type__": "cc.Quat",
  1593. "x": 0,
  1594. "y": 0,
  1595. "z": 0,
  1596. "w": 1
  1597. },
  1598. "_skewX": 0,
  1599. "_skewY": 0,
  1600. "groupIndex": 0,
  1601. "_id": "",
  1602. "_trs": {
  1603. "__type__": "TypedArray",
  1604. "ctor": "Float64Array",
  1605. "array": [
  1606. 0,
  1607. -136.2,
  1608. 0,
  1609. 0,
  1610. 0,
  1611. 0,
  1612. 1,
  1613. 1,
  1614. 1,
  1615. 1
  1616. ]
  1617. }
  1618. },
  1619. {
  1620. "__type__": "cc.Label",
  1621. "_name": "",
  1622. "_objFlags": 0,
  1623. "node": {
  1624. "__id__": 42
  1625. },
  1626. "_enabled": true,
  1627. "_useOriginalSize": false,
  1628. "_string": "绝地求生",
  1629. "_N$string": "绝地求生",
  1630. "_fontSize": 35,
  1631. "_lineHeight": 40,
  1632. "_enableWrapText": true,
  1633. "_N$file": null,
  1634. "_isSystemFontUsed": true,
  1635. "_spacingX": 0,
  1636. "_batchAsBitmap": false,
  1637. "_N$horizontalAlign": 1,
  1638. "_N$verticalAlign": 1,
  1639. "_N$fontFamily": "Arial",
  1640. "_N$overflow": 0,
  1641. "_N$cacheMode": 0,
  1642. "_id": ""
  1643. },
  1644. {
  1645. "__type__": "cc.PrefabInfo",
  1646. "root": {
  1647. "__id__": 1
  1648. },
  1649. "asset": {
  1650. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  1651. },
  1652. "fileId": "e5L5sMAwlHeovOMQFSSDch",
  1653. "sync": false
  1654. },
  1655. {
  1656. "__type__": "cc.Sprite",
  1657. "_name": "",
  1658. "_objFlags": 0,
  1659. "node": {
  1660. "__id__": 26
  1661. },
  1662. "_enabled": false,
  1663. "_spriteFrame": {
  1664. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1665. },
  1666. "_type": 0,
  1667. "_sizeMode": 0,
  1668. "_fillType": 0,
  1669. "_fillCenter": {
  1670. "__type__": "cc.Vec2",
  1671. "x": 0,
  1672. "y": 0
  1673. },
  1674. "_fillStart": 0,
  1675. "_fillRange": 0,
  1676. "_isTrimmedMode": true,
  1677. "_state": 0,
  1678. "_atlas": null,
  1679. "_srcBlendFactor": 770,
  1680. "_dstBlendFactor": 771,
  1681. "_id": ""
  1682. },
  1683. {
  1684. "__type__": "e2d27IwlQ5B5pmeL0p/D+5H",
  1685. "_name": "",
  1686. "_objFlags": 0,
  1687. "node": {
  1688. "__id__": 26
  1689. },
  1690. "_enabled": true,
  1691. "_id": ""
  1692. },
  1693. {
  1694. "__type__": "cc.PrefabInfo",
  1695. "root": {
  1696. "__id__": 1
  1697. },
  1698. "asset": {
  1699. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  1700. },
  1701. "fileId": "44FU0uz39Gl4PQq6bOpuYR",
  1702. "sync": false
  1703. },
  1704. {
  1705. "__type__": "cc.Node",
  1706. "_name": "GameItem",
  1707. "_objFlags": 0,
  1708. "_parent": {
  1709. "__id__": 3
  1710. },
  1711. "_children": [
  1712. {
  1713. "__id__": 49
  1714. },
  1715. {
  1716. "__id__": 61
  1717. },
  1718. {
  1719. "__id__": 64
  1720. }
  1721. ],
  1722. "_active": true,
  1723. "_level": 4,
  1724. "_components": [
  1725. {
  1726. "__id__": 67
  1727. },
  1728. {
  1729. "__id__": 68
  1730. }
  1731. ],
  1732. "_prefab": {
  1733. "__id__": 69
  1734. },
  1735. "_opacity": 255,
  1736. "_color": {
  1737. "__type__": "cc.Color",
  1738. "r": 255,
  1739. "g": 155,
  1740. "b": 155,
  1741. "a": 255
  1742. },
  1743. "_contentSize": {
  1744. "__type__": "cc.Size",
  1745. "width": 195,
  1746. "height": 189
  1747. },
  1748. "_anchorPoint": {
  1749. "__type__": "cc.Vec2",
  1750. "x": 0.5,
  1751. "y": 0.5
  1752. },
  1753. "_quat": {
  1754. "__type__": "cc.Quat",
  1755. "x": 0,
  1756. "y": 0,
  1757. "z": 0.7071067811865475,
  1758. "w": 0.7071067811865476
  1759. },
  1760. "_skewX": 0,
  1761. "_skewY": 0,
  1762. "groupIndex": 0,
  1763. "_id": "",
  1764. "_eulerAngles": {
  1765. "__type__": "cc.Vec3",
  1766. "x": 0,
  1767. "y": 0,
  1768. "z": 90
  1769. },
  1770. "_trs": {
  1771. "__type__": "TypedArray",
  1772. "ctor": "Float64Array",
  1773. "array": [
  1774. 262,
  1775. 0,
  1776. 0,
  1777. 0,
  1778. 0,
  1779. 0,
  1780. 1,
  1781. 1,
  1782. 1,
  1783. 1
  1784. ]
  1785. }
  1786. },
  1787. {
  1788. "__type__": "cc.Node",
  1789. "_name": "Mask",
  1790. "_objFlags": 0,
  1791. "_parent": {
  1792. "__id__": 48
  1793. },
  1794. "_children": [
  1795. {
  1796. "__id__": 50
  1797. },
  1798. {
  1799. "__id__": 53
  1800. },
  1801. {
  1802. "__id__": 56
  1803. }
  1804. ],
  1805. "_active": true,
  1806. "_level": 2,
  1807. "_components": [],
  1808. "_prefab": {
  1809. "__id__": 60
  1810. },
  1811. "_opacity": 255,
  1812. "_color": {
  1813. "__type__": "cc.Color",
  1814. "r": 255,
  1815. "g": 255,
  1816. "b": 255,
  1817. "a": 255
  1818. },
  1819. "_contentSize": {
  1820. "__type__": "cc.Size",
  1821. "width": 195,
  1822. "height": 189
  1823. },
  1824. "_anchorPoint": {
  1825. "__type__": "cc.Vec2",
  1826. "x": 0.5,
  1827. "y": 0.5
  1828. },
  1829. "_quat": {
  1830. "__type__": "cc.Quat",
  1831. "x": 0,
  1832. "y": 0,
  1833. "z": 0,
  1834. "w": 1
  1835. },
  1836. "_skewX": 0,
  1837. "_skewY": 0,
  1838. "groupIndex": 0,
  1839. "_id": "",
  1840. "_trs": {
  1841. "__type__": "TypedArray",
  1842. "ctor": "Float64Array",
  1843. "array": [
  1844. 0,
  1845. 0,
  1846. 0,
  1847. 0,
  1848. 0,
  1849. 0,
  1850. 1,
  1851. 1,
  1852. 1,
  1853. 1
  1854. ]
  1855. }
  1856. },
  1857. {
  1858. "__type__": "cc.Node",
  1859. "_name": "itemBg",
  1860. "_objFlags": 0,
  1861. "_parent": {
  1862. "__id__": 49
  1863. },
  1864. "_children": [],
  1865. "_active": false,
  1866. "_level": 3,
  1867. "_components": [
  1868. {
  1869. "__id__": 51
  1870. }
  1871. ],
  1872. "_prefab": {
  1873. "__id__": 52
  1874. },
  1875. "_opacity": 255,
  1876. "_color": {
  1877. "__type__": "cc.Color",
  1878. "r": 255,
  1879. "g": 255,
  1880. "b": 255,
  1881. "a": 255
  1882. },
  1883. "_contentSize": {
  1884. "__type__": "cc.Size",
  1885. "width": 195,
  1886. "height": 189
  1887. },
  1888. "_anchorPoint": {
  1889. "__type__": "cc.Vec2",
  1890. "x": 0.5,
  1891. "y": 0.5
  1892. },
  1893. "_quat": {
  1894. "__type__": "cc.Quat",
  1895. "x": 0,
  1896. "y": 0,
  1897. "z": 0,
  1898. "w": 1
  1899. },
  1900. "_skewX": 0,
  1901. "_skewY": 0,
  1902. "groupIndex": 0,
  1903. "_id": "",
  1904. "_trs": {
  1905. "__type__": "TypedArray",
  1906. "ctor": "Float64Array",
  1907. "array": [
  1908. 0,
  1909. 0,
  1910. 0,
  1911. 0,
  1912. 0,
  1913. 0,
  1914. 1,
  1915. 1,
  1916. 1,
  1917. 1
  1918. ]
  1919. }
  1920. },
  1921. {
  1922. "__type__": "cc.Sprite",
  1923. "_name": "",
  1924. "_objFlags": 0,
  1925. "node": {
  1926. "__id__": 50
  1927. },
  1928. "_enabled": true,
  1929. "_spriteFrame": {
  1930. "__uuid__": "c6c48f2b-5f42-4535-b724-34d63a5ddd50"
  1931. },
  1932. "_type": 0,
  1933. "_sizeMode": 0,
  1934. "_fillType": 0,
  1935. "_fillCenter": {
  1936. "__type__": "cc.Vec2",
  1937. "x": 0,
  1938. "y": 0
  1939. },
  1940. "_fillStart": 0,
  1941. "_fillRange": 0,
  1942. "_isTrimmedMode": true,
  1943. "_state": 0,
  1944. "_atlas": {
  1945. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  1946. },
  1947. "_srcBlendFactor": 770,
  1948. "_dstBlendFactor": 771,
  1949. "_id": ""
  1950. },
  1951. {
  1952. "__type__": "cc.PrefabInfo",
  1953. "root": {
  1954. "__id__": 1
  1955. },
  1956. "asset": {
  1957. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  1958. },
  1959. "fileId": "35RG5wQDdP477s94UfgFiI",
  1960. "sync": false
  1961. },
  1962. {
  1963. "__type__": "cc.Node",
  1964. "_name": "Icon",
  1965. "_objFlags": 0,
  1966. "_parent": {
  1967. "__id__": 49
  1968. },
  1969. "_children": [],
  1970. "_active": true,
  1971. "_level": 3,
  1972. "_components": [
  1973. {
  1974. "__id__": 54
  1975. }
  1976. ],
  1977. "_prefab": {
  1978. "__id__": 55
  1979. },
  1980. "_opacity": 255,
  1981. "_color": {
  1982. "__type__": "cc.Color",
  1983. "r": 255,
  1984. "g": 255,
  1985. "b": 255,
  1986. "a": 255
  1987. },
  1988. "_contentSize": {
  1989. "__type__": "cc.Size",
  1990. "width": 184,
  1991. "height": 180
  1992. },
  1993. "_anchorPoint": {
  1994. "__type__": "cc.Vec2",
  1995. "x": 0.5,
  1996. "y": 0.5
  1997. },
  1998. "_quat": {
  1999. "__type__": "cc.Quat",
  2000. "x": 0,
  2001. "y": 0,
  2002. "z": 0,
  2003. "w": 1
  2004. },
  2005. "_skewX": 0,
  2006. "_skewY": 0,
  2007. "groupIndex": 0,
  2008. "_id": "",
  2009. "_trs": {
  2010. "__type__": "TypedArray",
  2011. "ctor": "Float64Array",
  2012. "array": [
  2013. 0,
  2014. -0.2,
  2015. 0,
  2016. 0,
  2017. 0,
  2018. 0,
  2019. 1,
  2020. 1,
  2021. 1,
  2022. 1
  2023. ]
  2024. }
  2025. },
  2026. {
  2027. "__type__": "cc.Sprite",
  2028. "_name": "",
  2029. "_objFlags": 0,
  2030. "node": {
  2031. "__id__": 53
  2032. },
  2033. "_enabled": true,
  2034. "_spriteFrame": {
  2035. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  2036. },
  2037. "_type": 0,
  2038. "_sizeMode": 0,
  2039. "_fillType": 0,
  2040. "_fillCenter": {
  2041. "__type__": "cc.Vec2",
  2042. "x": 0,
  2043. "y": 0
  2044. },
  2045. "_fillStart": 0,
  2046. "_fillRange": 0,
  2047. "_isTrimmedMode": true,
  2048. "_state": 0,
  2049. "_atlas": null,
  2050. "_srcBlendFactor": 770,
  2051. "_dstBlendFactor": 771,
  2052. "_id": ""
  2053. },
  2054. {
  2055. "__type__": "cc.PrefabInfo",
  2056. "root": {
  2057. "__id__": 1
  2058. },
  2059. "asset": {
  2060. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  2061. },
  2062. "fileId": "cdupbX6ppGxLGiz41brG1H",
  2063. "sync": false
  2064. },
  2065. {
  2066. "__type__": "cc.Node",
  2067. "_name": "redpoint",
  2068. "_objFlags": 0,
  2069. "_parent": {
  2070. "__id__": 49
  2071. },
  2072. "_children": [],
  2073. "_active": true,
  2074. "_level": 3,
  2075. "_components": [
  2076. {
  2077. "__id__": 57
  2078. },
  2079. {
  2080. "__id__": 58
  2081. }
  2082. ],
  2083. "_prefab": {
  2084. "__id__": 59
  2085. },
  2086. "_opacity": 255,
  2087. "_color": {
  2088. "__type__": "cc.Color",
  2089. "r": 255,
  2090. "g": 255,
  2091. "b": 255,
  2092. "a": 255
  2093. },
  2094. "_contentSize": {
  2095. "__type__": "cc.Size",
  2096. "width": 28,
  2097. "height": 28
  2098. },
  2099. "_anchorPoint": {
  2100. "__type__": "cc.Vec2",
  2101. "x": 0.5,
  2102. "y": 0.5
  2103. },
  2104. "_quat": {
  2105. "__type__": "cc.Quat",
  2106. "x": 0,
  2107. "y": 0,
  2108. "z": 0,
  2109. "w": 1
  2110. },
  2111. "_skewX": 0,
  2112. "_skewY": 0,
  2113. "groupIndex": 0,
  2114. "_id": "",
  2115. "_trs": {
  2116. "__type__": "TypedArray",
  2117. "ctor": "Float64Array",
  2118. "array": [
  2119. -85.2,
  2120. 80.8,
  2121. 0,
  2122. 0,
  2123. 0,
  2124. 0,
  2125. 1,
  2126. 1,
  2127. 1,
  2128. 1
  2129. ]
  2130. }
  2131. },
  2132. {
  2133. "__type__": "cc.Sprite",
  2134. "_name": "",
  2135. "_objFlags": 0,
  2136. "node": {
  2137. "__id__": 56
  2138. },
  2139. "_enabled": true,
  2140. "_spriteFrame": {
  2141. "__uuid__": "35bedd17-5e47-4233-9e85-2a5e323208cb"
  2142. },
  2143. "_type": 0,
  2144. "_sizeMode": 1,
  2145. "_fillType": 0,
  2146. "_fillCenter": {
  2147. "__type__": "cc.Vec2",
  2148. "x": 0,
  2149. "y": 0
  2150. },
  2151. "_fillStart": 0,
  2152. "_fillRange": 0,
  2153. "_isTrimmedMode": true,
  2154. "_state": 0,
  2155. "_atlas": {
  2156. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  2157. },
  2158. "_srcBlendFactor": 770,
  2159. "_dstBlendFactor": 771,
  2160. "_id": ""
  2161. },
  2162. {
  2163. "__type__": "8ecccKnp/lLRYK/tCxltDQL",
  2164. "_name": "",
  2165. "_objFlags": 0,
  2166. "node": {
  2167. "__id__": 56
  2168. },
  2169. "_enabled": true,
  2170. "_id": ""
  2171. },
  2172. {
  2173. "__type__": "cc.PrefabInfo",
  2174. "root": {
  2175. "__id__": 1
  2176. },
  2177. "asset": {
  2178. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  2179. },
  2180. "fileId": "e8rCE2YSFAr6hFUf8QzsOd",
  2181. "sync": false
  2182. },
  2183. {
  2184. "__type__": "cc.PrefabInfo",
  2185. "root": {
  2186. "__id__": 1
  2187. },
  2188. "asset": {
  2189. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  2190. },
  2191. "fileId": "6b3wJx92tG+qTz7WFvrBBz",
  2192. "sync": false
  2193. },
  2194. {
  2195. "__type__": "cc.Node",
  2196. "_name": "LabelShadow",
  2197. "_objFlags": 0,
  2198. "_parent": {
  2199. "__id__": 48
  2200. },
  2201. "_children": [],
  2202. "_active": false,
  2203. "_level": 2,
  2204. "_components": [
  2205. {
  2206. "__id__": 62
  2207. }
  2208. ],
  2209. "_prefab": {
  2210. "__id__": 63
  2211. },
  2212. "_opacity": 255,
  2213. "_color": {
  2214. "__type__": "cc.Color",
  2215. "r": 229,
  2216. "g": 212,
  2217. "b": 40,
  2218. "a": 255
  2219. },
  2220. "_contentSize": {
  2221. "__type__": "cc.Size",
  2222. "width": 88,
  2223. "height": 30
  2224. },
  2225. "_anchorPoint": {
  2226. "__type__": "cc.Vec2",
  2227. "x": 0.5,
  2228. "y": 0.5
  2229. },
  2230. "_quat": {
  2231. "__type__": "cc.Quat",
  2232. "x": 0,
  2233. "y": 0,
  2234. "z": 0,
  2235. "w": 1
  2236. },
  2237. "_skewX": 0,
  2238. "_skewY": 0,
  2239. "groupIndex": 0,
  2240. "_id": "",
  2241. "_trs": {
  2242. "__type__": "TypedArray",
  2243. "ctor": "Float64Array",
  2244. "array": [
  2245. 0.2,
  2246. -77.7,
  2247. 0,
  2248. 0,
  2249. 0,
  2250. 0,
  2251. 1,
  2252. 1,
  2253. 1,
  2254. 1
  2255. ]
  2256. }
  2257. },
  2258. {
  2259. "__type__": "cc.Label",
  2260. "_name": "",
  2261. "_objFlags": 0,
  2262. "node": {
  2263. "__id__": 61
  2264. },
  2265. "_enabled": true,
  2266. "_useOriginalSize": false,
  2267. "_string": "绝地求生",
  2268. "_N$string": "绝地求生",
  2269. "_fontSize": 22,
  2270. "_lineHeight": 30,
  2271. "_enableWrapText": true,
  2272. "_N$file": null,
  2273. "_isSystemFontUsed": true,
  2274. "_spacingX": 0,
  2275. "_batchAsBitmap": false,
  2276. "_N$horizontalAlign": 1,
  2277. "_N$verticalAlign": 1,
  2278. "_N$fontFamily": "Arial",
  2279. "_N$overflow": 0,
  2280. "_N$cacheMode": 0,
  2281. "_id": ""
  2282. },
  2283. {
  2284. "__type__": "cc.PrefabInfo",
  2285. "root": {
  2286. "__id__": 1
  2287. },
  2288. "asset": {
  2289. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  2290. },
  2291. "fileId": "7d8x+TQxpAP4aZIoMB7HDG",
  2292. "sync": false
  2293. },
  2294. {
  2295. "__type__": "cc.Node",
  2296. "_name": "Label",
  2297. "_objFlags": 0,
  2298. "_parent": {
  2299. "__id__": 48
  2300. },
  2301. "_children": [],
  2302. "_active": true,
  2303. "_level": 2,
  2304. "_components": [
  2305. {
  2306. "__id__": 65
  2307. }
  2308. ],
  2309. "_prefab": {
  2310. "__id__": 66
  2311. },
  2312. "_opacity": 255,
  2313. "_color": {
  2314. "__type__": "cc.Color",
  2315. "r": 255,
  2316. "g": 255,
  2317. "b": 255,
  2318. "a": 255
  2319. },
  2320. "_contentSize": {
  2321. "__type__": "cc.Size",
  2322. "width": 140,
  2323. "height": 40
  2324. },
  2325. "_anchorPoint": {
  2326. "__type__": "cc.Vec2",
  2327. "x": 0.5,
  2328. "y": 0.5
  2329. },
  2330. "_quat": {
  2331. "__type__": "cc.Quat",
  2332. "x": 0,
  2333. "y": 0,
  2334. "z": 0,
  2335. "w": 1
  2336. },
  2337. "_skewX": 0,
  2338. "_skewY": 0,
  2339. "groupIndex": 0,
  2340. "_id": "",
  2341. "_trs": {
  2342. "__type__": "TypedArray",
  2343. "ctor": "Float64Array",
  2344. "array": [
  2345. 0,
  2346. -136.2,
  2347. 0,
  2348. 0,
  2349. 0,
  2350. 0,
  2351. 1,
  2352. 1,
  2353. 1,
  2354. 1
  2355. ]
  2356. }
  2357. },
  2358. {
  2359. "__type__": "cc.Label",
  2360. "_name": "",
  2361. "_objFlags": 0,
  2362. "node": {
  2363. "__id__": 64
  2364. },
  2365. "_enabled": true,
  2366. "_useOriginalSize": false,
  2367. "_string": "绝地求生",
  2368. "_N$string": "绝地求生",
  2369. "_fontSize": 35,
  2370. "_lineHeight": 40,
  2371. "_enableWrapText": true,
  2372. "_N$file": null,
  2373. "_isSystemFontUsed": true,
  2374. "_spacingX": 0,
  2375. "_batchAsBitmap": false,
  2376. "_N$horizontalAlign": 1,
  2377. "_N$verticalAlign": 1,
  2378. "_N$fontFamily": "Arial",
  2379. "_N$overflow": 0,
  2380. "_N$cacheMode": 0,
  2381. "_id": ""
  2382. },
  2383. {
  2384. "__type__": "cc.PrefabInfo",
  2385. "root": {
  2386. "__id__": 1
  2387. },
  2388. "asset": {
  2389. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  2390. },
  2391. "fileId": "29vuzCYhlNeJvv5otS6FSE",
  2392. "sync": false
  2393. },
  2394. {
  2395. "__type__": "cc.Sprite",
  2396. "_name": "",
  2397. "_objFlags": 0,
  2398. "node": {
  2399. "__id__": 48
  2400. },
  2401. "_enabled": false,
  2402. "_spriteFrame": {
  2403. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  2404. },
  2405. "_type": 0,
  2406. "_sizeMode": 0,
  2407. "_fillType": 0,
  2408. "_fillCenter": {
  2409. "__type__": "cc.Vec2",
  2410. "x": 0,
  2411. "y": 0
  2412. },
  2413. "_fillStart": 0,
  2414. "_fillRange": 0,
  2415. "_isTrimmedMode": true,
  2416. "_state": 0,
  2417. "_atlas": null,
  2418. "_srcBlendFactor": 770,
  2419. "_dstBlendFactor": 771,
  2420. "_id": ""
  2421. },
  2422. {
  2423. "__type__": "e2d27IwlQ5B5pmeL0p/D+5H",
  2424. "_name": "",
  2425. "_objFlags": 0,
  2426. "node": {
  2427. "__id__": 48
  2428. },
  2429. "_enabled": true,
  2430. "_id": ""
  2431. },
  2432. {
  2433. "__type__": "cc.PrefabInfo",
  2434. "root": {
  2435. "__id__": 1
  2436. },
  2437. "asset": {
  2438. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  2439. },
  2440. "fileId": "50x4XrZ9lIg4/xiPWmnkVu",
  2441. "sync": false
  2442. },
  2443. {
  2444. "__type__": "cc.Sprite",
  2445. "_name": "",
  2446. "_objFlags": 0,
  2447. "node": {
  2448. "__id__": 3
  2449. },
  2450. "_enabled": true,
  2451. "_spriteFrame": {
  2452. "__uuid__": "51938529-2405-4aa1-8f91-d9b11d9c3a4c"
  2453. },
  2454. "_type": 0,
  2455. "_sizeMode": 0,
  2456. "_fillType": 0,
  2457. "_fillCenter": {
  2458. "__type__": "cc.Vec2",
  2459. "x": 0,
  2460. "y": 0
  2461. },
  2462. "_fillStart": 0,
  2463. "_fillRange": 0,
  2464. "_isTrimmedMode": true,
  2465. "_state": 0,
  2466. "_atlas": null,
  2467. "_srcBlendFactor": 770,
  2468. "_dstBlendFactor": 771,
  2469. "_id": ""
  2470. },
  2471. {
  2472. "__type__": "cc.PrefabInfo",
  2473. "root": {
  2474. "__id__": 1
  2475. },
  2476. "asset": {
  2477. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  2478. },
  2479. "fileId": "9fuyjp9TVEYLuObSJbAl69",
  2480. "sync": false
  2481. },
  2482. {
  2483. "__type__": "cc.PrefabInfo",
  2484. "root": {
  2485. "__id__": 1
  2486. },
  2487. "asset": {
  2488. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  2489. },
  2490. "fileId": "3eHiLkFJpN/KJzEpNlL3Df",
  2491. "sync": false
  2492. },
  2493. {
  2494. "__type__": "cc.Widget",
  2495. "_name": "",
  2496. "_objFlags": 0,
  2497. "node": {
  2498. "__id__": 1
  2499. },
  2500. "_enabled": true,
  2501. "alignMode": 2,
  2502. "_target": null,
  2503. "_alignFlags": 0,
  2504. "_left": 66,
  2505. "_right": 0,
  2506. "_top": 0,
  2507. "_bottom": 248.15,
  2508. "_verticalCenter": 0,
  2509. "_horizontalCenter": 0,
  2510. "_isAbsLeft": true,
  2511. "_isAbsRight": true,
  2512. "_isAbsTop": true,
  2513. "_isAbsBottom": true,
  2514. "_isAbsHorizontalCenter": true,
  2515. "_isAbsVerticalCenter": true,
  2516. "_originalWidth": 0,
  2517. "_originalHeight": 0,
  2518. "_id": ""
  2519. },
  2520. {
  2521. "__type__": "e9374miWaFPkomPvJdFnlTk",
  2522. "_name": "",
  2523. "_objFlags": 0,
  2524. "node": {
  2525. "__id__": 1
  2526. },
  2527. "_enabled": true,
  2528. "_id": ""
  2529. },
  2530. {
  2531. "__type__": "cc.PrefabInfo",
  2532. "root": {
  2533. "__id__": 1
  2534. },
  2535. "asset": {
  2536. "__uuid__": "cd4c803b-2303-44ae-a0b5-b705f21159f3"
  2537. },
  2538. "fileId": "53owsozYpPmZ/dpADu3Yec",
  2539. "sync": false
  2540. }
  2541. ]