firstHeroItem.prefab 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965
  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": "firstHeroItem",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 71
  24. },
  25. {
  26. "__id__": 79
  27. }
  28. ],
  29. "_active": true,
  30. "_components": [
  31. {
  32. "__id__": 87
  33. },
  34. {
  35. "__id__": 89
  36. },
  37. {
  38. "__id__": 91
  39. }
  40. ],
  41. "_prefab": {
  42. "__id__": 93
  43. },
  44. "_lpos": {
  45. "__type__": "cc.Vec3",
  46. "x": -4,
  47. "y": -13,
  48. "z": 0
  49. },
  50. "_lrot": {
  51. "__type__": "cc.Quat",
  52. "x": 0,
  53. "y": 0,
  54. "z": 0,
  55. "w": 1
  56. },
  57. "_lscale": {
  58. "__type__": "cc.Vec3",
  59. "x": 1,
  60. "y": 1,
  61. "z": 1
  62. },
  63. "_layer": 33554432,
  64. "_euler": {
  65. "__type__": "cc.Vec3",
  66. "x": 0,
  67. "y": 0,
  68. "z": 0
  69. },
  70. "_id": ""
  71. },
  72. {
  73. "__type__": "cc.Node",
  74. "_name": "武将信息",
  75. "_objFlags": 0,
  76. "_parent": {
  77. "__id__": 1
  78. },
  79. "_children": [
  80. {
  81. "__id__": 3
  82. },
  83. {
  84. "__id__": 9
  85. },
  86. {
  87. "__id__": 15
  88. },
  89. {
  90. "__id__": 21
  91. },
  92. {
  93. "__id__": 27
  94. },
  95. {
  96. "__id__": 33
  97. },
  98. {
  99. "__id__": 39
  100. },
  101. {
  102. "__id__": 47
  103. }
  104. ],
  105. "_active": true,
  106. "_components": [
  107. {
  108. "__id__": 68
  109. }
  110. ],
  111. "_prefab": {
  112. "__id__": 70
  113. },
  114. "_lpos": {
  115. "__type__": "cc.Vec3",
  116. "x": 0,
  117. "y": 0,
  118. "z": 0
  119. },
  120. "_lrot": {
  121. "__type__": "cc.Quat",
  122. "x": 0,
  123. "y": 0,
  124. "z": 0,
  125. "w": 1
  126. },
  127. "_lscale": {
  128. "__type__": "cc.Vec3",
  129. "x": 1,
  130. "y": 1,
  131. "z": 1
  132. },
  133. "_layer": 33554432,
  134. "_euler": {
  135. "__type__": "cc.Vec3",
  136. "x": 0,
  137. "y": 0,
  138. "z": 0
  139. },
  140. "_id": ""
  141. },
  142. {
  143. "__type__": "cc.Node",
  144. "_name": "背光",
  145. "_objFlags": 0,
  146. "_parent": {
  147. "__id__": 2
  148. },
  149. "_children": [],
  150. "_active": true,
  151. "_components": [
  152. {
  153. "__id__": 4
  154. },
  155. {
  156. "__id__": 6
  157. }
  158. ],
  159. "_prefab": {
  160. "__id__": 8
  161. },
  162. "_lpos": {
  163. "__type__": "cc.Vec3",
  164. "x": -0.103999999999985,
  165. "y": -2.3764999999999645,
  166. "z": 0
  167. },
  168. "_lrot": {
  169. "__type__": "cc.Quat",
  170. "x": 0,
  171. "y": 0,
  172. "z": 0,
  173. "w": 1
  174. },
  175. "_lscale": {
  176. "__type__": "cc.Vec3",
  177. "x": 0.5,
  178. "y": 0.5,
  179. "z": 1
  180. },
  181. "_layer": 33554432,
  182. "_euler": {
  183. "__type__": "cc.Vec3",
  184. "x": 0,
  185. "y": 0,
  186. "z": 0
  187. },
  188. "_id": ""
  189. },
  190. {
  191. "__type__": "cc.UITransform",
  192. "_name": "",
  193. "_objFlags": 0,
  194. "node": {
  195. "__id__": 3
  196. },
  197. "_enabled": true,
  198. "__prefab": {
  199. "__id__": 5
  200. },
  201. "_priority": 0,
  202. "_contentSize": {
  203. "__type__": "cc.Size",
  204. "width": 440.392,
  205. "height": 589.942
  206. },
  207. "_anchorPoint": {
  208. "__type__": "cc.Vec2",
  209. "x": 0.5,
  210. "y": 0.5
  211. },
  212. "_id": ""
  213. },
  214. {
  215. "__type__": "cc.CompPrefabInfo",
  216. "fileId": "a4JRrTfiRHYoGr/pW3rWyf"
  217. },
  218. {
  219. "__type__": "cc.Sprite",
  220. "_name": "",
  221. "_objFlags": 0,
  222. "node": {
  223. "__id__": 3
  224. },
  225. "_enabled": true,
  226. "__prefab": {
  227. "__id__": 7
  228. },
  229. "_visFlags": 0,
  230. "_customMaterial": null,
  231. "_srcBlendFactor": 2,
  232. "_dstBlendFactor": 4,
  233. "_color": {
  234. "__type__": "cc.Color",
  235. "r": 255,
  236. "g": 255,
  237. "b": 255,
  238. "a": 255
  239. },
  240. "_spriteFrame": {
  241. "__uuid__": "c06894bd-8aa2-4e62-81f4-bbc0e2f286d9@f9941"
  242. },
  243. "_type": 0,
  244. "_fillType": 0,
  245. "_sizeMode": 0,
  246. "_fillCenter": {
  247. "__type__": "cc.Vec2",
  248. "x": 0,
  249. "y": 0
  250. },
  251. "_fillStart": 0,
  252. "_fillRange": 0,
  253. "_isTrimmedMode": true,
  254. "_useGrayscale": false,
  255. "_atlas": null,
  256. "_id": ""
  257. },
  258. {
  259. "__type__": "cc.CompPrefabInfo",
  260. "fileId": "9afgjYbHZBA5Ud5tyGQvGQ"
  261. },
  262. {
  263. "__type__": "cc.PrefabInfo",
  264. "root": {
  265. "__id__": 1
  266. },
  267. "asset": {
  268. "__id__": 0
  269. },
  270. "fileId": "efhoSttrhJBJ2ggKY9FxkI"
  271. },
  272. {
  273. "__type__": "cc.Node",
  274. "_name": "背景图",
  275. "_objFlags": 0,
  276. "_parent": {
  277. "__id__": 2
  278. },
  279. "_children": [],
  280. "_active": true,
  281. "_components": [
  282. {
  283. "__id__": 10
  284. },
  285. {
  286. "__id__": 12
  287. }
  288. ],
  289. "_prefab": {
  290. "__id__": 14
  291. },
  292. "_lpos": {
  293. "__type__": "cc.Vec3",
  294. "x": 0,
  295. "y": 0,
  296. "z": 0
  297. },
  298. "_lrot": {
  299. "__type__": "cc.Quat",
  300. "x": 0,
  301. "y": 0,
  302. "z": 0,
  303. "w": 1
  304. },
  305. "_lscale": {
  306. "__type__": "cc.Vec3",
  307. "x": 1,
  308. "y": 1,
  309. "z": 1
  310. },
  311. "_layer": 33554432,
  312. "_euler": {
  313. "__type__": "cc.Vec3",
  314. "x": 0,
  315. "y": 0,
  316. "z": 0
  317. },
  318. "_id": ""
  319. },
  320. {
  321. "__type__": "cc.UITransform",
  322. "_name": "",
  323. "_objFlags": 0,
  324. "node": {
  325. "__id__": 9
  326. },
  327. "_enabled": true,
  328. "__prefab": {
  329. "__id__": 11
  330. },
  331. "_priority": 0,
  332. "_contentSize": {
  333. "__type__": "cc.Size",
  334. "width": 155,
  335. "height": 238
  336. },
  337. "_anchorPoint": {
  338. "__type__": "cc.Vec2",
  339. "x": 0.5,
  340. "y": 0.5
  341. },
  342. "_id": ""
  343. },
  344. {
  345. "__type__": "cc.CompPrefabInfo",
  346. "fileId": "60b2WcT19ISqw0fLajGQy2"
  347. },
  348. {
  349. "__type__": "cc.Sprite",
  350. "_name": "",
  351. "_objFlags": 0,
  352. "node": {
  353. "__id__": 9
  354. },
  355. "_enabled": true,
  356. "__prefab": {
  357. "__id__": 13
  358. },
  359. "_visFlags": 0,
  360. "_customMaterial": null,
  361. "_srcBlendFactor": 2,
  362. "_dstBlendFactor": 4,
  363. "_color": {
  364. "__type__": "cc.Color",
  365. "r": 255,
  366. "g": 255,
  367. "b": 255,
  368. "a": 255
  369. },
  370. "_spriteFrame": {
  371. "__uuid__": "b9acf3b3-ce8a-44e8-93f2-30a94a1c0098@f9941"
  372. },
  373. "_type": 0,
  374. "_fillType": 0,
  375. "_sizeMode": 1,
  376. "_fillCenter": {
  377. "__type__": "cc.Vec2",
  378. "x": 0,
  379. "y": 0
  380. },
  381. "_fillStart": 0,
  382. "_fillRange": 0,
  383. "_isTrimmedMode": true,
  384. "_useGrayscale": false,
  385. "_atlas": null,
  386. "_id": ""
  387. },
  388. {
  389. "__type__": "cc.CompPrefabInfo",
  390. "fileId": "ddyLHSMyxDe5PLEmaJB9Yx"
  391. },
  392. {
  393. "__type__": "cc.PrefabInfo",
  394. "root": {
  395. "__id__": 1
  396. },
  397. "asset": {
  398. "__id__": 0
  399. },
  400. "fileId": "d7b4Hg/RFO54COtvI2AeIW"
  401. },
  402. {
  403. "__type__": "cc.Node",
  404. "_name": "武将图",
  405. "_objFlags": 0,
  406. "_parent": {
  407. "__id__": 2
  408. },
  409. "_children": [],
  410. "_active": true,
  411. "_components": [
  412. {
  413. "__id__": 16
  414. },
  415. {
  416. "__id__": 18
  417. }
  418. ],
  419. "_prefab": {
  420. "__id__": 20
  421. },
  422. "_lpos": {
  423. "__type__": "cc.Vec3",
  424. "x": 0,
  425. "y": 4.9669999999999845,
  426. "z": 0
  427. },
  428. "_lrot": {
  429. "__type__": "cc.Quat",
  430. "x": 0,
  431. "y": 0,
  432. "z": 0,
  433. "w": 1
  434. },
  435. "_lscale": {
  436. "__type__": "cc.Vec3",
  437. "x": 0.4,
  438. "y": 0.4,
  439. "z": 0.4
  440. },
  441. "_layer": 33554432,
  442. "_euler": {
  443. "__type__": "cc.Vec3",
  444. "x": 0,
  445. "y": 0,
  446. "z": 0
  447. },
  448. "_id": ""
  449. },
  450. {
  451. "__type__": "cc.UITransform",
  452. "_name": "",
  453. "_objFlags": 0,
  454. "node": {
  455. "__id__": 15
  456. },
  457. "_enabled": true,
  458. "__prefab": {
  459. "__id__": 17
  460. },
  461. "_priority": 0,
  462. "_contentSize": {
  463. "__type__": "cc.Size",
  464. "width": 383,
  465. "height": 390
  466. },
  467. "_anchorPoint": {
  468. "__type__": "cc.Vec2",
  469. "x": 0.5,
  470. "y": 0.5
  471. },
  472. "_id": ""
  473. },
  474. {
  475. "__type__": "cc.CompPrefabInfo",
  476. "fileId": "96oAebvoxEQojgf3K1AW7I"
  477. },
  478. {
  479. "__type__": "cc.Sprite",
  480. "_name": "",
  481. "_objFlags": 0,
  482. "node": {
  483. "__id__": 15
  484. },
  485. "_enabled": true,
  486. "__prefab": {
  487. "__id__": 19
  488. },
  489. "_visFlags": 0,
  490. "_customMaterial": null,
  491. "_srcBlendFactor": 2,
  492. "_dstBlendFactor": 4,
  493. "_color": {
  494. "__type__": "cc.Color",
  495. "r": 255,
  496. "g": 255,
  497. "b": 255,
  498. "a": 255
  499. },
  500. "_spriteFrame": null,
  501. "_type": 0,
  502. "_fillType": 0,
  503. "_sizeMode": 1,
  504. "_fillCenter": {
  505. "__type__": "cc.Vec2",
  506. "x": 0,
  507. "y": 0
  508. },
  509. "_fillStart": 0,
  510. "_fillRange": 0,
  511. "_isTrimmedMode": true,
  512. "_useGrayscale": false,
  513. "_atlas": null,
  514. "_id": ""
  515. },
  516. {
  517. "__type__": "cc.CompPrefabInfo",
  518. "fileId": "70cZNvNzJLxLka7VtaMzg2"
  519. },
  520. {
  521. "__type__": "cc.PrefabInfo",
  522. "root": {
  523. "__id__": 1
  524. },
  525. "asset": {
  526. "__id__": 0
  527. },
  528. "fileId": "ab6QVjlalAHoNMnsD7I6We"
  529. },
  530. {
  531. "__type__": "cc.Node",
  532. "_name": "名称背景",
  533. "_objFlags": 0,
  534. "_parent": {
  535. "__id__": 2
  536. },
  537. "_children": [],
  538. "_active": true,
  539. "_components": [
  540. {
  541. "__id__": 22
  542. },
  543. {
  544. "__id__": 24
  545. }
  546. ],
  547. "_prefab": {
  548. "__id__": 26
  549. },
  550. "_lpos": {
  551. "__type__": "cc.Vec3",
  552. "x": 0,
  553. "y": -91.81399999999996,
  554. "z": 0
  555. },
  556. "_lrot": {
  557. "__type__": "cc.Quat",
  558. "x": 0,
  559. "y": 0,
  560. "z": 0,
  561. "w": 1
  562. },
  563. "_lscale": {
  564. "__type__": "cc.Vec3",
  565. "x": 1,
  566. "y": 1,
  567. "z": 1
  568. },
  569. "_layer": 33554432,
  570. "_euler": {
  571. "__type__": "cc.Vec3",
  572. "x": 0,
  573. "y": 0,
  574. "z": 0
  575. },
  576. "_id": ""
  577. },
  578. {
  579. "__type__": "cc.UITransform",
  580. "_name": "",
  581. "_objFlags": 0,
  582. "node": {
  583. "__id__": 21
  584. },
  585. "_enabled": true,
  586. "__prefab": {
  587. "__id__": 23
  588. },
  589. "_priority": 0,
  590. "_contentSize": {
  591. "__type__": "cc.Size",
  592. "width": 161,
  593. "height": 35
  594. },
  595. "_anchorPoint": {
  596. "__type__": "cc.Vec2",
  597. "x": 0.5,
  598. "y": 0.5
  599. },
  600. "_id": ""
  601. },
  602. {
  603. "__type__": "cc.CompPrefabInfo",
  604. "fileId": "e7CnhPJxBGT7i2Jy99krGm"
  605. },
  606. {
  607. "__type__": "cc.Sprite",
  608. "_name": "",
  609. "_objFlags": 0,
  610. "node": {
  611. "__id__": 21
  612. },
  613. "_enabled": true,
  614. "__prefab": {
  615. "__id__": 25
  616. },
  617. "_visFlags": 0,
  618. "_customMaterial": null,
  619. "_srcBlendFactor": 2,
  620. "_dstBlendFactor": 4,
  621. "_color": {
  622. "__type__": "cc.Color",
  623. "r": 255,
  624. "g": 255,
  625. "b": 255,
  626. "a": 255
  627. },
  628. "_spriteFrame": {
  629. "__uuid__": "4f5a9e8d-99f4-425c-ad22-6dab91642ec2@f9941"
  630. },
  631. "_type": 0,
  632. "_fillType": 0,
  633. "_sizeMode": 1,
  634. "_fillCenter": {
  635. "__type__": "cc.Vec2",
  636. "x": 0,
  637. "y": 0
  638. },
  639. "_fillStart": 0,
  640. "_fillRange": 0,
  641. "_isTrimmedMode": true,
  642. "_useGrayscale": false,
  643. "_atlas": null,
  644. "_id": ""
  645. },
  646. {
  647. "__type__": "cc.CompPrefabInfo",
  648. "fileId": "99KZLY8eNGYrXfTTeIleXy"
  649. },
  650. {
  651. "__type__": "cc.PrefabInfo",
  652. "root": {
  653. "__id__": 1
  654. },
  655. "asset": {
  656. "__id__": 0
  657. },
  658. "fileId": "acbFBgngpJfZkg/8rgdQ3p"
  659. },
  660. {
  661. "__type__": "cc.Node",
  662. "_name": "背景框",
  663. "_objFlags": 0,
  664. "_parent": {
  665. "__id__": 2
  666. },
  667. "_children": [],
  668. "_active": true,
  669. "_components": [
  670. {
  671. "__id__": 28
  672. },
  673. {
  674. "__id__": 30
  675. }
  676. ],
  677. "_prefab": {
  678. "__id__": 32
  679. },
  680. "_lpos": {
  681. "__type__": "cc.Vec3",
  682. "x": 0,
  683. "y": 0,
  684. "z": 0
  685. },
  686. "_lrot": {
  687. "__type__": "cc.Quat",
  688. "x": 0,
  689. "y": 0,
  690. "z": 0,
  691. "w": 1
  692. },
  693. "_lscale": {
  694. "__type__": "cc.Vec3",
  695. "x": 1,
  696. "y": 1,
  697. "z": 1
  698. },
  699. "_layer": 33554432,
  700. "_euler": {
  701. "__type__": "cc.Vec3",
  702. "x": 0,
  703. "y": 0,
  704. "z": 0
  705. },
  706. "_id": ""
  707. },
  708. {
  709. "__type__": "cc.UITransform",
  710. "_name": "",
  711. "_objFlags": 0,
  712. "node": {
  713. "__id__": 27
  714. },
  715. "_enabled": true,
  716. "__prefab": {
  717. "__id__": 29
  718. },
  719. "_priority": 0,
  720. "_contentSize": {
  721. "__type__": "cc.Size",
  722. "width": 172,
  723. "height": 259
  724. },
  725. "_anchorPoint": {
  726. "__type__": "cc.Vec2",
  727. "x": 0.5,
  728. "y": 0.5
  729. },
  730. "_id": ""
  731. },
  732. {
  733. "__type__": "cc.CompPrefabInfo",
  734. "fileId": "65H4B1UOFNDLGn6aXIdfbz"
  735. },
  736. {
  737. "__type__": "cc.Sprite",
  738. "_name": "",
  739. "_objFlags": 0,
  740. "node": {
  741. "__id__": 27
  742. },
  743. "_enabled": true,
  744. "__prefab": {
  745. "__id__": 31
  746. },
  747. "_visFlags": 0,
  748. "_customMaterial": null,
  749. "_srcBlendFactor": 2,
  750. "_dstBlendFactor": 4,
  751. "_color": {
  752. "__type__": "cc.Color",
  753. "r": 255,
  754. "g": 255,
  755. "b": 255,
  756. "a": 255
  757. },
  758. "_spriteFrame": {
  759. "__uuid__": "8a263dc1-a80e-48f5-9ece-0678990ddf4a@f9941"
  760. },
  761. "_type": 0,
  762. "_fillType": 0,
  763. "_sizeMode": 1,
  764. "_fillCenter": {
  765. "__type__": "cc.Vec2",
  766. "x": 0,
  767. "y": 0
  768. },
  769. "_fillStart": 0,
  770. "_fillRange": 0,
  771. "_isTrimmedMode": true,
  772. "_useGrayscale": false,
  773. "_atlas": null,
  774. "_id": ""
  775. },
  776. {
  777. "__type__": "cc.CompPrefabInfo",
  778. "fileId": "56GU2OeopM8qiankYGXj8U"
  779. },
  780. {
  781. "__type__": "cc.PrefabInfo",
  782. "root": {
  783. "__id__": 1
  784. },
  785. "asset": {
  786. "__id__": 0
  787. },
  788. "fileId": "63fBo7syRMlLdNjDT2uDUu"
  789. },
  790. {
  791. "__type__": "cc.Node",
  792. "_name": "阵营",
  793. "_objFlags": 0,
  794. "_parent": {
  795. "__id__": 2
  796. },
  797. "_children": [],
  798. "_active": true,
  799. "_components": [
  800. {
  801. "__id__": 34
  802. },
  803. {
  804. "__id__": 36
  805. }
  806. ],
  807. "_prefab": {
  808. "__id__": 38
  809. },
  810. "_lpos": {
  811. "__type__": "cc.Vec3",
  812. "x": -65,
  813. "y": 105,
  814. "z": 0
  815. },
  816. "_lrot": {
  817. "__type__": "cc.Quat",
  818. "x": 0,
  819. "y": 0,
  820. "z": 0,
  821. "w": 1
  822. },
  823. "_lscale": {
  824. "__type__": "cc.Vec3",
  825. "x": 1,
  826. "y": 1,
  827. "z": 1
  828. },
  829. "_layer": 33554432,
  830. "_euler": {
  831. "__type__": "cc.Vec3",
  832. "x": 0,
  833. "y": 0,
  834. "z": 0
  835. },
  836. "_id": ""
  837. },
  838. {
  839. "__type__": "cc.UITransform",
  840. "_name": "",
  841. "_objFlags": 0,
  842. "node": {
  843. "__id__": 33
  844. },
  845. "_enabled": true,
  846. "__prefab": {
  847. "__id__": 35
  848. },
  849. "_priority": 0,
  850. "_contentSize": {
  851. "__type__": "cc.Size",
  852. "width": 49,
  853. "height": 49
  854. },
  855. "_anchorPoint": {
  856. "__type__": "cc.Vec2",
  857. "x": 0.5,
  858. "y": 0.5
  859. },
  860. "_id": ""
  861. },
  862. {
  863. "__type__": "cc.CompPrefabInfo",
  864. "fileId": "76OM4RhApJ8qFtE9neUlpw"
  865. },
  866. {
  867. "__type__": "cc.Sprite",
  868. "_name": "",
  869. "_objFlags": 0,
  870. "node": {
  871. "__id__": 33
  872. },
  873. "_enabled": true,
  874. "__prefab": {
  875. "__id__": 37
  876. },
  877. "_visFlags": 0,
  878. "_customMaterial": null,
  879. "_srcBlendFactor": 2,
  880. "_dstBlendFactor": 4,
  881. "_color": {
  882. "__type__": "cc.Color",
  883. "r": 255,
  884. "g": 255,
  885. "b": 255,
  886. "a": 255
  887. },
  888. "_spriteFrame": {
  889. "__uuid__": "31efa13d-5235-48ab-a0ad-414e9f5deef2@f9941"
  890. },
  891. "_type": 0,
  892. "_fillType": 0,
  893. "_sizeMode": 1,
  894. "_fillCenter": {
  895. "__type__": "cc.Vec2",
  896. "x": 0,
  897. "y": 0
  898. },
  899. "_fillStart": 0,
  900. "_fillRange": 0,
  901. "_isTrimmedMode": true,
  902. "_useGrayscale": false,
  903. "_atlas": null,
  904. "_id": ""
  905. },
  906. {
  907. "__type__": "cc.CompPrefabInfo",
  908. "fileId": "b9IcMG5x1BRp/t7Kkfkt0R"
  909. },
  910. {
  911. "__type__": "cc.PrefabInfo",
  912. "root": {
  913. "__id__": 1
  914. },
  915. "asset": {
  916. "__id__": 0
  917. },
  918. "fileId": "9aezBHN25A8JqlxY4JHXgv"
  919. },
  920. {
  921. "__type__": "cc.Node",
  922. "_name": "名称",
  923. "_objFlags": 0,
  924. "_parent": {
  925. "__id__": 2
  926. },
  927. "_children": [],
  928. "_active": true,
  929. "_components": [
  930. {
  931. "__id__": 40
  932. },
  933. {
  934. "__id__": 42
  935. },
  936. {
  937. "__id__": 44
  938. }
  939. ],
  940. "_prefab": {
  941. "__id__": 46
  942. },
  943. "_lpos": {
  944. "__type__": "cc.Vec3",
  945. "x": 0,
  946. "y": -91.81399999999996,
  947. "z": 0
  948. },
  949. "_lrot": {
  950. "__type__": "cc.Quat",
  951. "x": 0,
  952. "y": 0,
  953. "z": 0,
  954. "w": 1
  955. },
  956. "_lscale": {
  957. "__type__": "cc.Vec3",
  958. "x": 1,
  959. "y": 1,
  960. "z": 1
  961. },
  962. "_layer": 33554432,
  963. "_euler": {
  964. "__type__": "cc.Vec3",
  965. "x": 0,
  966. "y": 0,
  967. "z": 0
  968. },
  969. "_id": ""
  970. },
  971. {
  972. "__type__": "cc.UITransform",
  973. "_name": "",
  974. "_objFlags": 0,
  975. "node": {
  976. "__id__": 39
  977. },
  978. "_enabled": true,
  979. "__prefab": {
  980. "__id__": 41
  981. },
  982. "_priority": 0,
  983. "_contentSize": {
  984. "__type__": "cc.Size",
  985. "width": 50,
  986. "height": 32.980000000000004
  987. },
  988. "_anchorPoint": {
  989. "__type__": "cc.Vec2",
  990. "x": 0.5,
  991. "y": 0.5
  992. },
  993. "_id": ""
  994. },
  995. {
  996. "__type__": "cc.CompPrefabInfo",
  997. "fileId": "c68UOAlNhN171Umca6yVvF"
  998. },
  999. {
  1000. "__type__": "cc.Label",
  1001. "_name": "",
  1002. "_objFlags": 0,
  1003. "node": {
  1004. "__id__": 39
  1005. },
  1006. "_enabled": true,
  1007. "__prefab": {
  1008. "__id__": 43
  1009. },
  1010. "_visFlags": 0,
  1011. "_customMaterial": null,
  1012. "_srcBlendFactor": 2,
  1013. "_dstBlendFactor": 4,
  1014. "_color": {
  1015. "__type__": "cc.Color",
  1016. "r": 255,
  1017. "g": 255,
  1018. "b": 255,
  1019. "a": 255
  1020. },
  1021. "_string": "曹操",
  1022. "_horizontalAlign": 1,
  1023. "_verticalAlign": 1,
  1024. "_actualFontSize": 23,
  1025. "_fontSize": 23,
  1026. "_fontFamily": "Arial",
  1027. "_lineHeight": 23,
  1028. "_overflow": 0,
  1029. "_enableWrapText": true,
  1030. "_font": {
  1031. "__uuid__": "2bec5164-bd32-4719-bbbf-97e2c8b3ab1a"
  1032. },
  1033. "_isSystemFontUsed": false,
  1034. "_isItalic": false,
  1035. "_isBold": false,
  1036. "_isUnderline": false,
  1037. "_underlineHeight": 2,
  1038. "_cacheMode": 0,
  1039. "_id": ""
  1040. },
  1041. {
  1042. "__type__": "cc.CompPrefabInfo",
  1043. "fileId": "2frm37uaJHQr0AEEaYyM82"
  1044. },
  1045. {
  1046. "__type__": "cc.LabelOutline",
  1047. "_name": "",
  1048. "_objFlags": 0,
  1049. "node": {
  1050. "__id__": 39
  1051. },
  1052. "_enabled": true,
  1053. "__prefab": {
  1054. "__id__": 45
  1055. },
  1056. "_color": {
  1057. "__type__": "cc.Color",
  1058. "r": 0,
  1059. "g": 0,
  1060. "b": 0,
  1061. "a": 255
  1062. },
  1063. "_width": 2,
  1064. "_id": ""
  1065. },
  1066. {
  1067. "__type__": "cc.CompPrefabInfo",
  1068. "fileId": "95Y+vPixdDIabaV5+goTUg"
  1069. },
  1070. {
  1071. "__type__": "cc.PrefabInfo",
  1072. "root": {
  1073. "__id__": 1
  1074. },
  1075. "asset": {
  1076. "__id__": 0
  1077. },
  1078. "fileId": "3czNwpEQpOBqDd3MlJlVGA"
  1079. },
  1080. {
  1081. "__type__": "cc.Node",
  1082. "_name": "星级",
  1083. "_objFlags": 0,
  1084. "_parent": {
  1085. "__id__": 2
  1086. },
  1087. "_children": [
  1088. {
  1089. "__id__": 48
  1090. },
  1091. {
  1092. "__id__": 54
  1093. }
  1094. ],
  1095. "_active": true,
  1096. "_components": [
  1097. {
  1098. "__id__": 60
  1099. },
  1100. {
  1101. "__id__": 62
  1102. },
  1103. {
  1104. "__id__": 64
  1105. }
  1106. ],
  1107. "_prefab": {
  1108. "__id__": 67
  1109. },
  1110. "_lpos": {
  1111. "__type__": "cc.Vec3",
  1112. "x": 64.21299999999997,
  1113. "y": 81.26199999999994,
  1114. "z": 0
  1115. },
  1116. "_lrot": {
  1117. "__type__": "cc.Quat",
  1118. "x": 0,
  1119. "y": 0,
  1120. "z": 0,
  1121. "w": 1
  1122. },
  1123. "_lscale": {
  1124. "__type__": "cc.Vec3",
  1125. "x": 0.53,
  1126. "y": 0.53,
  1127. "z": 1
  1128. },
  1129. "_layer": 33554432,
  1130. "_euler": {
  1131. "__type__": "cc.Vec3",
  1132. "x": 0,
  1133. "y": 0,
  1134. "z": 0
  1135. },
  1136. "_id": ""
  1137. },
  1138. {
  1139. "__type__": "cc.Node",
  1140. "_name": "0",
  1141. "_objFlags": 0,
  1142. "_parent": {
  1143. "__id__": 47
  1144. },
  1145. "_children": [],
  1146. "_active": true,
  1147. "_components": [
  1148. {
  1149. "__id__": 49
  1150. },
  1151. {
  1152. "__id__": 51
  1153. }
  1154. ],
  1155. "_prefab": {
  1156. "__id__": 53
  1157. },
  1158. "_lpos": {
  1159. "__type__": "cc.Vec3",
  1160. "x": 0,
  1161. "y": -17,
  1162. "z": 0
  1163. },
  1164. "_lrot": {
  1165. "__type__": "cc.Quat",
  1166. "x": 0,
  1167. "y": 0,
  1168. "z": 0,
  1169. "w": 1
  1170. },
  1171. "_lscale": {
  1172. "__type__": "cc.Vec3",
  1173. "x": 1,
  1174. "y": 1,
  1175. "z": 1
  1176. },
  1177. "_layer": 33554432,
  1178. "_euler": {
  1179. "__type__": "cc.Vec3",
  1180. "x": 0,
  1181. "y": 0,
  1182. "z": 0
  1183. },
  1184. "_id": ""
  1185. },
  1186. {
  1187. "__type__": "cc.UITransform",
  1188. "_name": "",
  1189. "_objFlags": 0,
  1190. "node": {
  1191. "__id__": 48
  1192. },
  1193. "_enabled": true,
  1194. "__prefab": {
  1195. "__id__": 50
  1196. },
  1197. "_priority": 0,
  1198. "_contentSize": {
  1199. "__type__": "cc.Size",
  1200. "width": 32,
  1201. "height": 34
  1202. },
  1203. "_anchorPoint": {
  1204. "__type__": "cc.Vec2",
  1205. "x": 0.5,
  1206. "y": 0.5
  1207. },
  1208. "_id": ""
  1209. },
  1210. {
  1211. "__type__": "cc.CompPrefabInfo",
  1212. "fileId": "11ELHN4SdBc5FI8oavfJPs"
  1213. },
  1214. {
  1215. "__type__": "cc.Sprite",
  1216. "_name": "",
  1217. "_objFlags": 0,
  1218. "node": {
  1219. "__id__": 48
  1220. },
  1221. "_enabled": true,
  1222. "__prefab": {
  1223. "__id__": 52
  1224. },
  1225. "_visFlags": 0,
  1226. "_customMaterial": null,
  1227. "_srcBlendFactor": 2,
  1228. "_dstBlendFactor": 4,
  1229. "_color": {
  1230. "__type__": "cc.Color",
  1231. "r": 255,
  1232. "g": 255,
  1233. "b": 255,
  1234. "a": 255
  1235. },
  1236. "_spriteFrame": {
  1237. "__uuid__": "373f4e88-5447-4b1e-bab8-d72cf95d9965@f9941"
  1238. },
  1239. "_type": 0,
  1240. "_fillType": 0,
  1241. "_sizeMode": 1,
  1242. "_fillCenter": {
  1243. "__type__": "cc.Vec2",
  1244. "x": 0,
  1245. "y": 0
  1246. },
  1247. "_fillStart": 0,
  1248. "_fillRange": 0,
  1249. "_isTrimmedMode": true,
  1250. "_useGrayscale": false,
  1251. "_atlas": null,
  1252. "_id": ""
  1253. },
  1254. {
  1255. "__type__": "cc.CompPrefabInfo",
  1256. "fileId": "7f/xTn3TxE15U7eYSPeAZm"
  1257. },
  1258. {
  1259. "__type__": "cc.PrefabInfo",
  1260. "root": {
  1261. "__id__": 1
  1262. },
  1263. "asset": {
  1264. "__id__": 0
  1265. },
  1266. "fileId": "2ezOEdK4hEb6nE0EF4AOvW"
  1267. },
  1268. {
  1269. "__type__": "cc.Node",
  1270. "_name": "0",
  1271. "_objFlags": 0,
  1272. "_parent": {
  1273. "__id__": 47
  1274. },
  1275. "_children": [],
  1276. "_active": true,
  1277. "_components": [
  1278. {
  1279. "__id__": 55
  1280. },
  1281. {
  1282. "__id__": 57
  1283. }
  1284. ],
  1285. "_prefab": {
  1286. "__id__": 59
  1287. },
  1288. "_lpos": {
  1289. "__type__": "cc.Vec3",
  1290. "x": 0,
  1291. "y": -51,
  1292. "z": 0
  1293. },
  1294. "_lrot": {
  1295. "__type__": "cc.Quat",
  1296. "x": 0,
  1297. "y": 0,
  1298. "z": 0,
  1299. "w": 1
  1300. },
  1301. "_lscale": {
  1302. "__type__": "cc.Vec3",
  1303. "x": 1,
  1304. "y": 1,
  1305. "z": 1
  1306. },
  1307. "_layer": 33554432,
  1308. "_euler": {
  1309. "__type__": "cc.Vec3",
  1310. "x": 0,
  1311. "y": 0,
  1312. "z": 0
  1313. },
  1314. "_id": ""
  1315. },
  1316. {
  1317. "__type__": "cc.UITransform",
  1318. "_name": "",
  1319. "_objFlags": 0,
  1320. "node": {
  1321. "__id__": 54
  1322. },
  1323. "_enabled": true,
  1324. "__prefab": {
  1325. "__id__": 56
  1326. },
  1327. "_priority": 0,
  1328. "_contentSize": {
  1329. "__type__": "cc.Size",
  1330. "width": 32,
  1331. "height": 34
  1332. },
  1333. "_anchorPoint": {
  1334. "__type__": "cc.Vec2",
  1335. "x": 0.5,
  1336. "y": 0.5
  1337. },
  1338. "_id": ""
  1339. },
  1340. {
  1341. "__type__": "cc.CompPrefabInfo",
  1342. "fileId": "59DJqVahRHPqu0I7lezeGe"
  1343. },
  1344. {
  1345. "__type__": "cc.Sprite",
  1346. "_name": "",
  1347. "_objFlags": 0,
  1348. "node": {
  1349. "__id__": 54
  1350. },
  1351. "_enabled": true,
  1352. "__prefab": {
  1353. "__id__": 58
  1354. },
  1355. "_visFlags": 0,
  1356. "_customMaterial": null,
  1357. "_srcBlendFactor": 2,
  1358. "_dstBlendFactor": 4,
  1359. "_color": {
  1360. "__type__": "cc.Color",
  1361. "r": 255,
  1362. "g": 255,
  1363. "b": 255,
  1364. "a": 255
  1365. },
  1366. "_spriteFrame": {
  1367. "__uuid__": "373f4e88-5447-4b1e-bab8-d72cf95d9965@f9941"
  1368. },
  1369. "_type": 0,
  1370. "_fillType": 0,
  1371. "_sizeMode": 1,
  1372. "_fillCenter": {
  1373. "__type__": "cc.Vec2",
  1374. "x": 0,
  1375. "y": 0
  1376. },
  1377. "_fillStart": 0,
  1378. "_fillRange": 0,
  1379. "_isTrimmedMode": true,
  1380. "_useGrayscale": false,
  1381. "_atlas": null,
  1382. "_id": ""
  1383. },
  1384. {
  1385. "__type__": "cc.CompPrefabInfo",
  1386. "fileId": "f9UOeuIeVChqYwcTQoLqaQ"
  1387. },
  1388. {
  1389. "__type__": "cc.PrefabInfo",
  1390. "root": {
  1391. "__id__": 1
  1392. },
  1393. "asset": {
  1394. "__id__": 0
  1395. },
  1396. "fileId": "82lMj+tMNGv4oM0ejlZtGO"
  1397. },
  1398. {
  1399. "__type__": "cc.UITransform",
  1400. "_name": "",
  1401. "_objFlags": 0,
  1402. "node": {
  1403. "__id__": 47
  1404. },
  1405. "_enabled": true,
  1406. "__prefab": {
  1407. "__id__": 61
  1408. },
  1409. "_priority": 0,
  1410. "_contentSize": {
  1411. "__type__": "cc.Size",
  1412. "width": 30,
  1413. "height": 68
  1414. },
  1415. "_anchorPoint": {
  1416. "__type__": "cc.Vec2",
  1417. "x": 0.5,
  1418. "y": 1
  1419. },
  1420. "_id": ""
  1421. },
  1422. {
  1423. "__type__": "cc.CompPrefabInfo",
  1424. "fileId": "9a283iWylL05XIu+uYB/tT"
  1425. },
  1426. {
  1427. "__type__": "cc.Layout",
  1428. "_name": "",
  1429. "_objFlags": 0,
  1430. "node": {
  1431. "__id__": 47
  1432. },
  1433. "_enabled": true,
  1434. "__prefab": {
  1435. "__id__": 63
  1436. },
  1437. "_resizeMode": 1,
  1438. "_layoutType": 2,
  1439. "_cellSize": {
  1440. "__type__": "cc.Size",
  1441. "width": 40,
  1442. "height": 40
  1443. },
  1444. "_startAxis": 0,
  1445. "_paddingLeft": 0,
  1446. "_paddingRight": 0,
  1447. "_paddingTop": 0,
  1448. "_paddingBottom": 0,
  1449. "_spacingX": 0,
  1450. "_spacingY": 0,
  1451. "_verticalDirection": 1,
  1452. "_horizontalDirection": 0,
  1453. "_constraint": 0,
  1454. "_constraintNum": 2,
  1455. "_affectedByScale": false,
  1456. "_isAlign": true,
  1457. "_id": ""
  1458. },
  1459. {
  1460. "__type__": "cc.CompPrefabInfo",
  1461. "fileId": "11qqhav3FN27ocKbmm1uFN"
  1462. },
  1463. {
  1464. "__type__": "b8ac1o1JflJjZg9+e94eiuJ",
  1465. "_name": "",
  1466. "_objFlags": 0,
  1467. "node": {
  1468. "__id__": 47
  1469. },
  1470. "_enabled": true,
  1471. "__prefab": {
  1472. "__id__": 65
  1473. },
  1474. "dataList": [
  1475. {
  1476. "__id__": 66
  1477. }
  1478. ],
  1479. "_string": "00",
  1480. "_id": ""
  1481. },
  1482. {
  1483. "__type__": "cc.CompPrefabInfo",
  1484. "fileId": "81gNW5ceFItKu++ktqTMnZ"
  1485. },
  1486. {
  1487. "__type__": "BitmapFontData",
  1488. "chair": "0",
  1489. "spriteFrame": {
  1490. "__uuid__": "373f4e88-5447-4b1e-bab8-d72cf95d9965@f9941"
  1491. }
  1492. },
  1493. {
  1494. "__type__": "cc.PrefabInfo",
  1495. "root": {
  1496. "__id__": 1
  1497. },
  1498. "asset": {
  1499. "__id__": 0
  1500. },
  1501. "fileId": "8cvc6yHb1DeaYHFI7tol2E"
  1502. },
  1503. {
  1504. "__type__": "cc.UITransform",
  1505. "_name": "",
  1506. "_objFlags": 0,
  1507. "node": {
  1508. "__id__": 2
  1509. },
  1510. "_enabled": true,
  1511. "__prefab": {
  1512. "__id__": 69
  1513. },
  1514. "_priority": 0,
  1515. "_contentSize": {
  1516. "__type__": "cc.Size",
  1517. "width": 172,
  1518. "height": 259
  1519. },
  1520. "_anchorPoint": {
  1521. "__type__": "cc.Vec2",
  1522. "x": 0.5,
  1523. "y": 0.5
  1524. },
  1525. "_id": ""
  1526. },
  1527. {
  1528. "__type__": "cc.CompPrefabInfo",
  1529. "fileId": "6b//gDkFpMnIAMF0nzuR11"
  1530. },
  1531. {
  1532. "__type__": "cc.PrefabInfo",
  1533. "root": {
  1534. "__id__": 1
  1535. },
  1536. "asset": {
  1537. "__id__": 0
  1538. },
  1539. "fileId": "38GsX444JNsoYNuJAfMmRR"
  1540. },
  1541. {
  1542. "__type__": "cc.Node",
  1543. "_name": "放大动画",
  1544. "_objFlags": 0,
  1545. "_parent": {
  1546. "__id__": 1
  1547. },
  1548. "_children": [],
  1549. "_active": true,
  1550. "_components": [
  1551. {
  1552. "__id__": 72
  1553. },
  1554. {
  1555. "__id__": 74
  1556. }
  1557. ],
  1558. "_prefab": {
  1559. "__id__": 78
  1560. },
  1561. "_lpos": {
  1562. "__type__": "cc.Vec3",
  1563. "x": 0,
  1564. "y": 0,
  1565. "z": 0
  1566. },
  1567. "_lrot": {
  1568. "__type__": "cc.Quat",
  1569. "x": 0,
  1570. "y": 0,
  1571. "z": 0,
  1572. "w": 1
  1573. },
  1574. "_lscale": {
  1575. "__type__": "cc.Vec3",
  1576. "x": 1,
  1577. "y": 1,
  1578. "z": 1
  1579. },
  1580. "_layer": 1073741824,
  1581. "_euler": {
  1582. "__type__": "cc.Vec3",
  1583. "x": 0,
  1584. "y": 0,
  1585. "z": 0
  1586. },
  1587. "_id": ""
  1588. },
  1589. {
  1590. "__type__": "cc.UITransform",
  1591. "_name": "",
  1592. "_objFlags": 0,
  1593. "node": {
  1594. "__id__": 71
  1595. },
  1596. "_enabled": true,
  1597. "__prefab": {
  1598. "__id__": 73
  1599. },
  1600. "_priority": 0,
  1601. "_contentSize": {
  1602. "__type__": "cc.Size",
  1603. "width": 100,
  1604. "height": 100
  1605. },
  1606. "_anchorPoint": {
  1607. "__type__": "cc.Vec2",
  1608. "x": 0.5,
  1609. "y": 0.5
  1610. },
  1611. "_id": ""
  1612. },
  1613. {
  1614. "__type__": "cc.CompPrefabInfo",
  1615. "fileId": "e9HL2qiQ1N6qt+lON/fb6F"
  1616. },
  1617. {
  1618. "__type__": "38fbeyvXe9H8pLxETV9p9u+",
  1619. "_name": "",
  1620. "_objFlags": 0,
  1621. "node": {
  1622. "__id__": 71
  1623. },
  1624. "_enabled": true,
  1625. "__prefab": {
  1626. "__id__": 75
  1627. },
  1628. "targetData": [
  1629. {
  1630. "__id__": 76
  1631. }
  1632. ],
  1633. "target": {
  1634. "__id__": 2
  1635. },
  1636. "playOnLoad": false,
  1637. "tweenEasing": 0,
  1638. "repeat": 1,
  1639. "onOneRepeatComplete": [],
  1640. "_id": ""
  1641. },
  1642. {
  1643. "__type__": "cc.CompPrefabInfo",
  1644. "fileId": "11EPbXFVtMp4Fe2gS6b6hE"
  1645. },
  1646. {
  1647. "__type__": "TweenData",
  1648. "propsData": {
  1649. "__id__": 77
  1650. },
  1651. "duration": 0.3,
  1652. "delay": 0,
  1653. "isOffset": false,
  1654. "onComplete": [],
  1655. "onStart": [],
  1656. "onUpdate": []
  1657. },
  1658. {
  1659. "__type__": "PropsData",
  1660. "position": {
  1661. "__type__": "cc.Vec3",
  1662. "x": 0,
  1663. "y": 0,
  1664. "z": 0
  1665. },
  1666. "eulerAngles": {
  1667. "__type__": "cc.Vec3",
  1668. "x": 0,
  1669. "y": 0,
  1670. "z": 0
  1671. },
  1672. "scale": {
  1673. "__type__": "cc.Vec3",
  1674. "x": 1.2,
  1675. "y": 1.2,
  1676. "z": 1
  1677. }
  1678. },
  1679. {
  1680. "__type__": "cc.PrefabInfo",
  1681. "root": {
  1682. "__id__": 1
  1683. },
  1684. "asset": {
  1685. "__id__": 0
  1686. },
  1687. "fileId": "86kyhkzndKn6l0lwLH2lAh"
  1688. },
  1689. {
  1690. "__type__": "cc.Node",
  1691. "_name": "缩小动画",
  1692. "_objFlags": 0,
  1693. "_parent": {
  1694. "__id__": 1
  1695. },
  1696. "_children": [],
  1697. "_active": true,
  1698. "_components": [
  1699. {
  1700. "__id__": 80
  1701. },
  1702. {
  1703. "__id__": 82
  1704. }
  1705. ],
  1706. "_prefab": {
  1707. "__id__": 86
  1708. },
  1709. "_lpos": {
  1710. "__type__": "cc.Vec3",
  1711. "x": 0,
  1712. "y": 0,
  1713. "z": 0
  1714. },
  1715. "_lrot": {
  1716. "__type__": "cc.Quat",
  1717. "x": 0,
  1718. "y": 0,
  1719. "z": 0,
  1720. "w": 1
  1721. },
  1722. "_lscale": {
  1723. "__type__": "cc.Vec3",
  1724. "x": 1,
  1725. "y": 1,
  1726. "z": 1
  1727. },
  1728. "_layer": 1073741824,
  1729. "_euler": {
  1730. "__type__": "cc.Vec3",
  1731. "x": 0,
  1732. "y": 0,
  1733. "z": 0
  1734. },
  1735. "_id": ""
  1736. },
  1737. {
  1738. "__type__": "cc.UITransform",
  1739. "_name": "",
  1740. "_objFlags": 0,
  1741. "node": {
  1742. "__id__": 79
  1743. },
  1744. "_enabled": true,
  1745. "__prefab": {
  1746. "__id__": 81
  1747. },
  1748. "_priority": 0,
  1749. "_contentSize": {
  1750. "__type__": "cc.Size",
  1751. "width": 100,
  1752. "height": 100
  1753. },
  1754. "_anchorPoint": {
  1755. "__type__": "cc.Vec2",
  1756. "x": 0.5,
  1757. "y": 0.5
  1758. },
  1759. "_id": ""
  1760. },
  1761. {
  1762. "__type__": "cc.CompPrefabInfo",
  1763. "fileId": "6bj/6Kl35PKJJOfPISS10o"
  1764. },
  1765. {
  1766. "__type__": "38fbeyvXe9H8pLxETV9p9u+",
  1767. "_name": "",
  1768. "_objFlags": 0,
  1769. "node": {
  1770. "__id__": 79
  1771. },
  1772. "_enabled": true,
  1773. "__prefab": {
  1774. "__id__": 83
  1775. },
  1776. "targetData": [
  1777. {
  1778. "__id__": 84
  1779. }
  1780. ],
  1781. "target": {
  1782. "__id__": 2
  1783. },
  1784. "playOnLoad": false,
  1785. "tweenEasing": 0,
  1786. "repeat": 1,
  1787. "onOneRepeatComplete": [],
  1788. "_id": ""
  1789. },
  1790. {
  1791. "__type__": "cc.CompPrefabInfo",
  1792. "fileId": "5ctrB9TGdGA4lmo3XJDGpK"
  1793. },
  1794. {
  1795. "__type__": "TweenData",
  1796. "propsData": {
  1797. "__id__": 85
  1798. },
  1799. "duration": 0.3,
  1800. "delay": 0,
  1801. "isOffset": false,
  1802. "onComplete": [],
  1803. "onStart": [],
  1804. "onUpdate": []
  1805. },
  1806. {
  1807. "__type__": "PropsData",
  1808. "position": {
  1809. "__type__": "cc.Vec3",
  1810. "x": 0,
  1811. "y": 0,
  1812. "z": 0
  1813. },
  1814. "eulerAngles": {
  1815. "__type__": "cc.Vec3",
  1816. "x": 0,
  1817. "y": 0,
  1818. "z": 0
  1819. },
  1820. "scale": {
  1821. "__type__": "cc.Vec3",
  1822. "x": 1,
  1823. "y": 1,
  1824. "z": 1
  1825. }
  1826. },
  1827. {
  1828. "__type__": "cc.PrefabInfo",
  1829. "root": {
  1830. "__id__": 1
  1831. },
  1832. "asset": {
  1833. "__id__": 0
  1834. },
  1835. "fileId": "4frOy4Cw1KvobOSsNrEhjV"
  1836. },
  1837. {
  1838. "__type__": "cc.UITransform",
  1839. "_name": "",
  1840. "_objFlags": 0,
  1841. "node": {
  1842. "__id__": 1
  1843. },
  1844. "_enabled": true,
  1845. "__prefab": {
  1846. "__id__": 88
  1847. },
  1848. "_priority": 0,
  1849. "_contentSize": {
  1850. "__type__": "cc.Size",
  1851. "width": 172,
  1852. "height": 259
  1853. },
  1854. "_anchorPoint": {
  1855. "__type__": "cc.Vec2",
  1856. "x": 0.5,
  1857. "y": 0.5
  1858. },
  1859. "_id": ""
  1860. },
  1861. {
  1862. "__type__": "cc.CompPrefabInfo",
  1863. "fileId": "03zR7C2b1FSK+YBZpws+xo"
  1864. },
  1865. {
  1866. "__type__": "cc.Toggle",
  1867. "_name": "",
  1868. "_objFlags": 0,
  1869. "node": {
  1870. "__id__": 1
  1871. },
  1872. "_enabled": true,
  1873. "__prefab": {
  1874. "__id__": 90
  1875. },
  1876. "clickEvents": [],
  1877. "_interactable": true,
  1878. "_transition": 0,
  1879. "_normalColor": {
  1880. "__type__": "cc.Color",
  1881. "r": 214,
  1882. "g": 214,
  1883. "b": 214,
  1884. "a": 255
  1885. },
  1886. "_hoverColor": {
  1887. "__type__": "cc.Color",
  1888. "r": 211,
  1889. "g": 211,
  1890. "b": 211,
  1891. "a": 255
  1892. },
  1893. "_pressedColor": {
  1894. "__type__": "cc.Color",
  1895. "r": 255,
  1896. "g": 255,
  1897. "b": 255,
  1898. "a": 255
  1899. },
  1900. "_disabledColor": {
  1901. "__type__": "cc.Color",
  1902. "r": 124,
  1903. "g": 124,
  1904. "b": 124,
  1905. "a": 255
  1906. },
  1907. "_normalSprite": {
  1908. "__uuid__": "f12a23c4-b924-4322-a260-3d982428f1e8@f9941"
  1909. },
  1910. "_hoverSprite": null,
  1911. "_pressedSprite": null,
  1912. "_disabledSprite": null,
  1913. "_duration": 0.1,
  1914. "_zoomScale": 1.2,
  1915. "_target": null,
  1916. "checkEvents": [],
  1917. "_isChecked": true,
  1918. "_checkMark": {
  1919. "__id__": 6
  1920. },
  1921. "_id": ""
  1922. },
  1923. {
  1924. "__type__": "cc.CompPrefabInfo",
  1925. "fileId": "9b8IW1c0BB3rLtFXFfDwtM"
  1926. },
  1927. {
  1928. "__type__": "e2211H+GvNPBLN0psbiSpVH",
  1929. "_name": "",
  1930. "_objFlags": 0,
  1931. "node": {
  1932. "__id__": 1
  1933. },
  1934. "_enabled": true,
  1935. "__prefab": {
  1936. "__id__": 92
  1937. },
  1938. "soundName": "",
  1939. "clips": [
  1940. {
  1941. "__uuid__": "e509227a-af5b-4329-bca9-d7da471f7dee"
  1942. }
  1943. ],
  1944. "_volume": 1,
  1945. "playOnLoad": false,
  1946. "playOnTouch": true,
  1947. "oneShot": true,
  1948. "loop": false,
  1949. "_id": ""
  1950. },
  1951. {
  1952. "__type__": "cc.CompPrefabInfo",
  1953. "fileId": "62efM/MtNEuJCOWMO9jZuO"
  1954. },
  1955. {
  1956. "__type__": "cc.PrefabInfo",
  1957. "root": {
  1958. "__id__": 1
  1959. },
  1960. "asset": {
  1961. "__id__": 0
  1962. },
  1963. "fileId": "0cl/HPkcVPj5bi6yoEEDIv"
  1964. }
  1965. ]