bag_avatar_preview.prefab 34 KB

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