EquipStrong-001.prefab 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "EquipStrong-001",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "EquipStrong-001",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 14
  26. },
  27. {
  28. "__id__": 32
  29. }
  30. ],
  31. "_active": true,
  32. "_components": [
  33. {
  34. "__id__": 82
  35. },
  36. {
  37. "__id__": 84
  38. },
  39. {
  40. "__id__": 86
  41. }
  42. ],
  43. "_prefab": {
  44. "__id__": 88
  45. },
  46. "_lpos": {
  47. "__type__": "cc.Vec3",
  48. "x": 0,
  49. "y": 0,
  50. "z": 0
  51. },
  52. "_lrot": {
  53. "__type__": "cc.Quat",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0,
  57. "w": 1
  58. },
  59. "_lscale": {
  60. "__type__": "cc.Vec3",
  61. "x": 1,
  62. "y": 1,
  63. "z": 1
  64. },
  65. "_mobility": 0,
  66. "_layer": 33554432,
  67. "_euler": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_id": ""
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_name": "mask",
  78. "_objFlags": 0,
  79. "__editorExtras__": {},
  80. "_parent": {
  81. "__id__": 1
  82. },
  83. "_children": [],
  84. "_active": true,
  85. "_components": [
  86. {
  87. "__id__": 3
  88. },
  89. {
  90. "__id__": 5
  91. },
  92. {
  93. "__id__": 7
  94. },
  95. {
  96. "__id__": 9
  97. },
  98. {
  99. "__id__": 11
  100. }
  101. ],
  102. "_prefab": {
  103. "__id__": 13
  104. },
  105. "_lpos": {
  106. "__type__": "cc.Vec3",
  107. "x": 0,
  108. "y": 0,
  109. "z": 0
  110. },
  111. "_lrot": {
  112. "__type__": "cc.Quat",
  113. "x": 0,
  114. "y": 0,
  115. "z": 0,
  116. "w": 1
  117. },
  118. "_lscale": {
  119. "__type__": "cc.Vec3",
  120. "x": 1,
  121. "y": 1,
  122. "z": 1
  123. },
  124. "_mobility": 0,
  125. "_layer": 33554432,
  126. "_euler": {
  127. "__type__": "cc.Vec3",
  128. "x": 0,
  129. "y": 0,
  130. "z": 0
  131. },
  132. "_id": ""
  133. },
  134. {
  135. "__type__": "cc.UITransform",
  136. "_name": "",
  137. "_objFlags": 0,
  138. "__editorExtras__": {},
  139. "node": {
  140. "__id__": 2
  141. },
  142. "_enabled": true,
  143. "__prefab": {
  144. "__id__": 4
  145. },
  146. "_contentSize": {
  147. "__type__": "cc.Size",
  148. "width": 750,
  149. "height": 1334
  150. },
  151. "_anchorPoint": {
  152. "__type__": "cc.Vec2",
  153. "x": 0.5,
  154. "y": 0.5
  155. },
  156. "_id": ""
  157. },
  158. {
  159. "__type__": "cc.CompPrefabInfo",
  160. "fileId": "afXfoMFzVHDJq8xUARzdpD"
  161. },
  162. {
  163. "__type__": "cc.Sprite",
  164. "_name": "",
  165. "_objFlags": 0,
  166. "__editorExtras__": {},
  167. "node": {
  168. "__id__": 2
  169. },
  170. "_enabled": true,
  171. "__prefab": {
  172. "__id__": 6
  173. },
  174. "_customMaterial": null,
  175. "_srcBlendFactor": 2,
  176. "_dstBlendFactor": 4,
  177. "_color": {
  178. "__type__": "cc.Color",
  179. "r": 0,
  180. "g": 0,
  181. "b": 0,
  182. "a": 255
  183. },
  184. "_spriteFrame": {
  185. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  186. "__expectedType__": "cc.SpriteFrame"
  187. },
  188. "_type": 0,
  189. "_fillType": 0,
  190. "_sizeMode": 0,
  191. "_fillCenter": {
  192. "__type__": "cc.Vec2",
  193. "x": 0,
  194. "y": 0
  195. },
  196. "_fillStart": 0,
  197. "_fillRange": 0,
  198. "_isTrimmedMode": true,
  199. "_useGrayscale": false,
  200. "_atlas": null,
  201. "_id": ""
  202. },
  203. {
  204. "__type__": "cc.CompPrefabInfo",
  205. "fileId": "270oql9nROi78/PYY0+xbD"
  206. },
  207. {
  208. "__type__": "cc.Widget",
  209. "_name": "",
  210. "_objFlags": 0,
  211. "__editorExtras__": {},
  212. "node": {
  213. "__id__": 2
  214. },
  215. "_enabled": true,
  216. "__prefab": {
  217. "__id__": 8
  218. },
  219. "_alignFlags": 45,
  220. "_target": null,
  221. "_left": 0,
  222. "_right": 0,
  223. "_top": 0,
  224. "_bottom": 0,
  225. "_horizontalCenter": 0,
  226. "_verticalCenter": 0,
  227. "_isAbsLeft": true,
  228. "_isAbsRight": true,
  229. "_isAbsTop": true,
  230. "_isAbsBottom": true,
  231. "_isAbsHorizontalCenter": true,
  232. "_isAbsVerticalCenter": true,
  233. "_originalWidth": 100,
  234. "_originalHeight": 100,
  235. "_alignMode": 2,
  236. "_lockFlags": 0,
  237. "_id": ""
  238. },
  239. {
  240. "__type__": "cc.CompPrefabInfo",
  241. "fileId": "b3mXn8ZElGYIlM9sjDMERa"
  242. },
  243. {
  244. "__type__": "cc.UIOpacity",
  245. "_name": "",
  246. "_objFlags": 0,
  247. "__editorExtras__": {},
  248. "node": {
  249. "__id__": 2
  250. },
  251. "_enabled": true,
  252. "__prefab": {
  253. "__id__": 10
  254. },
  255. "_opacity": 180,
  256. "_id": ""
  257. },
  258. {
  259. "__type__": "cc.CompPrefabInfo",
  260. "fileId": "4aIjqXs3hEWa8H0ndOV/Oa"
  261. },
  262. {
  263. "__type__": "cc.BlockInputEvents",
  264. "_name": "",
  265. "_objFlags": 0,
  266. "__editorExtras__": {},
  267. "node": {
  268. "__id__": 2
  269. },
  270. "_enabled": true,
  271. "__prefab": {
  272. "__id__": 12
  273. },
  274. "_id": ""
  275. },
  276. {
  277. "__type__": "cc.CompPrefabInfo",
  278. "fileId": "81cqO2M8BGRIxpZC7nPW8P"
  279. },
  280. {
  281. "__type__": "cc.PrefabInfo",
  282. "root": {
  283. "__id__": 1
  284. },
  285. "asset": {
  286. "__id__": 0
  287. },
  288. "fileId": "58TnDpyyZKU4abaWsDHQVd",
  289. "instance": null,
  290. "targetOverrides": null,
  291. "nestedPrefabInstanceRoots": null
  292. },
  293. {
  294. "__type__": "cc.Node",
  295. "_name": "close_tips",
  296. "_objFlags": 0,
  297. "__editorExtras__": {},
  298. "_parent": {
  299. "__id__": 1
  300. },
  301. "_children": [
  302. {
  303. "__id__": 15
  304. }
  305. ],
  306. "_active": true,
  307. "_components": [
  308. {
  309. "__id__": 23
  310. },
  311. {
  312. "__id__": 25
  313. },
  314. {
  315. "__id__": 27
  316. },
  317. {
  318. "__id__": 29
  319. }
  320. ],
  321. "_prefab": {
  322. "__id__": 31
  323. },
  324. "_lpos": {
  325. "__type__": "cc.Vec3",
  326. "x": 0,
  327. "y": -600.62,
  328. "z": 0
  329. },
  330. "_lrot": {
  331. "__type__": "cc.Quat",
  332. "x": 0,
  333. "y": 0,
  334. "z": 0,
  335. "w": 1
  336. },
  337. "_lscale": {
  338. "__type__": "cc.Vec3",
  339. "x": 1,
  340. "y": 1,
  341. "z": 1
  342. },
  343. "_mobility": 0,
  344. "_layer": 33554432,
  345. "_euler": {
  346. "__type__": "cc.Vec3",
  347. "x": 0,
  348. "y": 0,
  349. "z": 0
  350. },
  351. "_id": ""
  352. },
  353. {
  354. "__type__": "cc.Node",
  355. "_name": "line_eff",
  356. "_objFlags": 0,
  357. "__editorExtras__": {},
  358. "_parent": {
  359. "__id__": 14
  360. },
  361. "_children": [],
  362. "_active": true,
  363. "_components": [
  364. {
  365. "__id__": 16
  366. },
  367. {
  368. "__id__": 18
  369. },
  370. {
  371. "__id__": 20
  372. }
  373. ],
  374. "_prefab": {
  375. "__id__": 22
  376. },
  377. "_lpos": {
  378. "__type__": "cc.Vec3",
  379. "x": 0,
  380. "y": 0,
  381. "z": 0
  382. },
  383. "_lrot": {
  384. "__type__": "cc.Quat",
  385. "x": 0,
  386. "y": 0,
  387. "z": 0,
  388. "w": 1
  389. },
  390. "_lscale": {
  391. "__type__": "cc.Vec3",
  392. "x": 1,
  393. "y": 1,
  394. "z": 1
  395. },
  396. "_mobility": 0,
  397. "_layer": 33554432,
  398. "_euler": {
  399. "__type__": "cc.Vec3",
  400. "x": 0,
  401. "y": 0,
  402. "z": 0
  403. },
  404. "_id": ""
  405. },
  406. {
  407. "__type__": "cc.UITransform",
  408. "_name": "",
  409. "_objFlags": 0,
  410. "__editorExtras__": {},
  411. "node": {
  412. "__id__": 15
  413. },
  414. "_enabled": true,
  415. "__prefab": {
  416. "__id__": 17
  417. },
  418. "_contentSize": {
  419. "__type__": "cc.Size",
  420. "width": 416,
  421. "height": 31
  422. },
  423. "_anchorPoint": {
  424. "__type__": "cc.Vec2",
  425. "x": 0.5,
  426. "y": 0.5
  427. },
  428. "_id": ""
  429. },
  430. {
  431. "__type__": "cc.CompPrefabInfo",
  432. "fileId": "c7KjvpRqxGRYl//mu/0VQa"
  433. },
  434. {
  435. "__type__": "cc.Sprite",
  436. "_name": "",
  437. "_objFlags": 0,
  438. "__editorExtras__": {},
  439. "node": {
  440. "__id__": 15
  441. },
  442. "_enabled": true,
  443. "__prefab": {
  444. "__id__": 19
  445. },
  446. "_customMaterial": null,
  447. "_srcBlendFactor": 2,
  448. "_dstBlendFactor": 4,
  449. "_color": {
  450. "__type__": "cc.Color",
  451. "r": 255,
  452. "g": 255,
  453. "b": 255,
  454. "a": 255
  455. },
  456. "_spriteFrame": {
  457. "__uuid__": "1c7bd997-8b2c-4dbc-bc92-5314491cbc6b@f9941",
  458. "__expectedType__": "cc.SpriteFrame"
  459. },
  460. "_type": 1,
  461. "_fillType": 0,
  462. "_sizeMode": 0,
  463. "_fillCenter": {
  464. "__type__": "cc.Vec2",
  465. "x": 0,
  466. "y": 0
  467. },
  468. "_fillStart": 0,
  469. "_fillRange": 0,
  470. "_isTrimmedMode": true,
  471. "_useGrayscale": false,
  472. "_atlas": null,
  473. "_id": ""
  474. },
  475. {
  476. "__type__": "cc.CompPrefabInfo",
  477. "fileId": "f6ZrG4MEdNWZTbLBsL63NN"
  478. },
  479. {
  480. "__type__": "cc.Widget",
  481. "_name": "",
  482. "_objFlags": 0,
  483. "__editorExtras__": {},
  484. "node": {
  485. "__id__": 15
  486. },
  487. "_enabled": true,
  488. "__prefab": {
  489. "__id__": 21
  490. },
  491. "_alignFlags": 42,
  492. "_target": null,
  493. "_left": -130,
  494. "_right": -130,
  495. "_top": 0,
  496. "_bottom": 0,
  497. "_horizontalCenter": 0,
  498. "_verticalCenter": 0,
  499. "_isAbsLeft": true,
  500. "_isAbsRight": true,
  501. "_isAbsTop": true,
  502. "_isAbsBottom": true,
  503. "_isAbsHorizontalCenter": true,
  504. "_isAbsVerticalCenter": true,
  505. "_originalWidth": 398,
  506. "_originalHeight": 0,
  507. "_alignMode": 2,
  508. "_lockFlags": 0,
  509. "_id": ""
  510. },
  511. {
  512. "__type__": "cc.CompPrefabInfo",
  513. "fileId": "613Ie2R0ZNo6aNG6PTQ9u2"
  514. },
  515. {
  516. "__type__": "cc.PrefabInfo",
  517. "root": {
  518. "__id__": 1
  519. },
  520. "asset": {
  521. "__id__": 0
  522. },
  523. "fileId": "d9O9X+2+1Bl5EI+4usn9fJ",
  524. "instance": null,
  525. "targetOverrides": null,
  526. "nestedPrefabInstanceRoots": null
  527. },
  528. {
  529. "__type__": "cc.UITransform",
  530. "_name": "",
  531. "_objFlags": 0,
  532. "__editorExtras__": {},
  533. "node": {
  534. "__id__": 14
  535. },
  536. "_enabled": true,
  537. "__prefab": {
  538. "__id__": 24
  539. },
  540. "_contentSize": {
  541. "__type__": "cc.Size",
  542. "width": 156,
  543. "height": 32.76
  544. },
  545. "_anchorPoint": {
  546. "__type__": "cc.Vec2",
  547. "x": 0.5,
  548. "y": 0.5
  549. },
  550. "_id": ""
  551. },
  552. {
  553. "__type__": "cc.CompPrefabInfo",
  554. "fileId": "50A1fr5rJHhpWWxi2FDMaJ"
  555. },
  556. {
  557. "__type__": "cc.Label",
  558. "_name": "",
  559. "_objFlags": 0,
  560. "__editorExtras__": {},
  561. "node": {
  562. "__id__": 14
  563. },
  564. "_enabled": true,
  565. "__prefab": {
  566. "__id__": 26
  567. },
  568. "_customMaterial": null,
  569. "_srcBlendFactor": 2,
  570. "_dstBlendFactor": 4,
  571. "_color": {
  572. "__type__": "cc.Color",
  573. "r": 255,
  574. "g": 239,
  575. "b": 201,
  576. "a": 255
  577. },
  578. "_string": "點擊空白繼續",
  579. "_horizontalAlign": 1,
  580. "_verticalAlign": 1,
  581. "_actualFontSize": 26,
  582. "_fontSize": 26,
  583. "_fontFamily": "Arial",
  584. "_lineHeight": 26,
  585. "_overflow": 0,
  586. "_enableWrapText": false,
  587. "_font": {
  588. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  589. "__expectedType__": "cc.TTFFont"
  590. },
  591. "_isSystemFontUsed": false,
  592. "_spacingX": 0,
  593. "_isItalic": false,
  594. "_isBold": true,
  595. "_isUnderline": false,
  596. "_underlineHeight": 2,
  597. "_cacheMode": 0,
  598. "_enableOutline": false,
  599. "_outlineColor": {
  600. "__type__": "cc.Color",
  601. "r": 0,
  602. "g": 0,
  603. "b": 0,
  604. "a": 255
  605. },
  606. "_outlineWidth": 2,
  607. "_enableShadow": false,
  608. "_shadowColor": {
  609. "__type__": "cc.Color",
  610. "r": 0,
  611. "g": 0,
  612. "b": 0,
  613. "a": 255
  614. },
  615. "_shadowOffset": {
  616. "__type__": "cc.Vec2",
  617. "x": 2,
  618. "y": 2
  619. },
  620. "_shadowBlur": 2,
  621. "_id": ""
  622. },
  623. {
  624. "__type__": "cc.CompPrefabInfo",
  625. "fileId": "82DSlbAE5DWqhZATcKYu/N"
  626. },
  627. {
  628. "__type__": "cc.Widget",
  629. "_name": "",
  630. "_objFlags": 0,
  631. "__editorExtras__": {},
  632. "node": {
  633. "__id__": 14
  634. },
  635. "_enabled": true,
  636. "__prefab": {
  637. "__id__": 28
  638. },
  639. "_alignFlags": 20,
  640. "_target": null,
  641. "_left": 0,
  642. "_right": 0,
  643. "_top": 0,
  644. "_bottom": 50,
  645. "_horizontalCenter": 0,
  646. "_verticalCenter": 0,
  647. "_isAbsLeft": true,
  648. "_isAbsRight": true,
  649. "_isAbsTop": true,
  650. "_isAbsBottom": true,
  651. "_isAbsHorizontalCenter": true,
  652. "_isAbsVerticalCenter": true,
  653. "_originalWidth": 0,
  654. "_originalHeight": 0,
  655. "_alignMode": 2,
  656. "_lockFlags": 0,
  657. "_id": ""
  658. },
  659. {
  660. "__type__": "cc.CompPrefabInfo",
  661. "fileId": "960R7mdslLDbndVIvqVR4g"
  662. },
  663. {
  664. "__type__": "cc.UIOpacity",
  665. "_name": "",
  666. "_objFlags": 0,
  667. "__editorExtras__": {},
  668. "node": {
  669. "__id__": 14
  670. },
  671. "_enabled": true,
  672. "__prefab": {
  673. "__id__": 30
  674. },
  675. "_opacity": 255,
  676. "_id": ""
  677. },
  678. {
  679. "__type__": "cc.CompPrefabInfo",
  680. "fileId": "62XSr5I5xIWJ3mU0Un8ojz"
  681. },
  682. {
  683. "__type__": "cc.PrefabInfo",
  684. "root": {
  685. "__id__": 1
  686. },
  687. "asset": {
  688. "__id__": 0
  689. },
  690. "fileId": "f4W8KenhpNiaIQ5gYbNo2B",
  691. "instance": null,
  692. "targetOverrides": null,
  693. "nestedPrefabInstanceRoots": null
  694. },
  695. {
  696. "__type__": "cc.Node",
  697. "_name": "content",
  698. "_objFlags": 0,
  699. "__editorExtras__": {},
  700. "_parent": {
  701. "__id__": 1
  702. },
  703. "_children": [
  704. {
  705. "__id__": 33
  706. }
  707. ],
  708. "_active": true,
  709. "_components": [
  710. {
  711. "__id__": 71
  712. },
  713. {
  714. "__id__": 73
  715. },
  716. {
  717. "__id__": 75
  718. },
  719. {
  720. "__id__": 77
  721. },
  722. {
  723. "__id__": 79
  724. }
  725. ],
  726. "_prefab": {
  727. "__id__": 81
  728. },
  729. "_lpos": {
  730. "__type__": "cc.Vec3",
  731. "x": 0,
  732. "y": 0,
  733. "z": 0
  734. },
  735. "_lrot": {
  736. "__type__": "cc.Quat",
  737. "x": 0,
  738. "y": 0,
  739. "z": 0,
  740. "w": 1
  741. },
  742. "_lscale": {
  743. "__type__": "cc.Vec3",
  744. "x": 1,
  745. "y": 1,
  746. "z": 1
  747. },
  748. "_mobility": 0,
  749. "_layer": 33554432,
  750. "_euler": {
  751. "__type__": "cc.Vec3",
  752. "x": 0,
  753. "y": 0,
  754. "z": 0
  755. },
  756. "_id": ""
  757. },
  758. {
  759. "__type__": "cc.Node",
  760. "_name": "bg",
  761. "_objFlags": 0,
  762. "__editorExtras__": {},
  763. "_parent": {
  764. "__id__": 32
  765. },
  766. "_children": [
  767. {
  768. "__id__": 34
  769. }
  770. ],
  771. "_active": true,
  772. "_components": [
  773. {
  774. "__id__": 66
  775. },
  776. {
  777. "__id__": 68
  778. }
  779. ],
  780. "_prefab": {
  781. "__id__": 70
  782. },
  783. "_lpos": {
  784. "__type__": "cc.Vec3",
  785. "x": 0,
  786. "y": -28,
  787. "z": 0
  788. },
  789. "_lrot": {
  790. "__type__": "cc.Quat",
  791. "x": 0,
  792. "y": 0,
  793. "z": 0,
  794. "w": 1
  795. },
  796. "_lscale": {
  797. "__type__": "cc.Vec3",
  798. "x": 1,
  799. "y": 1,
  800. "z": 1
  801. },
  802. "_mobility": 0,
  803. "_layer": 33554432,
  804. "_euler": {
  805. "__type__": "cc.Vec3",
  806. "x": 0,
  807. "y": 0,
  808. "z": 0
  809. },
  810. "_id": ""
  811. },
  812. {
  813. "__type__": "cc.Node",
  814. "_name": "sv",
  815. "_objFlags": 0,
  816. "__editorExtras__": {},
  817. "_parent": {
  818. "__id__": 33
  819. },
  820. "_children": [
  821. {
  822. "__id__": 35
  823. }
  824. ],
  825. "_active": true,
  826. "_components": [
  827. {
  828. "__id__": 61
  829. },
  830. {
  831. "__id__": 63
  832. }
  833. ],
  834. "_prefab": {
  835. "__id__": 65
  836. },
  837. "_lpos": {
  838. "__type__": "cc.Vec3",
  839. "x": 0,
  840. "y": 0,
  841. "z": 0
  842. },
  843. "_lrot": {
  844. "__type__": "cc.Quat",
  845. "x": 0,
  846. "y": 0,
  847. "z": 0,
  848. "w": 1
  849. },
  850. "_lscale": {
  851. "__type__": "cc.Vec3",
  852. "x": 1,
  853. "y": 1,
  854. "z": 1
  855. },
  856. "_mobility": 0,
  857. "_layer": 33554432,
  858. "_euler": {
  859. "__type__": "cc.Vec3",
  860. "x": 0,
  861. "y": 0,
  862. "z": 0
  863. },
  864. "_id": ""
  865. },
  866. {
  867. "__type__": "cc.Node",
  868. "_name": "view",
  869. "_objFlags": 0,
  870. "__editorExtras__": {},
  871. "_parent": {
  872. "__id__": 34
  873. },
  874. "_children": [
  875. {
  876. "__id__": 36
  877. }
  878. ],
  879. "_active": true,
  880. "_components": [
  881. {
  882. "__id__": 54
  883. },
  884. {
  885. "__id__": 56
  886. },
  887. {
  888. "__id__": 58
  889. }
  890. ],
  891. "_prefab": {
  892. "__id__": 60
  893. },
  894. "_lpos": {
  895. "__type__": "cc.Vec3",
  896. "x": 0,
  897. "y": 0,
  898. "z": 0
  899. },
  900. "_lrot": {
  901. "__type__": "cc.Quat",
  902. "x": 0,
  903. "y": 0,
  904. "z": 0,
  905. "w": 1
  906. },
  907. "_lscale": {
  908. "__type__": "cc.Vec3",
  909. "x": 1,
  910. "y": 1,
  911. "z": 1
  912. },
  913. "_mobility": 0,
  914. "_layer": 33554432,
  915. "_euler": {
  916. "__type__": "cc.Vec3",
  917. "x": 0,
  918. "y": 0,
  919. "z": 0
  920. },
  921. "_id": ""
  922. },
  923. {
  924. "__type__": "cc.Node",
  925. "_name": "content",
  926. "_objFlags": 0,
  927. "__editorExtras__": {},
  928. "_parent": {
  929. "__id__": 35
  930. },
  931. "_children": [
  932. {
  933. "__id__": 37
  934. },
  935. {
  936. "__id__": 43
  937. }
  938. ],
  939. "_active": true,
  940. "_components": [
  941. {
  942. "__id__": 49
  943. },
  944. {
  945. "__id__": 51
  946. }
  947. ],
  948. "_prefab": {
  949. "__id__": 53
  950. },
  951. "_lpos": {
  952. "__type__": "cc.Vec3",
  953. "x": -10,
  954. "y": 125,
  955. "z": 0
  956. },
  957. "_lrot": {
  958. "__type__": "cc.Quat",
  959. "x": 0,
  960. "y": 0,
  961. "z": 0,
  962. "w": 1
  963. },
  964. "_lscale": {
  965. "__type__": "cc.Vec3",
  966. "x": 1,
  967. "y": 1,
  968. "z": 1
  969. },
  970. "_mobility": 0,
  971. "_layer": 33554432,
  972. "_euler": {
  973. "__type__": "cc.Vec3",
  974. "x": 0,
  975. "y": 0,
  976. "z": 0
  977. },
  978. "_id": ""
  979. },
  980. {
  981. "__type__": "cc.Node",
  982. "_name": "item",
  983. "_objFlags": 0,
  984. "__editorExtras__": {},
  985. "_parent": {
  986. "__id__": 36
  987. },
  988. "_children": [],
  989. "_active": true,
  990. "_components": [
  991. {
  992. "__id__": 38
  993. },
  994. {
  995. "__id__": 40
  996. }
  997. ],
  998. "_prefab": {
  999. "__id__": 42
  1000. },
  1001. "_lpos": {
  1002. "__type__": "cc.Vec3",
  1003. "x": 0,
  1004. "y": -60,
  1005. "z": 0
  1006. },
  1007. "_lrot": {
  1008. "__type__": "cc.Quat",
  1009. "x": 0,
  1010. "y": 0,
  1011. "z": 0,
  1012. "w": 1
  1013. },
  1014. "_lscale": {
  1015. "__type__": "cc.Vec3",
  1016. "x": 1,
  1017. "y": 1,
  1018. "z": 1
  1019. },
  1020. "_mobility": 0,
  1021. "_layer": 33554432,
  1022. "_euler": {
  1023. "__type__": "cc.Vec3",
  1024. "x": 0,
  1025. "y": 0,
  1026. "z": 0
  1027. },
  1028. "_id": ""
  1029. },
  1030. {
  1031. "__type__": "cc.UITransform",
  1032. "_name": "",
  1033. "_objFlags": 0,
  1034. "__editorExtras__": {},
  1035. "node": {
  1036. "__id__": 37
  1037. },
  1038. "_enabled": true,
  1039. "__prefab": {
  1040. "__id__": 39
  1041. },
  1042. "_contentSize": {
  1043. "__type__": "cc.Size",
  1044. "width": 100,
  1045. "height": 100
  1046. },
  1047. "_anchorPoint": {
  1048. "__type__": "cc.Vec2",
  1049. "x": 0.5,
  1050. "y": 0.5
  1051. },
  1052. "_id": ""
  1053. },
  1054. {
  1055. "__type__": "cc.CompPrefabInfo",
  1056. "fileId": "24kmLpQNBFLKIBKmoWQrZ8"
  1057. },
  1058. {
  1059. "__type__": "cc.Sprite",
  1060. "_name": "",
  1061. "_objFlags": 0,
  1062. "__editorExtras__": {},
  1063. "node": {
  1064. "__id__": 37
  1065. },
  1066. "_enabled": true,
  1067. "__prefab": {
  1068. "__id__": 41
  1069. },
  1070. "_customMaterial": null,
  1071. "_srcBlendFactor": 2,
  1072. "_dstBlendFactor": 4,
  1073. "_color": {
  1074. "__type__": "cc.Color",
  1075. "r": 255,
  1076. "g": 255,
  1077. "b": 255,
  1078. "a": 255
  1079. },
  1080. "_spriteFrame": {
  1081. "__uuid__": "14b77576-3bb7-42e7-b2ae-637b2c376a4b@f9941",
  1082. "__expectedType__": "cc.SpriteFrame"
  1083. },
  1084. "_type": 1,
  1085. "_fillType": 0,
  1086. "_sizeMode": 0,
  1087. "_fillCenter": {
  1088. "__type__": "cc.Vec2",
  1089. "x": 0,
  1090. "y": 0
  1091. },
  1092. "_fillStart": 0,
  1093. "_fillRange": 0,
  1094. "_isTrimmedMode": true,
  1095. "_useGrayscale": false,
  1096. "_atlas": null,
  1097. "_id": ""
  1098. },
  1099. {
  1100. "__type__": "cc.CompPrefabInfo",
  1101. "fileId": "8bv43kPdpHOZcICdYTBe9A"
  1102. },
  1103. {
  1104. "__type__": "cc.PrefabInfo",
  1105. "root": {
  1106. "__id__": 1
  1107. },
  1108. "asset": {
  1109. "__id__": 0
  1110. },
  1111. "fileId": "d6WBLzsNBDC5fS2T51383F",
  1112. "instance": null,
  1113. "targetOverrides": null,
  1114. "nestedPrefabInstanceRoots": null
  1115. },
  1116. {
  1117. "__type__": "cc.Node",
  1118. "_name": "item-001",
  1119. "_objFlags": 0,
  1120. "__editorExtras__": {},
  1121. "_parent": {
  1122. "__id__": 36
  1123. },
  1124. "_children": [],
  1125. "_active": true,
  1126. "_components": [
  1127. {
  1128. "__id__": 44
  1129. },
  1130. {
  1131. "__id__": 46
  1132. }
  1133. ],
  1134. "_prefab": {
  1135. "__id__": 48
  1136. },
  1137. "_lpos": {
  1138. "__type__": "cc.Vec3",
  1139. "x": 0,
  1140. "y": -170,
  1141. "z": 0
  1142. },
  1143. "_lrot": {
  1144. "__type__": "cc.Quat",
  1145. "x": 0,
  1146. "y": 0,
  1147. "z": 0,
  1148. "w": 1
  1149. },
  1150. "_lscale": {
  1151. "__type__": "cc.Vec3",
  1152. "x": 1,
  1153. "y": 1,
  1154. "z": 1
  1155. },
  1156. "_mobility": 0,
  1157. "_layer": 33554432,
  1158. "_euler": {
  1159. "__type__": "cc.Vec3",
  1160. "x": 0,
  1161. "y": 0,
  1162. "z": 0
  1163. },
  1164. "_id": ""
  1165. },
  1166. {
  1167. "__type__": "cc.UITransform",
  1168. "_name": "",
  1169. "_objFlags": 0,
  1170. "__editorExtras__": {},
  1171. "node": {
  1172. "__id__": 43
  1173. },
  1174. "_enabled": true,
  1175. "__prefab": {
  1176. "__id__": 45
  1177. },
  1178. "_contentSize": {
  1179. "__type__": "cc.Size",
  1180. "width": 100,
  1181. "height": 100
  1182. },
  1183. "_anchorPoint": {
  1184. "__type__": "cc.Vec2",
  1185. "x": 0.5,
  1186. "y": 0.5
  1187. },
  1188. "_id": ""
  1189. },
  1190. {
  1191. "__type__": "cc.CompPrefabInfo",
  1192. "fileId": "beoPY9N5tH0b2uEmPhhqey"
  1193. },
  1194. {
  1195. "__type__": "cc.Sprite",
  1196. "_name": "",
  1197. "_objFlags": 0,
  1198. "__editorExtras__": {},
  1199. "node": {
  1200. "__id__": 43
  1201. },
  1202. "_enabled": true,
  1203. "__prefab": {
  1204. "__id__": 47
  1205. },
  1206. "_customMaterial": null,
  1207. "_srcBlendFactor": 2,
  1208. "_dstBlendFactor": 4,
  1209. "_color": {
  1210. "__type__": "cc.Color",
  1211. "r": 255,
  1212. "g": 255,
  1213. "b": 255,
  1214. "a": 255
  1215. },
  1216. "_spriteFrame": {
  1217. "__uuid__": "14b77576-3bb7-42e7-b2ae-637b2c376a4b@f9941",
  1218. "__expectedType__": "cc.SpriteFrame"
  1219. },
  1220. "_type": 1,
  1221. "_fillType": 0,
  1222. "_sizeMode": 0,
  1223. "_fillCenter": {
  1224. "__type__": "cc.Vec2",
  1225. "x": 0,
  1226. "y": 0
  1227. },
  1228. "_fillStart": 0,
  1229. "_fillRange": 0,
  1230. "_isTrimmedMode": true,
  1231. "_useGrayscale": false,
  1232. "_atlas": null,
  1233. "_id": ""
  1234. },
  1235. {
  1236. "__type__": "cc.CompPrefabInfo",
  1237. "fileId": "16CXtbDpFPiqQ5ZPoXKuU6"
  1238. },
  1239. {
  1240. "__type__": "cc.PrefabInfo",
  1241. "root": {
  1242. "__id__": 1
  1243. },
  1244. "asset": {
  1245. "__id__": 0
  1246. },
  1247. "fileId": "eaHGs5NxFMWq7RVgFQhkpu",
  1248. "instance": null,
  1249. "targetOverrides": null,
  1250. "nestedPrefabInstanceRoots": null
  1251. },
  1252. {
  1253. "__type__": "cc.UITransform",
  1254. "_name": "",
  1255. "_objFlags": 0,
  1256. "__editorExtras__": {},
  1257. "node": {
  1258. "__id__": 36
  1259. },
  1260. "_enabled": true,
  1261. "__prefab": {
  1262. "__id__": 50
  1263. },
  1264. "_contentSize": {
  1265. "__type__": "cc.Size",
  1266. "width": 220,
  1267. "height": 230
  1268. },
  1269. "_anchorPoint": {
  1270. "__type__": "cc.Vec2",
  1271. "x": 0.5,
  1272. "y": 1
  1273. },
  1274. "_id": ""
  1275. },
  1276. {
  1277. "__type__": "cc.CompPrefabInfo",
  1278. "fileId": "aatlNRIXVJZaynxUQSWT34"
  1279. },
  1280. {
  1281. "__type__": "cc.Layout",
  1282. "_name": "",
  1283. "_objFlags": 0,
  1284. "__editorExtras__": {},
  1285. "node": {
  1286. "__id__": 36
  1287. },
  1288. "_enabled": true,
  1289. "__prefab": {
  1290. "__id__": 52
  1291. },
  1292. "_resizeMode": 1,
  1293. "_layoutType": 2,
  1294. "_cellSize": {
  1295. "__type__": "cc.Size",
  1296. "width": 40,
  1297. "height": 40
  1298. },
  1299. "_startAxis": 0,
  1300. "_paddingLeft": 0,
  1301. "_paddingRight": 0,
  1302. "_paddingTop": 10,
  1303. "_paddingBottom": 10,
  1304. "_spacingX": 0,
  1305. "_spacingY": 10,
  1306. "_verticalDirection": 1,
  1307. "_horizontalDirection": 0,
  1308. "_constraint": 0,
  1309. "_constraintNum": 2,
  1310. "_affectedByScale": false,
  1311. "_isAlign": false,
  1312. "_id": ""
  1313. },
  1314. {
  1315. "__type__": "cc.CompPrefabInfo",
  1316. "fileId": "abWaAHXKFB2oLMRbkQiKdZ"
  1317. },
  1318. {
  1319. "__type__": "cc.PrefabInfo",
  1320. "root": {
  1321. "__id__": 1
  1322. },
  1323. "asset": {
  1324. "__id__": 0
  1325. },
  1326. "fileId": "f1swJKCl5PAaqRC+A67v+F",
  1327. "instance": null,
  1328. "targetOverrides": null,
  1329. "nestedPrefabInstanceRoots": null
  1330. },
  1331. {
  1332. "__type__": "cc.UITransform",
  1333. "_name": "",
  1334. "_objFlags": 0,
  1335. "__editorExtras__": {},
  1336. "node": {
  1337. "__id__": 35
  1338. },
  1339. "_enabled": true,
  1340. "__prefab": {
  1341. "__id__": 55
  1342. },
  1343. "_contentSize": {
  1344. "__type__": "cc.Size",
  1345. "width": 630,
  1346. "height": 810
  1347. },
  1348. "_anchorPoint": {
  1349. "__type__": "cc.Vec2",
  1350. "x": 0.5,
  1351. "y": 0.5
  1352. },
  1353. "_id": ""
  1354. },
  1355. {
  1356. "__type__": "cc.CompPrefabInfo",
  1357. "fileId": "15XzeGYABNyYh9Cj6+uSNU"
  1358. },
  1359. {
  1360. "__type__": "cc.Mask",
  1361. "_name": "",
  1362. "_objFlags": 0,
  1363. "__editorExtras__": {},
  1364. "node": {
  1365. "__id__": 35
  1366. },
  1367. "_enabled": true,
  1368. "__prefab": {
  1369. "__id__": 57
  1370. },
  1371. "_type": 0,
  1372. "_inverted": false,
  1373. "_segments": 64,
  1374. "_alphaThreshold": 0.1,
  1375. "_id": ""
  1376. },
  1377. {
  1378. "__type__": "cc.CompPrefabInfo",
  1379. "fileId": "f98arx5spLdanIniYDNXUt"
  1380. },
  1381. {
  1382. "__type__": "cc.Graphics",
  1383. "_name": "",
  1384. "_objFlags": 0,
  1385. "__editorExtras__": {},
  1386. "node": {
  1387. "__id__": 35
  1388. },
  1389. "_enabled": true,
  1390. "__prefab": {
  1391. "__id__": 59
  1392. },
  1393. "_customMaterial": null,
  1394. "_srcBlendFactor": 2,
  1395. "_dstBlendFactor": 4,
  1396. "_color": {
  1397. "__type__": "cc.Color",
  1398. "r": 255,
  1399. "g": 255,
  1400. "b": 255,
  1401. "a": 255
  1402. },
  1403. "_lineWidth": 1,
  1404. "_strokeColor": {
  1405. "__type__": "cc.Color",
  1406. "r": 0,
  1407. "g": 0,
  1408. "b": 0,
  1409. "a": 255
  1410. },
  1411. "_lineJoin": 2,
  1412. "_lineCap": 0,
  1413. "_fillColor": {
  1414. "__type__": "cc.Color",
  1415. "r": 255,
  1416. "g": 255,
  1417. "b": 255,
  1418. "a": 0
  1419. },
  1420. "_miterLimit": 10,
  1421. "_id": ""
  1422. },
  1423. {
  1424. "__type__": "cc.CompPrefabInfo",
  1425. "fileId": "3fX3znegFMyo6n2+i+gChq"
  1426. },
  1427. {
  1428. "__type__": "cc.PrefabInfo",
  1429. "root": {
  1430. "__id__": 1
  1431. },
  1432. "asset": {
  1433. "__id__": 0
  1434. },
  1435. "fileId": "f5z9splVJHrrGsNojQHUw2",
  1436. "instance": null,
  1437. "targetOverrides": null,
  1438. "nestedPrefabInstanceRoots": null
  1439. },
  1440. {
  1441. "__type__": "cc.UITransform",
  1442. "_name": "",
  1443. "_objFlags": 0,
  1444. "__editorExtras__": {},
  1445. "node": {
  1446. "__id__": 34
  1447. },
  1448. "_enabled": true,
  1449. "__prefab": {
  1450. "__id__": 62
  1451. },
  1452. "_contentSize": {
  1453. "__type__": "cc.Size",
  1454. "width": 630,
  1455. "height": 810
  1456. },
  1457. "_anchorPoint": {
  1458. "__type__": "cc.Vec2",
  1459. "x": 0.5,
  1460. "y": 0.5
  1461. },
  1462. "_id": ""
  1463. },
  1464. {
  1465. "__type__": "cc.CompPrefabInfo",
  1466. "fileId": "28WIWs2cJGV6O8cLP21Ovf"
  1467. },
  1468. {
  1469. "__type__": "cc.ScrollView",
  1470. "_name": "",
  1471. "_objFlags": 0,
  1472. "__editorExtras__": {},
  1473. "node": {
  1474. "__id__": 34
  1475. },
  1476. "_enabled": true,
  1477. "__prefab": {
  1478. "__id__": 64
  1479. },
  1480. "bounceDuration": 0.23,
  1481. "brake": 0.75,
  1482. "elastic": true,
  1483. "inertia": true,
  1484. "horizontal": false,
  1485. "vertical": true,
  1486. "cancelInnerEvents": true,
  1487. "scrollEvents": [],
  1488. "_content": {
  1489. "__id__": 36
  1490. },
  1491. "_horizontalScrollBar": null,
  1492. "_verticalScrollBar": null,
  1493. "_id": ""
  1494. },
  1495. {
  1496. "__type__": "cc.CompPrefabInfo",
  1497. "fileId": "6b5h0AnzFINqazDwffbD/J"
  1498. },
  1499. {
  1500. "__type__": "cc.PrefabInfo",
  1501. "root": {
  1502. "__id__": 1
  1503. },
  1504. "asset": {
  1505. "__id__": 0
  1506. },
  1507. "fileId": "29ZXS0XTRG4IMGNZ0Rkkpd",
  1508. "instance": null,
  1509. "targetOverrides": null,
  1510. "nestedPrefabInstanceRoots": null
  1511. },
  1512. {
  1513. "__type__": "cc.UITransform",
  1514. "_name": "",
  1515. "_objFlags": 0,
  1516. "__editorExtras__": {},
  1517. "node": {
  1518. "__id__": 33
  1519. },
  1520. "_enabled": true,
  1521. "__prefab": {
  1522. "__id__": 67
  1523. },
  1524. "_contentSize": {
  1525. "__type__": "cc.Size",
  1526. "width": 658,
  1527. "height": 840
  1528. },
  1529. "_anchorPoint": {
  1530. "__type__": "cc.Vec2",
  1531. "x": 0.5,
  1532. "y": 0.5
  1533. },
  1534. "_id": ""
  1535. },
  1536. {
  1537. "__type__": "cc.CompPrefabInfo",
  1538. "fileId": "30LKmnA5dJvpXo6L4uI1Q7"
  1539. },
  1540. {
  1541. "__type__": "cc.Sprite",
  1542. "_name": "",
  1543. "_objFlags": 0,
  1544. "__editorExtras__": {},
  1545. "node": {
  1546. "__id__": 33
  1547. },
  1548. "_enabled": true,
  1549. "__prefab": {
  1550. "__id__": 69
  1551. },
  1552. "_customMaterial": null,
  1553. "_srcBlendFactor": 2,
  1554. "_dstBlendFactor": 4,
  1555. "_color": {
  1556. "__type__": "cc.Color",
  1557. "r": 255,
  1558. "g": 255,
  1559. "b": 255,
  1560. "a": 255
  1561. },
  1562. "_spriteFrame": {
  1563. "__uuid__": "3e15eeb6-df20-467e-aa83-5f59e2762632@f9941",
  1564. "__expectedType__": "cc.SpriteFrame"
  1565. },
  1566. "_type": 1,
  1567. "_fillType": 0,
  1568. "_sizeMode": 0,
  1569. "_fillCenter": {
  1570. "__type__": "cc.Vec2",
  1571. "x": 0,
  1572. "y": 0
  1573. },
  1574. "_fillStart": 0,
  1575. "_fillRange": 0,
  1576. "_isTrimmedMode": true,
  1577. "_useGrayscale": false,
  1578. "_atlas": null,
  1579. "_id": ""
  1580. },
  1581. {
  1582. "__type__": "cc.CompPrefabInfo",
  1583. "fileId": "66e+o4KudGjo6Pm/LILqhl"
  1584. },
  1585. {
  1586. "__type__": "cc.PrefabInfo",
  1587. "root": {
  1588. "__id__": 1
  1589. },
  1590. "asset": {
  1591. "__id__": 0
  1592. },
  1593. "fileId": "efmZiM0rxFPYiSEAu1SyGr",
  1594. "instance": null,
  1595. "targetOverrides": null,
  1596. "nestedPrefabInstanceRoots": null
  1597. },
  1598. {
  1599. "__type__": "cc.UITransform",
  1600. "_name": "",
  1601. "_objFlags": 0,
  1602. "__editorExtras__": {},
  1603. "node": {
  1604. "__id__": 32
  1605. },
  1606. "_enabled": true,
  1607. "__prefab": {
  1608. "__id__": 72
  1609. },
  1610. "_contentSize": {
  1611. "__type__": "cc.Size",
  1612. "width": 704,
  1613. "height": 952
  1614. },
  1615. "_anchorPoint": {
  1616. "__type__": "cc.Vec2",
  1617. "x": 0.5,
  1618. "y": 0.5
  1619. },
  1620. "_id": ""
  1621. },
  1622. {
  1623. "__type__": "cc.CompPrefabInfo",
  1624. "fileId": "58SY+x0rlNIo6UON3U1Y++"
  1625. },
  1626. {
  1627. "__type__": "cc.Sprite",
  1628. "_name": "",
  1629. "_objFlags": 0,
  1630. "__editorExtras__": {},
  1631. "node": {
  1632. "__id__": 32
  1633. },
  1634. "_enabled": true,
  1635. "__prefab": {
  1636. "__id__": 74
  1637. },
  1638. "_customMaterial": null,
  1639. "_srcBlendFactor": 2,
  1640. "_dstBlendFactor": 4,
  1641. "_color": {
  1642. "__type__": "cc.Color",
  1643. "r": 255,
  1644. "g": 255,
  1645. "b": 255,
  1646. "a": 255
  1647. },
  1648. "_spriteFrame": {
  1649. "__uuid__": "a4e9b2b4-69c4-49c9-97d7-1f9aa4d7418c@f9941",
  1650. "__expectedType__": "cc.SpriteFrame"
  1651. },
  1652. "_type": 1,
  1653. "_fillType": 0,
  1654. "_sizeMode": 0,
  1655. "_fillCenter": {
  1656. "__type__": "cc.Vec2",
  1657. "x": 0,
  1658. "y": 0
  1659. },
  1660. "_fillStart": 0,
  1661. "_fillRange": 0,
  1662. "_isTrimmedMode": true,
  1663. "_useGrayscale": false,
  1664. "_atlas": null,
  1665. "_id": ""
  1666. },
  1667. {
  1668. "__type__": "cc.CompPrefabInfo",
  1669. "fileId": "05y4QLm2NMhKvIUFPerk7S"
  1670. },
  1671. {
  1672. "__type__": "cc.Widget",
  1673. "_name": "",
  1674. "_objFlags": 0,
  1675. "__editorExtras__": {},
  1676. "node": {
  1677. "__id__": 32
  1678. },
  1679. "_enabled": true,
  1680. "__prefab": {
  1681. "__id__": 76
  1682. },
  1683. "_alignFlags": 18,
  1684. "_target": null,
  1685. "_left": 0,
  1686. "_right": 0,
  1687. "_top": 0,
  1688. "_bottom": 0,
  1689. "_horizontalCenter": 0,
  1690. "_verticalCenter": 0,
  1691. "_isAbsLeft": true,
  1692. "_isAbsRight": true,
  1693. "_isAbsTop": true,
  1694. "_isAbsBottom": true,
  1695. "_isAbsHorizontalCenter": true,
  1696. "_isAbsVerticalCenter": true,
  1697. "_originalWidth": 0,
  1698. "_originalHeight": 0,
  1699. "_alignMode": 2,
  1700. "_lockFlags": 0,
  1701. "_id": ""
  1702. },
  1703. {
  1704. "__type__": "cc.CompPrefabInfo",
  1705. "fileId": "36dYVU8CdAo4Onx+ZVi6br"
  1706. },
  1707. {
  1708. "__type__": "cc.BlockInputEvents",
  1709. "_name": "",
  1710. "_objFlags": 0,
  1711. "__editorExtras__": {},
  1712. "node": {
  1713. "__id__": 32
  1714. },
  1715. "_enabled": true,
  1716. "__prefab": {
  1717. "__id__": 78
  1718. },
  1719. "_id": ""
  1720. },
  1721. {
  1722. "__type__": "cc.CompPrefabInfo",
  1723. "fileId": "d7Ub2nJAxJ9KtrhQGI33jW"
  1724. },
  1725. {
  1726. "__type__": "cc.UIOpacity",
  1727. "_name": "",
  1728. "_objFlags": 0,
  1729. "__editorExtras__": {},
  1730. "node": {
  1731. "__id__": 32
  1732. },
  1733. "_enabled": true,
  1734. "__prefab": {
  1735. "__id__": 80
  1736. },
  1737. "_opacity": 255,
  1738. "_id": ""
  1739. },
  1740. {
  1741. "__type__": "cc.CompPrefabInfo",
  1742. "fileId": "69L4TUhi5IgodCf6V29oNp"
  1743. },
  1744. {
  1745. "__type__": "cc.PrefabInfo",
  1746. "root": {
  1747. "__id__": 1
  1748. },
  1749. "asset": {
  1750. "__id__": 0
  1751. },
  1752. "fileId": "16osAoBkdHlKLt3lxNjBsc",
  1753. "instance": null,
  1754. "targetOverrides": null,
  1755. "nestedPrefabInstanceRoots": null
  1756. },
  1757. {
  1758. "__type__": "cc.UITransform",
  1759. "_name": "",
  1760. "_objFlags": 0,
  1761. "__editorExtras__": {},
  1762. "node": {
  1763. "__id__": 1
  1764. },
  1765. "_enabled": true,
  1766. "__prefab": {
  1767. "__id__": 83
  1768. },
  1769. "_contentSize": {
  1770. "__type__": "cc.Size",
  1771. "width": 750,
  1772. "height": 1334
  1773. },
  1774. "_anchorPoint": {
  1775. "__type__": "cc.Vec2",
  1776. "x": 0.5,
  1777. "y": 0.5
  1778. },
  1779. "_id": ""
  1780. },
  1781. {
  1782. "__type__": "cc.CompPrefabInfo",
  1783. "fileId": "55Xtfq6iZLi4VV+eKSX0+l"
  1784. },
  1785. {
  1786. "__type__": "cc.Widget",
  1787. "_name": "",
  1788. "_objFlags": 0,
  1789. "__editorExtras__": {},
  1790. "node": {
  1791. "__id__": 1
  1792. },
  1793. "_enabled": true,
  1794. "__prefab": {
  1795. "__id__": 85
  1796. },
  1797. "_alignFlags": 45,
  1798. "_target": null,
  1799. "_left": 0,
  1800. "_right": 0,
  1801. "_top": 0,
  1802. "_bottom": 0,
  1803. "_horizontalCenter": 0,
  1804. "_verticalCenter": 0,
  1805. "_isAbsLeft": true,
  1806. "_isAbsRight": true,
  1807. "_isAbsTop": true,
  1808. "_isAbsBottom": true,
  1809. "_isAbsHorizontalCenter": true,
  1810. "_isAbsVerticalCenter": true,
  1811. "_originalWidth": 100,
  1812. "_originalHeight": 100,
  1813. "_alignMode": 2,
  1814. "_lockFlags": 0,
  1815. "_id": ""
  1816. },
  1817. {
  1818. "__type__": "cc.CompPrefabInfo",
  1819. "fileId": "66b+7e7GRBzYBxbdeHY31r"
  1820. },
  1821. {
  1822. "__type__": "cc.Animation",
  1823. "_name": "",
  1824. "_objFlags": 0,
  1825. "__editorExtras__": {},
  1826. "node": {
  1827. "__id__": 1
  1828. },
  1829. "_enabled": true,
  1830. "__prefab": {
  1831. "__id__": 87
  1832. },
  1833. "playOnLoad": false,
  1834. "_clips": [
  1835. {
  1836. "__uuid__": "89470c00-b399-43af-90c8-f03a38385103",
  1837. "__expectedType__": "cc.AnimationClip"
  1838. },
  1839. {
  1840. "__uuid__": "e0837eb3-8f98-4446-ae76-8a15cc5efaf1",
  1841. "__expectedType__": "cc.AnimationClip"
  1842. }
  1843. ],
  1844. "_defaultClip": null,
  1845. "_id": ""
  1846. },
  1847. {
  1848. "__type__": "cc.CompPrefabInfo",
  1849. "fileId": "83iuxSJuJIRIFlJVAZD8ix"
  1850. },
  1851. {
  1852. "__type__": "cc.PrefabInfo",
  1853. "root": {
  1854. "__id__": 1
  1855. },
  1856. "asset": {
  1857. "__id__": 0
  1858. },
  1859. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  1860. "instance": null,
  1861. "targetOverrides": null
  1862. }
  1863. ]