SetSex.prefab 34 KB

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