kind_tips.prefab 35 KB

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