KindTips.prefab 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "KindTips",
  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": "KindTips",
  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__": 108
  32. },
  33. {
  34. "__id__": 110
  35. },
  36. {
  37. "__id__": 112
  38. }
  39. ],
  40. "_prefab": {
  41. "__id__": 114
  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__": 71
  301. },
  302. {
  303. "__id__": 79
  304. },
  305. {
  306. "__id__": 93
  307. }
  308. ],
  309. "_active": true,
  310. "_components": [
  311. {
  312. "__id__": 103
  313. },
  314. {
  315. "__id__": 105
  316. }
  317. ],
  318. "_prefab": {
  319. "__id__": 107
  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": "ScrollView",
  920. "_objFlags": 0,
  921. "__editorExtras__": {},
  922. "_parent": {
  923. "__id__": 18
  924. },
  925. "_children": [
  926. {
  927. "__id__": 44
  928. }
  929. ],
  930. "_active": true,
  931. "_components": [
  932. {
  933. "__id__": 64
  934. },
  935. {
  936. "__id__": 66
  937. },
  938. {
  939. "__id__": 68
  940. }
  941. ],
  942. "_prefab": {
  943. "__id__": 70
  944. },
  945. "_lpos": {
  946. "__type__": "cc.Vec3",
  947. "x": 0,
  948. "y": 377.834,
  949. "z": 0
  950. },
  951. "_lrot": {
  952. "__type__": "cc.Quat",
  953. "x": 0,
  954. "y": 0,
  955. "z": 0,
  956. "w": 1
  957. },
  958. "_lscale": {
  959. "__type__": "cc.Vec3",
  960. "x": 1,
  961. "y": 1,
  962. "z": 1
  963. },
  964. "_mobility": 0,
  965. "_layer": 33554432,
  966. "_euler": {
  967. "__type__": "cc.Vec3",
  968. "x": 0,
  969. "y": 0,
  970. "z": 0
  971. },
  972. "_id": ""
  973. },
  974. {
  975. "__type__": "cc.Node",
  976. "_name": "view",
  977. "_objFlags": 0,
  978. "__editorExtras__": {},
  979. "_parent": {
  980. "__id__": 43
  981. },
  982. "_children": [
  983. {
  984. "__id__": 45
  985. }
  986. ],
  987. "_active": true,
  988. "_components": [
  989. {
  990. "__id__": 57
  991. },
  992. {
  993. "__id__": 59
  994. },
  995. {
  996. "__id__": 61
  997. }
  998. ],
  999. "_prefab": {
  1000. "__id__": 63
  1001. },
  1002. "_lpos": {
  1003. "__type__": "cc.Vec3",
  1004. "x": 0,
  1005. "y": 0,
  1006. "z": 0
  1007. },
  1008. "_lrot": {
  1009. "__type__": "cc.Quat",
  1010. "x": 0,
  1011. "y": 0,
  1012. "z": 0,
  1013. "w": 1
  1014. },
  1015. "_lscale": {
  1016. "__type__": "cc.Vec3",
  1017. "x": 1,
  1018. "y": 1,
  1019. "z": 1
  1020. },
  1021. "_mobility": 0,
  1022. "_layer": 33554432,
  1023. "_euler": {
  1024. "__type__": "cc.Vec3",
  1025. "x": 0,
  1026. "y": 0,
  1027. "z": 0
  1028. },
  1029. "_id": ""
  1030. },
  1031. {
  1032. "__type__": "cc.Node",
  1033. "_name": "content",
  1034. "_objFlags": 0,
  1035. "__editorExtras__": {},
  1036. "_parent": {
  1037. "__id__": 44
  1038. },
  1039. "_children": [
  1040. {
  1041. "__id__": 46
  1042. }
  1043. ],
  1044. "_active": true,
  1045. "_components": [
  1046. {
  1047. "__id__": 52
  1048. },
  1049. {
  1050. "__id__": 54
  1051. }
  1052. ],
  1053. "_prefab": {
  1054. "__id__": 56
  1055. },
  1056. "_lpos": {
  1057. "__type__": "cc.Vec3",
  1058. "x": 0,
  1059. "y": 0.012,
  1060. "z": 0
  1061. },
  1062. "_lrot": {
  1063. "__type__": "cc.Quat",
  1064. "x": 0,
  1065. "y": 0,
  1066. "z": 0,
  1067. "w": 1
  1068. },
  1069. "_lscale": {
  1070. "__type__": "cc.Vec3",
  1071. "x": 1,
  1072. "y": 1,
  1073. "z": 1
  1074. },
  1075. "_mobility": 0,
  1076. "_layer": 33554432,
  1077. "_euler": {
  1078. "__type__": "cc.Vec3",
  1079. "x": 0,
  1080. "y": 0,
  1081. "z": 0
  1082. },
  1083. "_id": ""
  1084. },
  1085. {
  1086. "__type__": "cc.Node",
  1087. "_name": "tips_1",
  1088. "_objFlags": 0,
  1089. "__editorExtras__": {},
  1090. "_parent": {
  1091. "__id__": 45
  1092. },
  1093. "_children": [],
  1094. "_active": true,
  1095. "_components": [
  1096. {
  1097. "__id__": 47
  1098. },
  1099. {
  1100. "__id__": 49
  1101. }
  1102. ],
  1103. "_prefab": {
  1104. "__id__": 51
  1105. },
  1106. "_lpos": {
  1107. "__type__": "cc.Vec3",
  1108. "x": 0.75,
  1109. "y": -265.2,
  1110. "z": 0
  1111. },
  1112. "_lrot": {
  1113. "__type__": "cc.Quat",
  1114. "x": 0,
  1115. "y": 0,
  1116. "z": 0,
  1117. "w": 1
  1118. },
  1119. "_lscale": {
  1120. "__type__": "cc.Vec3",
  1121. "x": 1,
  1122. "y": 1,
  1123. "z": 1
  1124. },
  1125. "_mobility": 0,
  1126. "_layer": 33554432,
  1127. "_euler": {
  1128. "__type__": "cc.Vec3",
  1129. "x": 0,
  1130. "y": 0,
  1131. "z": 0
  1132. },
  1133. "_id": ""
  1134. },
  1135. {
  1136. "__type__": "cc.UITransform",
  1137. "_name": "",
  1138. "_objFlags": 0,
  1139. "__editorExtras__": {},
  1140. "node": {
  1141. "__id__": 46
  1142. },
  1143. "_enabled": true,
  1144. "__prefab": {
  1145. "__id__": 48
  1146. },
  1147. "_contentSize": {
  1148. "__type__": "cc.Size",
  1149. "width": 560,
  1150. "height": 530.4
  1151. },
  1152. "_anchorPoint": {
  1153. "__type__": "cc.Vec2",
  1154. "x": 0.5,
  1155. "y": 0.5
  1156. },
  1157. "_id": ""
  1158. },
  1159. {
  1160. "__type__": "cc.CompPrefabInfo",
  1161. "fileId": "3cpS+micxAI7UdhbEmJumx"
  1162. },
  1163. {
  1164. "__type__": "cc.RichText",
  1165. "_name": "",
  1166. "_objFlags": 0,
  1167. "__editorExtras__": {},
  1168. "node": {
  1169. "__id__": 46
  1170. },
  1171. "_enabled": true,
  1172. "__prefab": {
  1173. "__id__": 50
  1174. },
  1175. "_lineHeight": 40,
  1176. "_string": "亲爱的用户,欢迎你信任并使用消消金块,我们依据相关法律制定了《用户协议》和《隐私政策》帮助你了解我们收集、使用、储存和共享个人信息的情况,请你在点击之前仔细阅读并充分理解相关条款,其中重点条款已为你标注,方便你了解自己的相关权利,我们将通过《隐私政策》向你说明: \n1.你在使用我们产品或服务时,将会提供与具体功能相关的个人信息(可能涉及地理位置、读取通讯录、运动记录、位置信息等),如您不希望开启相关功能,可停止使用对应服务,我们将不会开启与用户使用的服务无关的功能。",
  1177. "_horizontalAlign": 0,
  1178. "_verticalAlign": 0,
  1179. "_fontSize": 28,
  1180. "_fontColor": {
  1181. "__type__": "cc.Color",
  1182. "r": 136,
  1183. "g": 72,
  1184. "b": 21,
  1185. "a": 255
  1186. },
  1187. "_maxWidth": 560,
  1188. "_fontFamily": "Arial",
  1189. "_font": null,
  1190. "_isSystemFontUsed": true,
  1191. "_userDefinedFont": null,
  1192. "_cacheMode": 0,
  1193. "_imageAtlas": null,
  1194. "_handleTouchEvent": true,
  1195. "_id": ""
  1196. },
  1197. {
  1198. "__type__": "cc.CompPrefabInfo",
  1199. "fileId": "e8eAn2R4xF4YGdsT1dKK85"
  1200. },
  1201. {
  1202. "__type__": "cc.PrefabInfo",
  1203. "root": {
  1204. "__id__": 1
  1205. },
  1206. "asset": {
  1207. "__id__": 0
  1208. },
  1209. "fileId": "8blNg8BMtFDbj06Z89F5mg",
  1210. "nestedPrefabInstanceRoots": null
  1211. },
  1212. {
  1213. "__type__": "cc.UITransform",
  1214. "_name": "",
  1215. "_objFlags": 0,
  1216. "__editorExtras__": {},
  1217. "node": {
  1218. "__id__": 45
  1219. },
  1220. "_enabled": true,
  1221. "__prefab": {
  1222. "__id__": 53
  1223. },
  1224. "_contentSize": {
  1225. "__type__": "cc.Size",
  1226. "width": 570,
  1227. "height": 430
  1228. },
  1229. "_anchorPoint": {
  1230. "__type__": "cc.Vec2",
  1231. "x": 0.5,
  1232. "y": 1
  1233. },
  1234. "_id": ""
  1235. },
  1236. {
  1237. "__type__": "cc.CompPrefabInfo",
  1238. "fileId": "0eUgc6pplBQL1zgM2R5K+1"
  1239. },
  1240. {
  1241. "__type__": "cc.Layout",
  1242. "_name": "",
  1243. "_objFlags": 0,
  1244. "__editorExtras__": {},
  1245. "node": {
  1246. "__id__": 45
  1247. },
  1248. "_enabled": true,
  1249. "__prefab": {
  1250. "__id__": 55
  1251. },
  1252. "_resizeMode": 0,
  1253. "_layoutType": 2,
  1254. "_cellSize": {
  1255. "__type__": "cc.Size",
  1256. "width": 40,
  1257. "height": 40
  1258. },
  1259. "_startAxis": 0,
  1260. "_paddingLeft": 0,
  1261. "_paddingRight": 0,
  1262. "_paddingTop": 0,
  1263. "_paddingBottom": 0,
  1264. "_spacingX": 0,
  1265. "_spacingY": 0,
  1266. "_verticalDirection": 1,
  1267. "_horizontalDirection": 0,
  1268. "_constraint": 0,
  1269. "_constraintNum": 2,
  1270. "_affectedByScale": false,
  1271. "_isAlign": false,
  1272. "_id": ""
  1273. },
  1274. {
  1275. "__type__": "cc.CompPrefabInfo",
  1276. "fileId": "5bZI3n3bVE668km78Yyhpv"
  1277. },
  1278. {
  1279. "__type__": "cc.PrefabInfo",
  1280. "root": {
  1281. "__id__": 1
  1282. },
  1283. "asset": {
  1284. "__id__": 0
  1285. },
  1286. "fileId": "186sDl8c9CCadv+gMDZH+R",
  1287. "instance": null,
  1288. "targetOverrides": null,
  1289. "nestedPrefabInstanceRoots": null
  1290. },
  1291. {
  1292. "__type__": "cc.UITransform",
  1293. "_name": "",
  1294. "_objFlags": 0,
  1295. "__editorExtras__": {},
  1296. "node": {
  1297. "__id__": 44
  1298. },
  1299. "_enabled": true,
  1300. "__prefab": {
  1301. "__id__": 58
  1302. },
  1303. "_contentSize": {
  1304. "__type__": "cc.Size",
  1305. "width": 570,
  1306. "height": 430
  1307. },
  1308. "_anchorPoint": {
  1309. "__type__": "cc.Vec2",
  1310. "x": 0.5,
  1311. "y": 1
  1312. },
  1313. "_id": ""
  1314. },
  1315. {
  1316. "__type__": "cc.CompPrefabInfo",
  1317. "fileId": "e4kqkkxRZBXr5nVh5H+5/Q"
  1318. },
  1319. {
  1320. "__type__": "cc.Mask",
  1321. "_name": "",
  1322. "_objFlags": 0,
  1323. "__editorExtras__": {},
  1324. "node": {
  1325. "__id__": 44
  1326. },
  1327. "_enabled": true,
  1328. "__prefab": {
  1329. "__id__": 60
  1330. },
  1331. "_type": 0,
  1332. "_inverted": false,
  1333. "_segments": 64,
  1334. "_alphaThreshold": 0.1,
  1335. "_id": ""
  1336. },
  1337. {
  1338. "__type__": "cc.CompPrefabInfo",
  1339. "fileId": "banw9suWhKzZrAM0ztEnTe"
  1340. },
  1341. {
  1342. "__type__": "cc.Graphics",
  1343. "_name": "",
  1344. "_objFlags": 0,
  1345. "__editorExtras__": {},
  1346. "node": {
  1347. "__id__": 44
  1348. },
  1349. "_enabled": true,
  1350. "__prefab": {
  1351. "__id__": 62
  1352. },
  1353. "_customMaterial": null,
  1354. "_srcBlendFactor": 2,
  1355. "_dstBlendFactor": 4,
  1356. "_color": {
  1357. "__type__": "cc.Color",
  1358. "r": 255,
  1359. "g": 255,
  1360. "b": 255,
  1361. "a": 255
  1362. },
  1363. "_lineWidth": 1,
  1364. "_strokeColor": {
  1365. "__type__": "cc.Color",
  1366. "r": 0,
  1367. "g": 0,
  1368. "b": 0,
  1369. "a": 255
  1370. },
  1371. "_lineJoin": 2,
  1372. "_lineCap": 0,
  1373. "_fillColor": {
  1374. "__type__": "cc.Color",
  1375. "r": 255,
  1376. "g": 255,
  1377. "b": 255,
  1378. "a": 0
  1379. },
  1380. "_miterLimit": 10,
  1381. "_id": ""
  1382. },
  1383. {
  1384. "__type__": "cc.CompPrefabInfo",
  1385. "fileId": "3auBpWFklCnabhhtLUHHhP"
  1386. },
  1387. {
  1388. "__type__": "cc.PrefabInfo",
  1389. "root": {
  1390. "__id__": 1
  1391. },
  1392. "asset": {
  1393. "__id__": 0
  1394. },
  1395. "fileId": "5dPVB1KTNMm6amZlH7Xw+8",
  1396. "instance": null,
  1397. "targetOverrides": null,
  1398. "nestedPrefabInstanceRoots": null
  1399. },
  1400. {
  1401. "__type__": "cc.UITransform",
  1402. "_name": "",
  1403. "_objFlags": 0,
  1404. "__editorExtras__": {},
  1405. "node": {
  1406. "__id__": 43
  1407. },
  1408. "_enabled": true,
  1409. "__prefab": {
  1410. "__id__": 65
  1411. },
  1412. "_contentSize": {
  1413. "__type__": "cc.Size",
  1414. "width": 570,
  1415. "height": 430
  1416. },
  1417. "_anchorPoint": {
  1418. "__type__": "cc.Vec2",
  1419. "x": 0.5,
  1420. "y": 1
  1421. },
  1422. "_id": ""
  1423. },
  1424. {
  1425. "__type__": "cc.CompPrefabInfo",
  1426. "fileId": "d3pRA9Yx1MRbrBSc/s4MX6"
  1427. },
  1428. {
  1429. "__type__": "cc.Sprite",
  1430. "_name": "",
  1431. "_objFlags": 0,
  1432. "__editorExtras__": {},
  1433. "node": {
  1434. "__id__": 43
  1435. },
  1436. "_enabled": true,
  1437. "__prefab": {
  1438. "__id__": 67
  1439. },
  1440. "_customMaterial": null,
  1441. "_srcBlendFactor": 2,
  1442. "_dstBlendFactor": 4,
  1443. "_color": {
  1444. "__type__": "cc.Color",
  1445. "r": 255,
  1446. "g": 255,
  1447. "b": 255,
  1448. "a": 255
  1449. },
  1450. "_spriteFrame": null,
  1451. "_type": 1,
  1452. "_fillType": 0,
  1453. "_sizeMode": 0,
  1454. "_fillCenter": {
  1455. "__type__": "cc.Vec2",
  1456. "x": 0,
  1457. "y": 0
  1458. },
  1459. "_fillStart": 0,
  1460. "_fillRange": 0,
  1461. "_isTrimmedMode": true,
  1462. "_useGrayscale": false,
  1463. "_atlas": null,
  1464. "_id": ""
  1465. },
  1466. {
  1467. "__type__": "cc.CompPrefabInfo",
  1468. "fileId": "0cSUuNIlJAT6XkBiJCEreC"
  1469. },
  1470. {
  1471. "__type__": "cc.ScrollView",
  1472. "_name": "",
  1473. "_objFlags": 0,
  1474. "__editorExtras__": {},
  1475. "node": {
  1476. "__id__": 43
  1477. },
  1478. "_enabled": true,
  1479. "__prefab": {
  1480. "__id__": 69
  1481. },
  1482. "bounceDuration": 0.23,
  1483. "brake": 0.75,
  1484. "elastic": true,
  1485. "inertia": true,
  1486. "horizontal": false,
  1487. "vertical": true,
  1488. "cancelInnerEvents": true,
  1489. "scrollEvents": [],
  1490. "_content": {
  1491. "__id__": 45
  1492. },
  1493. "_horizontalScrollBar": null,
  1494. "_verticalScrollBar": null,
  1495. "_id": ""
  1496. },
  1497. {
  1498. "__type__": "cc.CompPrefabInfo",
  1499. "fileId": "1fa2Kv1hBEUbXcY4MKDrML"
  1500. },
  1501. {
  1502. "__type__": "cc.PrefabInfo",
  1503. "root": {
  1504. "__id__": 1
  1505. },
  1506. "asset": {
  1507. "__id__": 0
  1508. },
  1509. "fileId": "d9R/Nntq9BQpYDtgiZ4Gbk",
  1510. "instance": null,
  1511. "targetOverrides": null,
  1512. "nestedPrefabInstanceRoots": null
  1513. },
  1514. {
  1515. "__type__": "cc.Node",
  1516. "_name": "tips_2",
  1517. "_objFlags": 0,
  1518. "__editorExtras__": {},
  1519. "_parent": {
  1520. "__id__": 18
  1521. },
  1522. "_children": [],
  1523. "_active": true,
  1524. "_components": [
  1525. {
  1526. "__id__": 72
  1527. },
  1528. {
  1529. "__id__": 74
  1530. },
  1531. {
  1532. "__id__": 76
  1533. }
  1534. ],
  1535. "_prefab": {
  1536. "__id__": 78
  1537. },
  1538. "_lpos": {
  1539. "__type__": "cc.Vec3",
  1540. "x": -3.403,
  1541. "y": -148.366,
  1542. "z": 0
  1543. },
  1544. "_lrot": {
  1545. "__type__": "cc.Quat",
  1546. "x": 0,
  1547. "y": 0,
  1548. "z": 0,
  1549. "w": 1
  1550. },
  1551. "_lscale": {
  1552. "__type__": "cc.Vec3",
  1553. "x": 1,
  1554. "y": 1,
  1555. "z": 1
  1556. },
  1557. "_mobility": 0,
  1558. "_layer": 33554432,
  1559. "_euler": {
  1560. "__type__": "cc.Vec3",
  1561. "x": 0,
  1562. "y": 0,
  1563. "z": 0
  1564. },
  1565. "_id": ""
  1566. },
  1567. {
  1568. "__type__": "cc.UITransform",
  1569. "_name": "",
  1570. "_objFlags": 0,
  1571. "__editorExtras__": {},
  1572. "node": {
  1573. "__id__": 71
  1574. },
  1575. "_enabled": true,
  1576. "__prefab": {
  1577. "__id__": 73
  1578. },
  1579. "_contentSize": {
  1580. "__type__": "cc.Size",
  1581. "width": 600,
  1582. "height": 117.35999999999999
  1583. },
  1584. "_anchorPoint": {
  1585. "__type__": "cc.Vec2",
  1586. "x": 0.5,
  1587. "y": 0.5
  1588. },
  1589. "_id": ""
  1590. },
  1591. {
  1592. "__type__": "cc.CompPrefabInfo",
  1593. "fileId": "41H58ReJxJuZa6Re7Kl+XW"
  1594. },
  1595. {
  1596. "__type__": "cc.RichText",
  1597. "_name": "",
  1598. "_objFlags": 0,
  1599. "__editorExtras__": {},
  1600. "node": {
  1601. "__id__": 71
  1602. },
  1603. "_enabled": true,
  1604. "__prefab": {
  1605. "__id__": 75
  1606. },
  1607. "_lineHeight": 36,
  1608. "_string": "<b>你可以通过阅读完整版<on click=\"onClicked\" param=\"User Agreement\"><color=#FF1B10>《用户协议》</color></on>和<on click=\"onClicked\" param=\"Privacy Policy\"><color=#FF1B10>《隐私协议》</color></on>了解详细信息。如你同意,请点击“同意”开始接受我们的服务</b>",
  1609. "_horizontalAlign": 0,
  1610. "_verticalAlign": 0,
  1611. "_fontSize": 26,
  1612. "_fontColor": {
  1613. "__type__": "cc.Color",
  1614. "r": 136,
  1615. "g": 72,
  1616. "b": 21,
  1617. "a": 255
  1618. },
  1619. "_maxWidth": 600,
  1620. "_fontFamily": "Arial",
  1621. "_font": null,
  1622. "_isSystemFontUsed": true,
  1623. "_userDefinedFont": null,
  1624. "_cacheMode": 0,
  1625. "_imageAtlas": null,
  1626. "_handleTouchEvent": true,
  1627. "_id": ""
  1628. },
  1629. {
  1630. "__type__": "cc.CompPrefabInfo",
  1631. "fileId": "1fIHE/iwtEtrCFtxH4jYrG"
  1632. },
  1633. {
  1634. "__type__": "16f06h3mPNKjbAsWaBEkDUh",
  1635. "_name": "",
  1636. "_objFlags": 0,
  1637. "__editorExtras__": {},
  1638. "node": {
  1639. "__id__": 71
  1640. },
  1641. "_enabled": true,
  1642. "__prefab": {
  1643. "__id__": 77
  1644. },
  1645. "_id": ""
  1646. },
  1647. {
  1648. "__type__": "cc.CompPrefabInfo",
  1649. "fileId": "2fLYMLP6FIaJvmNMb7e+Rh"
  1650. },
  1651. {
  1652. "__type__": "cc.PrefabInfo",
  1653. "root": {
  1654. "__id__": 1
  1655. },
  1656. "asset": {
  1657. "__id__": 0
  1658. },
  1659. "fileId": "e0Fh4c1mBBK7zV+s2rP8Am",
  1660. "instance": null,
  1661. "targetOverrides": null,
  1662. "nestedPrefabInstanceRoots": null
  1663. },
  1664. {
  1665. "__type__": "cc.Node",
  1666. "_name": "btn_agree",
  1667. "_objFlags": 0,
  1668. "__editorExtras__": {},
  1669. "_parent": {
  1670. "__id__": 18
  1671. },
  1672. "_children": [
  1673. {
  1674. "__id__": 80
  1675. }
  1676. ],
  1677. "_active": true,
  1678. "_components": [
  1679. {
  1680. "__id__": 86
  1681. },
  1682. {
  1683. "__id__": 88
  1684. },
  1685. {
  1686. "__id__": 90
  1687. }
  1688. ],
  1689. "_prefab": {
  1690. "__id__": 92
  1691. },
  1692. "_lpos": {
  1693. "__type__": "cc.Vec3",
  1694. "x": 0.578,
  1695. "y": -319.316,
  1696. "z": 0
  1697. },
  1698. "_lrot": {
  1699. "__type__": "cc.Quat",
  1700. "x": 0,
  1701. "y": 0,
  1702. "z": 0,
  1703. "w": 1
  1704. },
  1705. "_lscale": {
  1706. "__type__": "cc.Vec3",
  1707. "x": 1,
  1708. "y": 1,
  1709. "z": 1
  1710. },
  1711. "_mobility": 0,
  1712. "_layer": 33554432,
  1713. "_euler": {
  1714. "__type__": "cc.Vec3",
  1715. "x": 0,
  1716. "y": 0,
  1717. "z": 0
  1718. },
  1719. "_id": ""
  1720. },
  1721. {
  1722. "__type__": "cc.Node",
  1723. "_name": "Label",
  1724. "_objFlags": 0,
  1725. "__editorExtras__": {},
  1726. "_parent": {
  1727. "__id__": 79
  1728. },
  1729. "_children": [],
  1730. "_active": true,
  1731. "_components": [
  1732. {
  1733. "__id__": 81
  1734. },
  1735. {
  1736. "__id__": 83
  1737. }
  1738. ],
  1739. "_prefab": {
  1740. "__id__": 85
  1741. },
  1742. "_lpos": {
  1743. "__type__": "cc.Vec3",
  1744. "x": 0,
  1745. "y": 0,
  1746. "z": 0
  1747. },
  1748. "_lrot": {
  1749. "__type__": "cc.Quat",
  1750. "x": 0,
  1751. "y": 0,
  1752. "z": 0,
  1753. "w": 1
  1754. },
  1755. "_lscale": {
  1756. "__type__": "cc.Vec3",
  1757. "x": 1,
  1758. "y": 1,
  1759. "z": 1
  1760. },
  1761. "_mobility": 0,
  1762. "_layer": 33554432,
  1763. "_euler": {
  1764. "__type__": "cc.Vec3",
  1765. "x": 0,
  1766. "y": 0,
  1767. "z": 0
  1768. },
  1769. "_id": ""
  1770. },
  1771. {
  1772. "__type__": "cc.UITransform",
  1773. "_name": "",
  1774. "_objFlags": 0,
  1775. "__editorExtras__": {},
  1776. "node": {
  1777. "__id__": 80
  1778. },
  1779. "_enabled": true,
  1780. "__prefab": {
  1781. "__id__": 82
  1782. },
  1783. "_contentSize": {
  1784. "__type__": "cc.Size",
  1785. "width": 104,
  1786. "height": 58.4
  1787. },
  1788. "_anchorPoint": {
  1789. "__type__": "cc.Vec2",
  1790. "x": 0.5,
  1791. "y": 0.5
  1792. },
  1793. "_id": ""
  1794. },
  1795. {
  1796. "__type__": "cc.CompPrefabInfo",
  1797. "fileId": "7bk/dqIfFFZ5GXGqXccGRb"
  1798. },
  1799. {
  1800. "__type__": "cc.Label",
  1801. "_name": "",
  1802. "_objFlags": 0,
  1803. "__editorExtras__": {},
  1804. "node": {
  1805. "__id__": 80
  1806. },
  1807. "_enabled": true,
  1808. "__prefab": {
  1809. "__id__": 84
  1810. },
  1811. "_customMaterial": null,
  1812. "_srcBlendFactor": 2,
  1813. "_dstBlendFactor": 4,
  1814. "_color": {
  1815. "__type__": "cc.Color",
  1816. "r": 255,
  1817. "g": 255,
  1818. "b": 255,
  1819. "a": 255
  1820. },
  1821. "_string": "同意",
  1822. "_horizontalAlign": 1,
  1823. "_verticalAlign": 1,
  1824. "_actualFontSize": 48,
  1825. "_fontSize": 48,
  1826. "_fontFamily": "Arial",
  1827. "_lineHeight": 40,
  1828. "_overflow": 0,
  1829. "_enableWrapText": true,
  1830. "_font": null,
  1831. "_isSystemFontUsed": true,
  1832. "_spacingX": 0,
  1833. "_isItalic": false,
  1834. "_isBold": true,
  1835. "_isUnderline": false,
  1836. "_underlineHeight": 2,
  1837. "_cacheMode": 0,
  1838. "_enableOutline": true,
  1839. "_outlineColor": {
  1840. "__type__": "cc.Color",
  1841. "r": 88,
  1842. "g": 42,
  1843. "b": 9,
  1844. "a": 255
  1845. },
  1846. "_outlineWidth": 4,
  1847. "_enableShadow": false,
  1848. "_shadowColor": {
  1849. "__type__": "cc.Color",
  1850. "r": 0,
  1851. "g": 0,
  1852. "b": 0,
  1853. "a": 255
  1854. },
  1855. "_shadowOffset": {
  1856. "__type__": "cc.Vec2",
  1857. "x": 2,
  1858. "y": 2
  1859. },
  1860. "_shadowBlur": 2,
  1861. "_id": ""
  1862. },
  1863. {
  1864. "__type__": "cc.CompPrefabInfo",
  1865. "fileId": "b3s51DLsJIX5rIooD7+ozo"
  1866. },
  1867. {
  1868. "__type__": "cc.PrefabInfo",
  1869. "root": {
  1870. "__id__": 1
  1871. },
  1872. "asset": {
  1873. "__id__": 0
  1874. },
  1875. "fileId": "113jWypEJFdLrAmdq18eXM",
  1876. "instance": null,
  1877. "targetOverrides": null,
  1878. "nestedPrefabInstanceRoots": null
  1879. },
  1880. {
  1881. "__type__": "cc.UITransform",
  1882. "_name": "",
  1883. "_objFlags": 0,
  1884. "__editorExtras__": {},
  1885. "node": {
  1886. "__id__": 79
  1887. },
  1888. "_enabled": true,
  1889. "__prefab": {
  1890. "__id__": 87
  1891. },
  1892. "_contentSize": {
  1893. "__type__": "cc.Size",
  1894. "width": 562,
  1895. "height": 141
  1896. },
  1897. "_anchorPoint": {
  1898. "__type__": "cc.Vec2",
  1899. "x": 0.5,
  1900. "y": 0.5
  1901. },
  1902. "_id": ""
  1903. },
  1904. {
  1905. "__type__": "cc.CompPrefabInfo",
  1906. "fileId": "70G+foAMZF+oqZZXuIzvzD"
  1907. },
  1908. {
  1909. "__type__": "cc.Sprite",
  1910. "_name": "",
  1911. "_objFlags": 0,
  1912. "__editorExtras__": {},
  1913. "node": {
  1914. "__id__": 79
  1915. },
  1916. "_enabled": true,
  1917. "__prefab": {
  1918. "__id__": 89
  1919. },
  1920. "_customMaterial": null,
  1921. "_srcBlendFactor": 2,
  1922. "_dstBlendFactor": 4,
  1923. "_color": {
  1924. "__type__": "cc.Color",
  1925. "r": 255,
  1926. "g": 255,
  1927. "b": 255,
  1928. "a": 255
  1929. },
  1930. "_spriteFrame": {
  1931. "__uuid__": "a49999bb-986e-40f5-9a9a-d4171636116f@f9941",
  1932. "__expectedType__": "cc.SpriteFrame"
  1933. },
  1934. "_type": 0,
  1935. "_fillType": 0,
  1936. "_sizeMode": 2,
  1937. "_fillCenter": {
  1938. "__type__": "cc.Vec2",
  1939. "x": 0,
  1940. "y": 0
  1941. },
  1942. "_fillStart": 0,
  1943. "_fillRange": 0,
  1944. "_isTrimmedMode": true,
  1945. "_useGrayscale": false,
  1946. "_atlas": null,
  1947. "_id": ""
  1948. },
  1949. {
  1950. "__type__": "cc.CompPrefabInfo",
  1951. "fileId": "97DfqDEZVLIJdr5V33R3yr"
  1952. },
  1953. {
  1954. "__type__": "cc.Button",
  1955. "_name": "",
  1956. "_objFlags": 0,
  1957. "__editorExtras__": {},
  1958. "node": {
  1959. "__id__": 79
  1960. },
  1961. "_enabled": true,
  1962. "__prefab": {
  1963. "__id__": 91
  1964. },
  1965. "clickEvents": [],
  1966. "_interactable": true,
  1967. "_transition": 0,
  1968. "_normalColor": {
  1969. "__type__": "cc.Color",
  1970. "r": 255,
  1971. "g": 255,
  1972. "b": 255,
  1973. "a": 255
  1974. },
  1975. "_hoverColor": {
  1976. "__type__": "cc.Color",
  1977. "r": 211,
  1978. "g": 211,
  1979. "b": 211,
  1980. "a": 255
  1981. },
  1982. "_pressedColor": {
  1983. "__type__": "cc.Color",
  1984. "r": 255,
  1985. "g": 255,
  1986. "b": 255,
  1987. "a": 255
  1988. },
  1989. "_disabledColor": {
  1990. "__type__": "cc.Color",
  1991. "r": 124,
  1992. "g": 124,
  1993. "b": 124,
  1994. "a": 255
  1995. },
  1996. "_normalSprite": null,
  1997. "_hoverSprite": null,
  1998. "_pressedSprite": null,
  1999. "_disabledSprite": null,
  2000. "_duration": 0.1,
  2001. "_zoomScale": 1.2,
  2002. "_target": null,
  2003. "_id": ""
  2004. },
  2005. {
  2006. "__type__": "cc.CompPrefabInfo",
  2007. "fileId": "42f/cs7LVPUqZ2eYWR6Sxm"
  2008. },
  2009. {
  2010. "__type__": "cc.PrefabInfo",
  2011. "root": {
  2012. "__id__": 1
  2013. },
  2014. "asset": {
  2015. "__id__": 0
  2016. },
  2017. "fileId": "84Hrmdu0hIJasfdBQISNjm",
  2018. "instance": null,
  2019. "targetOverrides": null,
  2020. "nestedPrefabInstanceRoots": null
  2021. },
  2022. {
  2023. "__type__": "cc.Node",
  2024. "_name": "btn_disagree",
  2025. "_objFlags": 0,
  2026. "__editorExtras__": {},
  2027. "_parent": {
  2028. "__id__": 18
  2029. },
  2030. "_children": [],
  2031. "_active": true,
  2032. "_components": [
  2033. {
  2034. "__id__": 94
  2035. },
  2036. {
  2037. "__id__": 96
  2038. },
  2039. {
  2040. "__id__": 98
  2041. },
  2042. {
  2043. "__id__": 100
  2044. }
  2045. ],
  2046. "_prefab": {
  2047. "__id__": 102
  2048. },
  2049. "_lpos": {
  2050. "__type__": "cc.Vec3",
  2051. "x": 0,
  2052. "y": -436.822,
  2053. "z": 0
  2054. },
  2055. "_lrot": {
  2056. "__type__": "cc.Quat",
  2057. "x": 0,
  2058. "y": 0,
  2059. "z": 0,
  2060. "w": 1
  2061. },
  2062. "_lscale": {
  2063. "__type__": "cc.Vec3",
  2064. "x": 1,
  2065. "y": 1,
  2066. "z": 1
  2067. },
  2068. "_mobility": 0,
  2069. "_layer": 33554432,
  2070. "_euler": {
  2071. "__type__": "cc.Vec3",
  2072. "x": 0,
  2073. "y": 0,
  2074. "z": 0
  2075. },
  2076. "_id": ""
  2077. },
  2078. {
  2079. "__type__": "cc.UITransform",
  2080. "_name": "",
  2081. "_objFlags": 0,
  2082. "__editorExtras__": {},
  2083. "node": {
  2084. "__id__": 93
  2085. },
  2086. "_enabled": true,
  2087. "__prefab": {
  2088. "__id__": 95
  2089. },
  2090. "_contentSize": {
  2091. "__type__": "cc.Size",
  2092. "width": 96,
  2093. "height": 50.4
  2094. },
  2095. "_anchorPoint": {
  2096. "__type__": "cc.Vec2",
  2097. "x": 0.5,
  2098. "y": 0.5
  2099. },
  2100. "_id": ""
  2101. },
  2102. {
  2103. "__type__": "cc.CompPrefabInfo",
  2104. "fileId": "8cinj1J3FIUr4Lnp3/5gmu"
  2105. },
  2106. {
  2107. "__type__": "cc.Label",
  2108. "_name": "",
  2109. "_objFlags": 0,
  2110. "__editorExtras__": {},
  2111. "node": {
  2112. "__id__": 93
  2113. },
  2114. "_enabled": true,
  2115. "__prefab": {
  2116. "__id__": 97
  2117. },
  2118. "_customMaterial": null,
  2119. "_srcBlendFactor": 2,
  2120. "_dstBlendFactor": 4,
  2121. "_color": {
  2122. "__type__": "cc.Color",
  2123. "r": 136,
  2124. "g": 72,
  2125. "b": 21,
  2126. "a": 255
  2127. },
  2128. "_string": "不同意",
  2129. "_horizontalAlign": 1,
  2130. "_verticalAlign": 1,
  2131. "_actualFontSize": 32,
  2132. "_fontSize": 32,
  2133. "_fontFamily": "Arial",
  2134. "_lineHeight": 40,
  2135. "_overflow": 0,
  2136. "_enableWrapText": true,
  2137. "_font": null,
  2138. "_isSystemFontUsed": true,
  2139. "_spacingX": 0,
  2140. "_isItalic": false,
  2141. "_isBold": true,
  2142. "_isUnderline": true,
  2143. "_underlineHeight": 2,
  2144. "_cacheMode": 0,
  2145. "_enableOutline": false,
  2146. "_outlineColor": {
  2147. "__type__": "cc.Color",
  2148. "r": 0,
  2149. "g": 0,
  2150. "b": 0,
  2151. "a": 255
  2152. },
  2153. "_outlineWidth": 2,
  2154. "_enableShadow": false,
  2155. "_shadowColor": {
  2156. "__type__": "cc.Color",
  2157. "r": 0,
  2158. "g": 0,
  2159. "b": 0,
  2160. "a": 255
  2161. },
  2162. "_shadowOffset": {
  2163. "__type__": "cc.Vec2",
  2164. "x": 2,
  2165. "y": 2
  2166. },
  2167. "_shadowBlur": 2,
  2168. "_id": ""
  2169. },
  2170. {
  2171. "__type__": "cc.CompPrefabInfo",
  2172. "fileId": "9cWch0bgBAxIjDAY1ukg+S"
  2173. },
  2174. {
  2175. "__type__": "cc.Button",
  2176. "_name": "",
  2177. "_objFlags": 0,
  2178. "__editorExtras__": {},
  2179. "node": {
  2180. "__id__": 93
  2181. },
  2182. "_enabled": true,
  2183. "__prefab": {
  2184. "__id__": 99
  2185. },
  2186. "clickEvents": [],
  2187. "_interactable": true,
  2188. "_transition": 0,
  2189. "_normalColor": {
  2190. "__type__": "cc.Color",
  2191. "r": 255,
  2192. "g": 255,
  2193. "b": 255,
  2194. "a": 255
  2195. },
  2196. "_hoverColor": {
  2197. "__type__": "cc.Color",
  2198. "r": 211,
  2199. "g": 211,
  2200. "b": 211,
  2201. "a": 255
  2202. },
  2203. "_pressedColor": {
  2204. "__type__": "cc.Color",
  2205. "r": 255,
  2206. "g": 255,
  2207. "b": 255,
  2208. "a": 255
  2209. },
  2210. "_disabledColor": {
  2211. "__type__": "cc.Color",
  2212. "r": 124,
  2213. "g": 124,
  2214. "b": 124,
  2215. "a": 255
  2216. },
  2217. "_normalSprite": null,
  2218. "_hoverSprite": null,
  2219. "_pressedSprite": null,
  2220. "_disabledSprite": null,
  2221. "_duration": 0.1,
  2222. "_zoomScale": 1.2,
  2223. "_target": null,
  2224. "_id": ""
  2225. },
  2226. {
  2227. "__type__": "cc.CompPrefabInfo",
  2228. "fileId": "8eaAHzv4tPtJLmS0uLw+ks"
  2229. },
  2230. {
  2231. "__type__": "110c8vEd5NEPL/N9meGQnaX",
  2232. "_name": "",
  2233. "_objFlags": 0,
  2234. "__editorExtras__": {},
  2235. "node": {
  2236. "__id__": 93
  2237. },
  2238. "_enabled": true,
  2239. "__prefab": {
  2240. "__id__": 101
  2241. },
  2242. "_params": [],
  2243. "_dataID": "common_disagree",
  2244. "_id": ""
  2245. },
  2246. {
  2247. "__type__": "cc.CompPrefabInfo",
  2248. "fileId": "339M3Sj69HF6is7feRqZzj"
  2249. },
  2250. {
  2251. "__type__": "cc.PrefabInfo",
  2252. "root": {
  2253. "__id__": 1
  2254. },
  2255. "asset": {
  2256. "__id__": 0
  2257. },
  2258. "fileId": "60RPIq4i5AsKPDstbHhCOq",
  2259. "instance": null,
  2260. "targetOverrides": null,
  2261. "nestedPrefabInstanceRoots": null
  2262. },
  2263. {
  2264. "__type__": "cc.UITransform",
  2265. "_name": "",
  2266. "_objFlags": 0,
  2267. "__editorExtras__": {},
  2268. "node": {
  2269. "__id__": 18
  2270. },
  2271. "_enabled": true,
  2272. "__prefab": {
  2273. "__id__": 104
  2274. },
  2275. "_contentSize": {
  2276. "__type__": "cc.Size",
  2277. "width": 674,
  2278. "height": 972
  2279. },
  2280. "_anchorPoint": {
  2281. "__type__": "cc.Vec2",
  2282. "x": 0.5,
  2283. "y": 0.5
  2284. },
  2285. "_id": ""
  2286. },
  2287. {
  2288. "__type__": "cc.CompPrefabInfo",
  2289. "fileId": "48FgAO+NFCc7zIloKREqPA"
  2290. },
  2291. {
  2292. "__type__": "cc.Sprite",
  2293. "_name": "",
  2294. "_objFlags": 0,
  2295. "__editorExtras__": {},
  2296. "node": {
  2297. "__id__": 18
  2298. },
  2299. "_enabled": true,
  2300. "__prefab": {
  2301. "__id__": 106
  2302. },
  2303. "_customMaterial": null,
  2304. "_srcBlendFactor": 2,
  2305. "_dstBlendFactor": 4,
  2306. "_color": {
  2307. "__type__": "cc.Color",
  2308. "r": 255,
  2309. "g": 255,
  2310. "b": 255,
  2311. "a": 255
  2312. },
  2313. "_spriteFrame": {
  2314. "__uuid__": "dea0ac8f-c8b1-4d14-9e66-bd44d8696ad3@f9941",
  2315. "__expectedType__": "cc.SpriteFrame"
  2316. },
  2317. "_type": 1,
  2318. "_fillType": 0,
  2319. "_sizeMode": 0,
  2320. "_fillCenter": {
  2321. "__type__": "cc.Vec2",
  2322. "x": 0,
  2323. "y": 0
  2324. },
  2325. "_fillStart": 0,
  2326. "_fillRange": 0,
  2327. "_isTrimmedMode": true,
  2328. "_useGrayscale": false,
  2329. "_atlas": null,
  2330. "_id": ""
  2331. },
  2332. {
  2333. "__type__": "cc.CompPrefabInfo",
  2334. "fileId": "59SmURNXVH8JHUtG5/1bNG"
  2335. },
  2336. {
  2337. "__type__": "cc.PrefabInfo",
  2338. "root": {
  2339. "__id__": 1
  2340. },
  2341. "asset": {
  2342. "__id__": 0
  2343. },
  2344. "fileId": "59U4oPiNhMRq1JJypfLR2E",
  2345. "instance": null,
  2346. "targetOverrides": null,
  2347. "nestedPrefabInstanceRoots": null
  2348. },
  2349. {
  2350. "__type__": "cc.UITransform",
  2351. "_name": "",
  2352. "_objFlags": 0,
  2353. "__editorExtras__": {},
  2354. "node": {
  2355. "__id__": 1
  2356. },
  2357. "_enabled": true,
  2358. "__prefab": {
  2359. "__id__": 109
  2360. },
  2361. "_contentSize": {
  2362. "__type__": "cc.Size",
  2363. "width": 720,
  2364. "height": 1600.0000000000002
  2365. },
  2366. "_anchorPoint": {
  2367. "__type__": "cc.Vec2",
  2368. "x": 0.5,
  2369. "y": 0.5
  2370. },
  2371. "_id": ""
  2372. },
  2373. {
  2374. "__type__": "cc.CompPrefabInfo",
  2375. "fileId": "d56fIqvVBHe5EA2CXpJHHO"
  2376. },
  2377. {
  2378. "__type__": "25efd23JY9Mqp4Gj/hKSCVY",
  2379. "_name": "",
  2380. "_objFlags": 0,
  2381. "__editorExtras__": {},
  2382. "node": {
  2383. "__id__": 1
  2384. },
  2385. "_enabled": true,
  2386. "__prefab": {
  2387. "__id__": 111
  2388. },
  2389. "_id": ""
  2390. },
  2391. {
  2392. "__type__": "cc.CompPrefabInfo",
  2393. "fileId": "67K0zjOOtE7ooqs5P7bnBc"
  2394. },
  2395. {
  2396. "__type__": "cc.Widget",
  2397. "_name": "",
  2398. "_objFlags": 0,
  2399. "__editorExtras__": {},
  2400. "node": {
  2401. "__id__": 1
  2402. },
  2403. "_enabled": true,
  2404. "__prefab": {
  2405. "__id__": 113
  2406. },
  2407. "_alignFlags": 45,
  2408. "_target": null,
  2409. "_left": 0,
  2410. "_right": 0,
  2411. "_top": 0,
  2412. "_bottom": 0,
  2413. "_horizontalCenter": 0,
  2414. "_verticalCenter": 0,
  2415. "_isAbsLeft": true,
  2416. "_isAbsRight": true,
  2417. "_isAbsTop": true,
  2418. "_isAbsBottom": true,
  2419. "_isAbsHorizontalCenter": true,
  2420. "_isAbsVerticalCenter": true,
  2421. "_originalWidth": 720,
  2422. "_originalHeight": 1280,
  2423. "_alignMode": 2,
  2424. "_lockFlags": 0,
  2425. "_id": ""
  2426. },
  2427. {
  2428. "__type__": "cc.CompPrefabInfo",
  2429. "fileId": "53TS3iuDpJ86pBO0OUuT62"
  2430. },
  2431. {
  2432. "__type__": "cc.PrefabInfo",
  2433. "root": {
  2434. "__id__": 1
  2435. },
  2436. "asset": {
  2437. "__id__": 0
  2438. },
  2439. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  2440. "instance": null,
  2441. "targetOverrides": null,
  2442. "nestedPrefabInstanceRoots": [
  2443. {
  2444. "__id__": 2
  2445. }
  2446. ]
  2447. }
  2448. ]