RewardLayer.prefab 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "RewardLayer",
  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": "RewardLayer",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 14
  26. },
  27. {
  28. "__id__": 26
  29. },
  30. {
  31. "__id__": 102
  32. },
  33. {
  34. "__id__": 112
  35. }
  36. ],
  37. "_active": true,
  38. "_components": [
  39. {
  40. "__id__": 118
  41. },
  42. {
  43. "__id__": 120
  44. },
  45. {
  46. "__id__": 122
  47. }
  48. ],
  49. "_prefab": {
  50. "__id__": 124
  51. },
  52. "_lpos": {
  53. "__type__": "cc.Vec3",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0
  57. },
  58. "_lrot": {
  59. "__type__": "cc.Quat",
  60. "x": 0,
  61. "y": 0,
  62. "z": 0,
  63. "w": 1
  64. },
  65. "_lscale": {
  66. "__type__": "cc.Vec3",
  67. "x": 1,
  68. "y": 1,
  69. "z": 1
  70. },
  71. "_mobility": 0,
  72. "_layer": 33554432,
  73. "_euler": {
  74. "__type__": "cc.Vec3",
  75. "x": 0,
  76. "y": 0,
  77. "z": 0
  78. },
  79. "_id": ""
  80. },
  81. {
  82. "__type__": "cc.Node",
  83. "_name": "btn_close",
  84. "_objFlags": 0,
  85. "__editorExtras__": {},
  86. "_parent": {
  87. "__id__": 1
  88. },
  89. "_children": [],
  90. "_active": true,
  91. "_components": [
  92. {
  93. "__id__": 3
  94. },
  95. {
  96. "__id__": 5
  97. },
  98. {
  99. "__id__": 7
  100. },
  101. {
  102. "__id__": 9
  103. },
  104. {
  105. "__id__": 11
  106. }
  107. ],
  108. "_prefab": {
  109. "__id__": 13
  110. },
  111. "_lpos": {
  112. "__type__": "cc.Vec3",
  113. "x": 0,
  114. "y": 0,
  115. "z": 0
  116. },
  117. "_lrot": {
  118. "__type__": "cc.Quat",
  119. "x": 0,
  120. "y": 0,
  121. "z": 0,
  122. "w": 1
  123. },
  124. "_lscale": {
  125. "__type__": "cc.Vec3",
  126. "x": 1,
  127. "y": 1,
  128. "z": 1
  129. },
  130. "_mobility": 0,
  131. "_layer": 33554432,
  132. "_euler": {
  133. "__type__": "cc.Vec3",
  134. "x": 0,
  135. "y": 0,
  136. "z": 0
  137. },
  138. "_id": ""
  139. },
  140. {
  141. "__type__": "cc.UITransform",
  142. "_name": "",
  143. "_objFlags": 0,
  144. "__editorExtras__": {},
  145. "node": {
  146. "__id__": 2
  147. },
  148. "_enabled": true,
  149. "__prefab": {
  150. "__id__": 4
  151. },
  152. "_contentSize": {
  153. "__type__": "cc.Size",
  154. "width": 720,
  155. "height": 1280
  156. },
  157. "_anchorPoint": {
  158. "__type__": "cc.Vec2",
  159. "x": 0.5,
  160. "y": 0.5
  161. },
  162. "_id": ""
  163. },
  164. {
  165. "__type__": "cc.CompPrefabInfo",
  166. "fileId": "1f9lO0hQhJTYuVitU6CnIJ"
  167. },
  168. {
  169. "__type__": "cc.Sprite",
  170. "_name": "",
  171. "_objFlags": 0,
  172. "__editorExtras__": {},
  173. "node": {
  174. "__id__": 2
  175. },
  176. "_enabled": true,
  177. "__prefab": {
  178. "__id__": 6
  179. },
  180. "_customMaterial": null,
  181. "_srcBlendFactor": 2,
  182. "_dstBlendFactor": 4,
  183. "_color": {
  184. "__type__": "cc.Color",
  185. "r": 0,
  186. "g": 0,
  187. "b": 0,
  188. "a": 255
  189. },
  190. "_spriteFrame": {
  191. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  192. "__expectedType__": "cc.SpriteFrame"
  193. },
  194. "_type": 0,
  195. "_fillType": 0,
  196. "_sizeMode": 0,
  197. "_fillCenter": {
  198. "__type__": "cc.Vec2",
  199. "x": 0,
  200. "y": 0
  201. },
  202. "_fillStart": 0,
  203. "_fillRange": 0,
  204. "_isTrimmedMode": true,
  205. "_useGrayscale": false,
  206. "_atlas": null,
  207. "_id": ""
  208. },
  209. {
  210. "__type__": "cc.CompPrefabInfo",
  211. "fileId": "07U2MvdJ9HDa7ohHn26ww8"
  212. },
  213. {
  214. "__type__": "cc.Widget",
  215. "_name": "",
  216. "_objFlags": 0,
  217. "__editorExtras__": {},
  218. "node": {
  219. "__id__": 2
  220. },
  221. "_enabled": true,
  222. "__prefab": {
  223. "__id__": 8
  224. },
  225. "_alignFlags": 45,
  226. "_target": null,
  227. "_left": 0,
  228. "_right": 0,
  229. "_top": 0,
  230. "_bottom": 0,
  231. "_horizontalCenter": 0,
  232. "_verticalCenter": 0,
  233. "_isAbsLeft": true,
  234. "_isAbsRight": true,
  235. "_isAbsTop": true,
  236. "_isAbsBottom": true,
  237. "_isAbsHorizontalCenter": true,
  238. "_isAbsVerticalCenter": true,
  239. "_originalWidth": 40,
  240. "_originalHeight": 36,
  241. "_alignMode": 2,
  242. "_lockFlags": 0,
  243. "_id": ""
  244. },
  245. {
  246. "__type__": "cc.CompPrefabInfo",
  247. "fileId": "74FJLC0nRHgYs6n/97mpgi"
  248. },
  249. {
  250. "__type__": "cc.BlockInputEvents",
  251. "_name": "",
  252. "_objFlags": 0,
  253. "__editorExtras__": {},
  254. "node": {
  255. "__id__": 2
  256. },
  257. "_enabled": true,
  258. "__prefab": {
  259. "__id__": 10
  260. },
  261. "_id": ""
  262. },
  263. {
  264. "__type__": "cc.CompPrefabInfo",
  265. "fileId": "39P5v0bAVDY4X3hvxVqQd+"
  266. },
  267. {
  268. "__type__": "cc.Button",
  269. "_name": "",
  270. "_objFlags": 0,
  271. "__editorExtras__": {},
  272. "node": {
  273. "__id__": 2
  274. },
  275. "_enabled": true,
  276. "__prefab": {
  277. "__id__": 12
  278. },
  279. "clickEvents": [],
  280. "_interactable": true,
  281. "_transition": 0,
  282. "_normalColor": {
  283. "__type__": "cc.Color",
  284. "r": 255,
  285. "g": 255,
  286. "b": 255,
  287. "a": 255
  288. },
  289. "_hoverColor": {
  290. "__type__": "cc.Color",
  291. "r": 211,
  292. "g": 211,
  293. "b": 211,
  294. "a": 255
  295. },
  296. "_pressedColor": {
  297. "__type__": "cc.Color",
  298. "r": 255,
  299. "g": 255,
  300. "b": 255,
  301. "a": 255
  302. },
  303. "_disabledColor": {
  304. "__type__": "cc.Color",
  305. "r": 124,
  306. "g": 124,
  307. "b": 124,
  308. "a": 255
  309. },
  310. "_normalSprite": null,
  311. "_hoverSprite": null,
  312. "_pressedSprite": null,
  313. "_disabledSprite": null,
  314. "_duration": 0.1,
  315. "_zoomScale": 1.2,
  316. "_target": null,
  317. "_id": ""
  318. },
  319. {
  320. "__type__": "cc.CompPrefabInfo",
  321. "fileId": "f7nCggr+FCaaChOY6TF2rG"
  322. },
  323. {
  324. "__type__": "cc.PrefabInfo",
  325. "root": {
  326. "__id__": 1
  327. },
  328. "asset": {
  329. "__id__": 0
  330. },
  331. "fileId": "0fSGIky0NAZoqNQLjGQx6z",
  332. "instance": null,
  333. "targetOverrides": null,
  334. "nestedPrefabInstanceRoots": null
  335. },
  336. {
  337. "__type__": "cc.Node",
  338. "_name": "title",
  339. "_objFlags": 0,
  340. "__editorExtras__": {},
  341. "_parent": {
  342. "__id__": 1
  343. },
  344. "_children": [
  345. {
  346. "__id__": 15
  347. }
  348. ],
  349. "_active": true,
  350. "_components": [
  351. {
  352. "__id__": 21
  353. },
  354. {
  355. "__id__": 23
  356. }
  357. ],
  358. "_prefab": {
  359. "__id__": 25
  360. },
  361. "_lpos": {
  362. "__type__": "cc.Vec3",
  363. "x": -2.9010000000000105,
  364. "y": 407.2270000000001,
  365. "z": 0
  366. },
  367. "_lrot": {
  368. "__type__": "cc.Quat",
  369. "x": 0,
  370. "y": 0,
  371. "z": 0,
  372. "w": 1
  373. },
  374. "_lscale": {
  375. "__type__": "cc.Vec3",
  376. "x": 1,
  377. "y": 1,
  378. "z": 1
  379. },
  380. "_mobility": 0,
  381. "_layer": 33554432,
  382. "_euler": {
  383. "__type__": "cc.Vec3",
  384. "x": 0,
  385. "y": 0,
  386. "z": 0
  387. },
  388. "_id": ""
  389. },
  390. {
  391. "__type__": "cc.Node",
  392. "_name": "close",
  393. "_objFlags": 0,
  394. "__editorExtras__": {},
  395. "_parent": {
  396. "__id__": 14
  397. },
  398. "_children": [],
  399. "_active": true,
  400. "_components": [
  401. {
  402. "__id__": 16
  403. },
  404. {
  405. "__id__": 18
  406. }
  407. ],
  408. "_prefab": {
  409. "__id__": 20
  410. },
  411. "_lpos": {
  412. "__type__": "cc.Vec3",
  413. "x": 261.98600000000005,
  414. "y": 0.11299999999982901,
  415. "z": 0
  416. },
  417. "_lrot": {
  418. "__type__": "cc.Quat",
  419. "x": 0,
  420. "y": 0,
  421. "z": 0,
  422. "w": 1
  423. },
  424. "_lscale": {
  425. "__type__": "cc.Vec3",
  426. "x": 1,
  427. "y": 1,
  428. "z": 1
  429. },
  430. "_mobility": 0,
  431. "_layer": 33554432,
  432. "_euler": {
  433. "__type__": "cc.Vec3",
  434. "x": 0,
  435. "y": 0,
  436. "z": 0
  437. },
  438. "_id": ""
  439. },
  440. {
  441. "__type__": "cc.UITransform",
  442. "_name": "",
  443. "_objFlags": 0,
  444. "__editorExtras__": {},
  445. "node": {
  446. "__id__": 15
  447. },
  448. "_enabled": true,
  449. "__prefab": {
  450. "__id__": 17
  451. },
  452. "_contentSize": {
  453. "__type__": "cc.Size",
  454. "width": 40,
  455. "height": 40
  456. },
  457. "_anchorPoint": {
  458. "__type__": "cc.Vec2",
  459. "x": 0.5,
  460. "y": 0.5
  461. },
  462. "_id": ""
  463. },
  464. {
  465. "__type__": "cc.CompPrefabInfo",
  466. "fileId": "a2eULmq2lL0LRGBkkUID+M"
  467. },
  468. {
  469. "__type__": "cc.Sprite",
  470. "_name": "",
  471. "_objFlags": 0,
  472. "__editorExtras__": {},
  473. "node": {
  474. "__id__": 15
  475. },
  476. "_enabled": true,
  477. "__prefab": {
  478. "__id__": 19
  479. },
  480. "_customMaterial": null,
  481. "_srcBlendFactor": 2,
  482. "_dstBlendFactor": 4,
  483. "_color": {
  484. "__type__": "cc.Color",
  485. "r": 255,
  486. "g": 255,
  487. "b": 255,
  488. "a": 255
  489. },
  490. "_spriteFrame": {
  491. "__uuid__": "3f348859-9143-4941-abdd-37473b5f40df@f9941",
  492. "__expectedType__": "cc.SpriteFrame"
  493. },
  494. "_type": 0,
  495. "_fillType": 0,
  496. "_sizeMode": 1,
  497. "_fillCenter": {
  498. "__type__": "cc.Vec2",
  499. "x": 0,
  500. "y": 0
  501. },
  502. "_fillStart": 0,
  503. "_fillRange": 0,
  504. "_isTrimmedMode": true,
  505. "_useGrayscale": false,
  506. "_atlas": null,
  507. "_id": ""
  508. },
  509. {
  510. "__type__": "cc.CompPrefabInfo",
  511. "fileId": "d5hSN5HCdCTrSVG4kcXvzi"
  512. },
  513. {
  514. "__type__": "cc.PrefabInfo",
  515. "root": {
  516. "__id__": 1
  517. },
  518. "asset": {
  519. "__id__": 0
  520. },
  521. "fileId": "f2OYM2UDZFWblGSnenGsIf",
  522. "instance": null,
  523. "targetOverrides": null,
  524. "nestedPrefabInstanceRoots": null
  525. },
  526. {
  527. "__type__": "cc.UITransform",
  528. "_name": "",
  529. "_objFlags": 0,
  530. "__editorExtras__": {},
  531. "node": {
  532. "__id__": 14
  533. },
  534. "_enabled": true,
  535. "__prefab": {
  536. "__id__": 22
  537. },
  538. "_contentSize": {
  539. "__type__": "cc.Size",
  540. "width": 323.98046875,
  541. "height": 54.4
  542. },
  543. "_anchorPoint": {
  544. "__type__": "cc.Vec2",
  545. "x": 0.5,
  546. "y": 0.5
  547. },
  548. "_id": ""
  549. },
  550. {
  551. "__type__": "cc.CompPrefabInfo",
  552. "fileId": "0fTtnMH6pGF5v7NCMsTwlq"
  553. },
  554. {
  555. "__type__": "cc.Label",
  556. "_name": "",
  557. "_objFlags": 0,
  558. "__editorExtras__": {},
  559. "node": {
  560. "__id__": 14
  561. },
  562. "_enabled": true,
  563. "__prefab": {
  564. "__id__": 24
  565. },
  566. "_customMaterial": null,
  567. "_srcBlendFactor": 2,
  568. "_dstBlendFactor": 4,
  569. "_color": {
  570. "__type__": "cc.Color",
  571. "r": 192,
  572. "g": 242,
  573. "b": 131,
  574. "a": 255
  575. },
  576. "_string": "Congratulations!",
  577. "_horizontalAlign": 1,
  578. "_verticalAlign": 1,
  579. "_actualFontSize": 40,
  580. "_fontSize": 40,
  581. "_fontFamily": "Arial",
  582. "_lineHeight": 40,
  583. "_overflow": 0,
  584. "_enableWrapText": true,
  585. "_font": null,
  586. "_isSystemFontUsed": true,
  587. "_spacingX": 0,
  588. "_isItalic": false,
  589. "_isBold": true,
  590. "_isUnderline": false,
  591. "_underlineHeight": 2,
  592. "_cacheMode": 0,
  593. "_enableOutline": true,
  594. "_outlineColor": {
  595. "__type__": "cc.Color",
  596. "r": 0,
  597. "g": 0,
  598. "b": 0,
  599. "a": 255
  600. },
  601. "_outlineWidth": 2,
  602. "_enableShadow": false,
  603. "_shadowColor": {
  604. "__type__": "cc.Color",
  605. "r": 0,
  606. "g": 0,
  607. "b": 0,
  608. "a": 255
  609. },
  610. "_shadowOffset": {
  611. "__type__": "cc.Vec2",
  612. "x": 2,
  613. "y": 2
  614. },
  615. "_shadowBlur": 2,
  616. "_id": ""
  617. },
  618. {
  619. "__type__": "cc.CompPrefabInfo",
  620. "fileId": "93juoW8PJK35qedDBTr1xI"
  621. },
  622. {
  623. "__type__": "cc.PrefabInfo",
  624. "root": {
  625. "__id__": 1
  626. },
  627. "asset": {
  628. "__id__": 0
  629. },
  630. "fileId": "21b0ZVnWtJv6SMlJVjkmC6",
  631. "instance": null,
  632. "targetOverrides": null,
  633. "nestedPrefabInstanceRoots": null
  634. },
  635. {
  636. "__type__": "cc.Node",
  637. "_name": "bg",
  638. "_objFlags": 512,
  639. "__editorExtras__": {},
  640. "_parent": {
  641. "__id__": 1
  642. },
  643. "_children": [
  644. {
  645. "__id__": 27
  646. }
  647. ],
  648. "_active": true,
  649. "_components": [
  650. {
  651. "__id__": 95
  652. },
  653. {
  654. "__id__": 97
  655. },
  656. {
  657. "__id__": 99
  658. }
  659. ],
  660. "_prefab": {
  661. "__id__": 101
  662. },
  663. "_lpos": {
  664. "__type__": "cc.Vec3",
  665. "x": -2.9010000000000105,
  666. "y": 8.202999999999975,
  667. "z": 0
  668. },
  669. "_lrot": {
  670. "__type__": "cc.Quat",
  671. "x": 0,
  672. "y": 0,
  673. "z": 0,
  674. "w": 1
  675. },
  676. "_lscale": {
  677. "__type__": "cc.Vec3",
  678. "x": 1,
  679. "y": 1,
  680. "z": 1
  681. },
  682. "_mobility": 0,
  683. "_layer": 33554432,
  684. "_euler": {
  685. "__type__": "cc.Vec3",
  686. "x": 0,
  687. "y": 0,
  688. "z": 0
  689. },
  690. "_id": ""
  691. },
  692. {
  693. "__type__": "cc.Node",
  694. "_name": "ScrollView",
  695. "_objFlags": 0,
  696. "__editorExtras__": {},
  697. "_parent": {
  698. "__id__": 26
  699. },
  700. "_children": [
  701. {
  702. "__id__": 28
  703. }
  704. ],
  705. "_active": true,
  706. "_components": [
  707. {
  708. "__id__": 88
  709. },
  710. {
  711. "__id__": 90
  712. },
  713. {
  714. "__id__": 92
  715. }
  716. ],
  717. "_prefab": {
  718. "__id__": 94
  719. },
  720. "_lpos": {
  721. "__type__": "cc.Vec3",
  722. "x": 0,
  723. "y": -3.6240000000000236,
  724. "z": 0
  725. },
  726. "_lrot": {
  727. "__type__": "cc.Quat",
  728. "x": 0,
  729. "y": 0,
  730. "z": 0,
  731. "w": 1
  732. },
  733. "_lscale": {
  734. "__type__": "cc.Vec3",
  735. "x": 1,
  736. "y": 1,
  737. "z": 1
  738. },
  739. "_mobility": 0,
  740. "_layer": 33554432,
  741. "_euler": {
  742. "__type__": "cc.Vec3",
  743. "x": 0,
  744. "y": 0,
  745. "z": 0
  746. },
  747. "_id": ""
  748. },
  749. {
  750. "__type__": "cc.Node",
  751. "_name": "view",
  752. "_objFlags": 0,
  753. "__editorExtras__": {},
  754. "_parent": {
  755. "__id__": 27
  756. },
  757. "_children": [
  758. {
  759. "__id__": 29
  760. }
  761. ],
  762. "_active": true,
  763. "_components": [
  764. {
  765. "__id__": 81
  766. },
  767. {
  768. "__id__": 83
  769. },
  770. {
  771. "__id__": 85
  772. }
  773. ],
  774. "_prefab": {
  775. "__id__": 87
  776. },
  777. "_lpos": {
  778. "__type__": "cc.Vec3",
  779. "x": 0,
  780. "y": 0,
  781. "z": 0
  782. },
  783. "_lrot": {
  784. "__type__": "cc.Quat",
  785. "x": 0,
  786. "y": 0,
  787. "z": 0,
  788. "w": 1
  789. },
  790. "_lscale": {
  791. "__type__": "cc.Vec3",
  792. "x": 1,
  793. "y": 1,
  794. "z": 1
  795. },
  796. "_mobility": 0,
  797. "_layer": 33554432,
  798. "_euler": {
  799. "__type__": "cc.Vec3",
  800. "x": 0,
  801. "y": 0,
  802. "z": 0
  803. },
  804. "_id": ""
  805. },
  806. {
  807. "__type__": "cc.Node",
  808. "_name": "content",
  809. "_objFlags": 0,
  810. "__editorExtras__": {},
  811. "_parent": {
  812. "__id__": 28
  813. },
  814. "_children": [
  815. {
  816. "__id__": 30
  817. },
  818. {
  819. "__id__": 34
  820. },
  821. {
  822. "__id__": 38
  823. },
  824. {
  825. "__id__": 42
  826. },
  827. {
  828. "__id__": 46
  829. },
  830. {
  831. "__id__": 50
  832. },
  833. {
  834. "__id__": 54
  835. },
  836. {
  837. "__id__": 58
  838. },
  839. {
  840. "__id__": 62
  841. },
  842. {
  843. "__id__": 66
  844. },
  845. {
  846. "__id__": 70
  847. }
  848. ],
  849. "_active": true,
  850. "_components": [
  851. {
  852. "__id__": 74
  853. },
  854. {
  855. "__id__": 76
  856. },
  857. {
  858. "__id__": 78
  859. }
  860. ],
  861. "_prefab": {
  862. "__id__": 80
  863. },
  864. "_lpos": {
  865. "__type__": "cc.Vec3",
  866. "x": -280,
  867. "y": 298.72299999999996,
  868. "z": 0
  869. },
  870. "_lrot": {
  871. "__type__": "cc.Quat",
  872. "x": 0,
  873. "y": 0,
  874. "z": 0,
  875. "w": 1
  876. },
  877. "_lscale": {
  878. "__type__": "cc.Vec3",
  879. "x": 1,
  880. "y": 1,
  881. "z": 1
  882. },
  883. "_mobility": 0,
  884. "_layer": 33554432,
  885. "_euler": {
  886. "__type__": "cc.Vec3",
  887. "x": 0,
  888. "y": 0,
  889. "z": 0
  890. },
  891. "_id": ""
  892. },
  893. {
  894. "__type__": "cc.Node",
  895. "_name": "slot3",
  896. "_objFlags": 0,
  897. "__editorExtras__": {},
  898. "_parent": {
  899. "__id__": 29
  900. },
  901. "_children": [],
  902. "_active": true,
  903. "_components": [
  904. {
  905. "__id__": 31
  906. }
  907. ],
  908. "_prefab": {
  909. "__id__": 33
  910. },
  911. "_lpos": {
  912. "__type__": "cc.Vec3",
  913. "x": 90,
  914. "y": -90,
  915. "z": 0
  916. },
  917. "_lrot": {
  918. "__type__": "cc.Quat",
  919. "x": 0,
  920. "y": 0,
  921. "z": 0,
  922. "w": 1
  923. },
  924. "_lscale": {
  925. "__type__": "cc.Vec3",
  926. "x": 1,
  927. "y": 1,
  928. "z": 1
  929. },
  930. "_mobility": 0,
  931. "_layer": 33554432,
  932. "_euler": {
  933. "__type__": "cc.Vec3",
  934. "x": 0,
  935. "y": 0,
  936. "z": 0
  937. },
  938. "_id": ""
  939. },
  940. {
  941. "__type__": "cc.UITransform",
  942. "_name": "",
  943. "_objFlags": 0,
  944. "__editorExtras__": {},
  945. "node": {
  946. "__id__": 30
  947. },
  948. "_enabled": true,
  949. "__prefab": {
  950. "__id__": 32
  951. },
  952. "_contentSize": {
  953. "__type__": "cc.Size",
  954. "width": 180,
  955. "height": 180
  956. },
  957. "_anchorPoint": {
  958. "__type__": "cc.Vec2",
  959. "x": 0.5,
  960. "y": 0.5
  961. },
  962. "_id": ""
  963. },
  964. {
  965. "__type__": "cc.CompPrefabInfo",
  966. "fileId": "2bc1fdjTdL5onSQxJLikVy"
  967. },
  968. {
  969. "__type__": "cc.PrefabInfo",
  970. "root": {
  971. "__id__": 1
  972. },
  973. "asset": {
  974. "__id__": 0
  975. },
  976. "fileId": "7djTOidABMoKzMkCknzK8z",
  977. "instance": null,
  978. "targetOverrides": null,
  979. "nestedPrefabInstanceRoots": null
  980. },
  981. {
  982. "__type__": "cc.Node",
  983. "_name": "slot4",
  984. "_objFlags": 0,
  985. "__editorExtras__": {},
  986. "_parent": {
  987. "__id__": 29
  988. },
  989. "_children": [],
  990. "_active": true,
  991. "_components": [
  992. {
  993. "__id__": 35
  994. }
  995. ],
  996. "_prefab": {
  997. "__id__": 37
  998. },
  999. "_lpos": {
  1000. "__type__": "cc.Vec3",
  1001. "x": 280,
  1002. "y": -90,
  1003. "z": 0
  1004. },
  1005. "_lrot": {
  1006. "__type__": "cc.Quat",
  1007. "x": 0,
  1008. "y": 0,
  1009. "z": 0,
  1010. "w": 1
  1011. },
  1012. "_lscale": {
  1013. "__type__": "cc.Vec3",
  1014. "x": 1,
  1015. "y": 1,
  1016. "z": 1
  1017. },
  1018. "_mobility": 0,
  1019. "_layer": 33554432,
  1020. "_euler": {
  1021. "__type__": "cc.Vec3",
  1022. "x": 0,
  1023. "y": 0,
  1024. "z": 0
  1025. },
  1026. "_id": ""
  1027. },
  1028. {
  1029. "__type__": "cc.UITransform",
  1030. "_name": "",
  1031. "_objFlags": 0,
  1032. "__editorExtras__": {},
  1033. "node": {
  1034. "__id__": 34
  1035. },
  1036. "_enabled": true,
  1037. "__prefab": {
  1038. "__id__": 36
  1039. },
  1040. "_contentSize": {
  1041. "__type__": "cc.Size",
  1042. "width": 180,
  1043. "height": 180
  1044. },
  1045. "_anchorPoint": {
  1046. "__type__": "cc.Vec2",
  1047. "x": 0.5,
  1048. "y": 0.5
  1049. },
  1050. "_id": ""
  1051. },
  1052. {
  1053. "__type__": "cc.CompPrefabInfo",
  1054. "fileId": "88FSV+kjNAbYIamAoq5DAF"
  1055. },
  1056. {
  1057. "__type__": "cc.PrefabInfo",
  1058. "root": {
  1059. "__id__": 1
  1060. },
  1061. "asset": {
  1062. "__id__": 0
  1063. },
  1064. "fileId": "d3l2XJnJRD9IiLmuC1YP2M",
  1065. "instance": null,
  1066. "targetOverrides": null,
  1067. "nestedPrefabInstanceRoots": null
  1068. },
  1069. {
  1070. "__type__": "cc.Node",
  1071. "_name": "slot5",
  1072. "_objFlags": 0,
  1073. "__editorExtras__": {},
  1074. "_parent": {
  1075. "__id__": 29
  1076. },
  1077. "_children": [],
  1078. "_active": true,
  1079. "_components": [
  1080. {
  1081. "__id__": 39
  1082. }
  1083. ],
  1084. "_prefab": {
  1085. "__id__": 41
  1086. },
  1087. "_lpos": {
  1088. "__type__": "cc.Vec3",
  1089. "x": 470,
  1090. "y": -90,
  1091. "z": 0
  1092. },
  1093. "_lrot": {
  1094. "__type__": "cc.Quat",
  1095. "x": 0,
  1096. "y": 0,
  1097. "z": 0,
  1098. "w": 1
  1099. },
  1100. "_lscale": {
  1101. "__type__": "cc.Vec3",
  1102. "x": 1,
  1103. "y": 1,
  1104. "z": 1
  1105. },
  1106. "_mobility": 0,
  1107. "_layer": 33554432,
  1108. "_euler": {
  1109. "__type__": "cc.Vec3",
  1110. "x": 0,
  1111. "y": 0,
  1112. "z": 0
  1113. },
  1114. "_id": ""
  1115. },
  1116. {
  1117. "__type__": "cc.UITransform",
  1118. "_name": "",
  1119. "_objFlags": 0,
  1120. "__editorExtras__": {},
  1121. "node": {
  1122. "__id__": 38
  1123. },
  1124. "_enabled": true,
  1125. "__prefab": {
  1126. "__id__": 40
  1127. },
  1128. "_contentSize": {
  1129. "__type__": "cc.Size",
  1130. "width": 180,
  1131. "height": 180
  1132. },
  1133. "_anchorPoint": {
  1134. "__type__": "cc.Vec2",
  1135. "x": 0.5,
  1136. "y": 0.5
  1137. },
  1138. "_id": ""
  1139. },
  1140. {
  1141. "__type__": "cc.CompPrefabInfo",
  1142. "fileId": "b6lU/P/NVISrZBRhXfXhmc"
  1143. },
  1144. {
  1145. "__type__": "cc.PrefabInfo",
  1146. "root": {
  1147. "__id__": 1
  1148. },
  1149. "asset": {
  1150. "__id__": 0
  1151. },
  1152. "fileId": "ddpDO4qwBMMaCHqAZVVDYe",
  1153. "instance": null,
  1154. "targetOverrides": null,
  1155. "nestedPrefabInstanceRoots": null
  1156. },
  1157. {
  1158. "__type__": "cc.Node",
  1159. "_name": "slot2",
  1160. "_objFlags": 0,
  1161. "__editorExtras__": {},
  1162. "_parent": {
  1163. "__id__": 29
  1164. },
  1165. "_children": [],
  1166. "_active": true,
  1167. "_components": [
  1168. {
  1169. "__id__": 43
  1170. }
  1171. ],
  1172. "_prefab": {
  1173. "__id__": 45
  1174. },
  1175. "_lpos": {
  1176. "__type__": "cc.Vec3",
  1177. "x": 90,
  1178. "y": -290,
  1179. "z": 0
  1180. },
  1181. "_lrot": {
  1182. "__type__": "cc.Quat",
  1183. "x": 0,
  1184. "y": 0,
  1185. "z": 0,
  1186. "w": 1
  1187. },
  1188. "_lscale": {
  1189. "__type__": "cc.Vec3",
  1190. "x": 1,
  1191. "y": 1,
  1192. "z": 1
  1193. },
  1194. "_mobility": 0,
  1195. "_layer": 33554432,
  1196. "_euler": {
  1197. "__type__": "cc.Vec3",
  1198. "x": 0,
  1199. "y": 0,
  1200. "z": 0
  1201. },
  1202. "_id": ""
  1203. },
  1204. {
  1205. "__type__": "cc.UITransform",
  1206. "_name": "",
  1207. "_objFlags": 0,
  1208. "__editorExtras__": {},
  1209. "node": {
  1210. "__id__": 42
  1211. },
  1212. "_enabled": true,
  1213. "__prefab": {
  1214. "__id__": 44
  1215. },
  1216. "_contentSize": {
  1217. "__type__": "cc.Size",
  1218. "width": 180,
  1219. "height": 180
  1220. },
  1221. "_anchorPoint": {
  1222. "__type__": "cc.Vec2",
  1223. "x": 0.5,
  1224. "y": 0.5
  1225. },
  1226. "_id": ""
  1227. },
  1228. {
  1229. "__type__": "cc.CompPrefabInfo",
  1230. "fileId": "f9sdYfc/RIwa2qdLs6Ec2y"
  1231. },
  1232. {
  1233. "__type__": "cc.PrefabInfo",
  1234. "root": {
  1235. "__id__": 1
  1236. },
  1237. "asset": {
  1238. "__id__": 0
  1239. },
  1240. "fileId": "f63/qG8EJKEq3vSwtjDk/7",
  1241. "instance": null,
  1242. "targetOverrides": null,
  1243. "nestedPrefabInstanceRoots": null
  1244. },
  1245. {
  1246. "__type__": "cc.Node",
  1247. "_name": "slot1",
  1248. "_objFlags": 0,
  1249. "__editorExtras__": {},
  1250. "_parent": {
  1251. "__id__": 29
  1252. },
  1253. "_children": [],
  1254. "_active": true,
  1255. "_components": [
  1256. {
  1257. "__id__": 47
  1258. }
  1259. ],
  1260. "_prefab": {
  1261. "__id__": 49
  1262. },
  1263. "_lpos": {
  1264. "__type__": "cc.Vec3",
  1265. "x": 280,
  1266. "y": -290,
  1267. "z": 0
  1268. },
  1269. "_lrot": {
  1270. "__type__": "cc.Quat",
  1271. "x": 0,
  1272. "y": 0,
  1273. "z": 0,
  1274. "w": 1
  1275. },
  1276. "_lscale": {
  1277. "__type__": "cc.Vec3",
  1278. "x": 1,
  1279. "y": 1,
  1280. "z": 1
  1281. },
  1282. "_mobility": 0,
  1283. "_layer": 33554432,
  1284. "_euler": {
  1285. "__type__": "cc.Vec3",
  1286. "x": 0,
  1287. "y": 0,
  1288. "z": 0
  1289. },
  1290. "_id": ""
  1291. },
  1292. {
  1293. "__type__": "cc.UITransform",
  1294. "_name": "",
  1295. "_objFlags": 0,
  1296. "__editorExtras__": {},
  1297. "node": {
  1298. "__id__": 46
  1299. },
  1300. "_enabled": true,
  1301. "__prefab": {
  1302. "__id__": 48
  1303. },
  1304. "_contentSize": {
  1305. "__type__": "cc.Size",
  1306. "width": 180,
  1307. "height": 180
  1308. },
  1309. "_anchorPoint": {
  1310. "__type__": "cc.Vec2",
  1311. "x": 0.5,
  1312. "y": 0.5
  1313. },
  1314. "_id": ""
  1315. },
  1316. {
  1317. "__type__": "cc.CompPrefabInfo",
  1318. "fileId": "08RJOC6jFHVbyzdGlNVrJI"
  1319. },
  1320. {
  1321. "__type__": "cc.PrefabInfo",
  1322. "root": {
  1323. "__id__": 1
  1324. },
  1325. "asset": {
  1326. "__id__": 0
  1327. },
  1328. "fileId": "980wTLLB9GRJSWBQ2rVFhE",
  1329. "instance": null,
  1330. "targetOverrides": null,
  1331. "nestedPrefabInstanceRoots": null
  1332. },
  1333. {
  1334. "__type__": "cc.Node",
  1335. "_name": "slot6",
  1336. "_objFlags": 0,
  1337. "__editorExtras__": {},
  1338. "_parent": {
  1339. "__id__": 29
  1340. },
  1341. "_children": [],
  1342. "_active": true,
  1343. "_components": [
  1344. {
  1345. "__id__": 51
  1346. }
  1347. ],
  1348. "_prefab": {
  1349. "__id__": 53
  1350. },
  1351. "_lpos": {
  1352. "__type__": "cc.Vec3",
  1353. "x": 470,
  1354. "y": -290,
  1355. "z": 0
  1356. },
  1357. "_lrot": {
  1358. "__type__": "cc.Quat",
  1359. "x": 0,
  1360. "y": 0,
  1361. "z": 0,
  1362. "w": 1
  1363. },
  1364. "_lscale": {
  1365. "__type__": "cc.Vec3",
  1366. "x": 1,
  1367. "y": 1,
  1368. "z": 1
  1369. },
  1370. "_mobility": 0,
  1371. "_layer": 33554432,
  1372. "_euler": {
  1373. "__type__": "cc.Vec3",
  1374. "x": 0,
  1375. "y": 0,
  1376. "z": 0
  1377. },
  1378. "_id": ""
  1379. },
  1380. {
  1381. "__type__": "cc.UITransform",
  1382. "_name": "",
  1383. "_objFlags": 0,
  1384. "__editorExtras__": {},
  1385. "node": {
  1386. "__id__": 50
  1387. },
  1388. "_enabled": true,
  1389. "__prefab": {
  1390. "__id__": 52
  1391. },
  1392. "_contentSize": {
  1393. "__type__": "cc.Size",
  1394. "width": 180,
  1395. "height": 180
  1396. },
  1397. "_anchorPoint": {
  1398. "__type__": "cc.Vec2",
  1399. "x": 0.5,
  1400. "y": 0.5
  1401. },
  1402. "_id": ""
  1403. },
  1404. {
  1405. "__type__": "cc.CompPrefabInfo",
  1406. "fileId": "d5+dWb64hKkIJoo1emM9k7"
  1407. },
  1408. {
  1409. "__type__": "cc.PrefabInfo",
  1410. "root": {
  1411. "__id__": 1
  1412. },
  1413. "asset": {
  1414. "__id__": 0
  1415. },
  1416. "fileId": "bdtFnbiG9IEKj1fzufFTZ5",
  1417. "instance": null,
  1418. "targetOverrides": null,
  1419. "nestedPrefabInstanceRoots": null
  1420. },
  1421. {
  1422. "__type__": "cc.Node",
  1423. "_name": "slot9",
  1424. "_objFlags": 0,
  1425. "__editorExtras__": {},
  1426. "_parent": {
  1427. "__id__": 29
  1428. },
  1429. "_children": [],
  1430. "_active": true,
  1431. "_components": [
  1432. {
  1433. "__id__": 55
  1434. }
  1435. ],
  1436. "_prefab": {
  1437. "__id__": 57
  1438. },
  1439. "_lpos": {
  1440. "__type__": "cc.Vec3",
  1441. "x": 90,
  1442. "y": -490,
  1443. "z": 0
  1444. },
  1445. "_lrot": {
  1446. "__type__": "cc.Quat",
  1447. "x": 0,
  1448. "y": 0,
  1449. "z": 0,
  1450. "w": 1
  1451. },
  1452. "_lscale": {
  1453. "__type__": "cc.Vec3",
  1454. "x": 1,
  1455. "y": 1,
  1456. "z": 1
  1457. },
  1458. "_mobility": 0,
  1459. "_layer": 33554432,
  1460. "_euler": {
  1461. "__type__": "cc.Vec3",
  1462. "x": 0,
  1463. "y": 0,
  1464. "z": 0
  1465. },
  1466. "_id": ""
  1467. },
  1468. {
  1469. "__type__": "cc.UITransform",
  1470. "_name": "",
  1471. "_objFlags": 0,
  1472. "__editorExtras__": {},
  1473. "node": {
  1474. "__id__": 54
  1475. },
  1476. "_enabled": true,
  1477. "__prefab": {
  1478. "__id__": 56
  1479. },
  1480. "_contentSize": {
  1481. "__type__": "cc.Size",
  1482. "width": 180,
  1483. "height": 180
  1484. },
  1485. "_anchorPoint": {
  1486. "__type__": "cc.Vec2",
  1487. "x": 0.5,
  1488. "y": 0.5
  1489. },
  1490. "_id": ""
  1491. },
  1492. {
  1493. "__type__": "cc.CompPrefabInfo",
  1494. "fileId": "aak49sJ3pBY6MLqNhWA0Ec"
  1495. },
  1496. {
  1497. "__type__": "cc.PrefabInfo",
  1498. "root": {
  1499. "__id__": 1
  1500. },
  1501. "asset": {
  1502. "__id__": 0
  1503. },
  1504. "fileId": "30xvANVAJMcJUChaEAFfZx",
  1505. "instance": null,
  1506. "targetOverrides": null,
  1507. "nestedPrefabInstanceRoots": null
  1508. },
  1509. {
  1510. "__type__": "cc.Node",
  1511. "_name": "slot8",
  1512. "_objFlags": 0,
  1513. "__editorExtras__": {},
  1514. "_parent": {
  1515. "__id__": 29
  1516. },
  1517. "_children": [],
  1518. "_active": true,
  1519. "_components": [
  1520. {
  1521. "__id__": 59
  1522. }
  1523. ],
  1524. "_prefab": {
  1525. "__id__": 61
  1526. },
  1527. "_lpos": {
  1528. "__type__": "cc.Vec3",
  1529. "x": 280,
  1530. "y": -490,
  1531. "z": 0
  1532. },
  1533. "_lrot": {
  1534. "__type__": "cc.Quat",
  1535. "x": 0,
  1536. "y": 0,
  1537. "z": 0,
  1538. "w": 1
  1539. },
  1540. "_lscale": {
  1541. "__type__": "cc.Vec3",
  1542. "x": 1,
  1543. "y": 1,
  1544. "z": 1
  1545. },
  1546. "_mobility": 0,
  1547. "_layer": 33554432,
  1548. "_euler": {
  1549. "__type__": "cc.Vec3",
  1550. "x": 0,
  1551. "y": 0,
  1552. "z": 0
  1553. },
  1554. "_id": ""
  1555. },
  1556. {
  1557. "__type__": "cc.UITransform",
  1558. "_name": "",
  1559. "_objFlags": 0,
  1560. "__editorExtras__": {},
  1561. "node": {
  1562. "__id__": 58
  1563. },
  1564. "_enabled": true,
  1565. "__prefab": {
  1566. "__id__": 60
  1567. },
  1568. "_contentSize": {
  1569. "__type__": "cc.Size",
  1570. "width": 180,
  1571. "height": 180
  1572. },
  1573. "_anchorPoint": {
  1574. "__type__": "cc.Vec2",
  1575. "x": 0.5,
  1576. "y": 0.5
  1577. },
  1578. "_id": ""
  1579. },
  1580. {
  1581. "__type__": "cc.CompPrefabInfo",
  1582. "fileId": "1c5kVauddG7aBpyv8l7+BI"
  1583. },
  1584. {
  1585. "__type__": "cc.PrefabInfo",
  1586. "root": {
  1587. "__id__": 1
  1588. },
  1589. "asset": {
  1590. "__id__": 0
  1591. },
  1592. "fileId": "2dhG+IadRIhYixw4ZcAXMe",
  1593. "instance": null,
  1594. "targetOverrides": null,
  1595. "nestedPrefabInstanceRoots": null
  1596. },
  1597. {
  1598. "__type__": "cc.Node",
  1599. "_name": "slot7",
  1600. "_objFlags": 0,
  1601. "__editorExtras__": {},
  1602. "_parent": {
  1603. "__id__": 29
  1604. },
  1605. "_children": [],
  1606. "_active": true,
  1607. "_components": [
  1608. {
  1609. "__id__": 63
  1610. }
  1611. ],
  1612. "_prefab": {
  1613. "__id__": 65
  1614. },
  1615. "_lpos": {
  1616. "__type__": "cc.Vec3",
  1617. "x": 470,
  1618. "y": -490,
  1619. "z": 0
  1620. },
  1621. "_lrot": {
  1622. "__type__": "cc.Quat",
  1623. "x": 0,
  1624. "y": 0,
  1625. "z": 0,
  1626. "w": 1
  1627. },
  1628. "_lscale": {
  1629. "__type__": "cc.Vec3",
  1630. "x": 1,
  1631. "y": 1,
  1632. "z": 1
  1633. },
  1634. "_mobility": 0,
  1635. "_layer": 33554432,
  1636. "_euler": {
  1637. "__type__": "cc.Vec3",
  1638. "x": 0,
  1639. "y": 0,
  1640. "z": 0
  1641. },
  1642. "_id": ""
  1643. },
  1644. {
  1645. "__type__": "cc.UITransform",
  1646. "_name": "",
  1647. "_objFlags": 0,
  1648. "__editorExtras__": {},
  1649. "node": {
  1650. "__id__": 62
  1651. },
  1652. "_enabled": true,
  1653. "__prefab": {
  1654. "__id__": 64
  1655. },
  1656. "_contentSize": {
  1657. "__type__": "cc.Size",
  1658. "width": 180,
  1659. "height": 180
  1660. },
  1661. "_anchorPoint": {
  1662. "__type__": "cc.Vec2",
  1663. "x": 0.5,
  1664. "y": 0.5
  1665. },
  1666. "_id": ""
  1667. },
  1668. {
  1669. "__type__": "cc.CompPrefabInfo",
  1670. "fileId": "55F/AM2lRBy6DoPl8orsdD"
  1671. },
  1672. {
  1673. "__type__": "cc.PrefabInfo",
  1674. "root": {
  1675. "__id__": 1
  1676. },
  1677. "asset": {
  1678. "__id__": 0
  1679. },
  1680. "fileId": "698rpDSLpOT4G8PrY8N1st",
  1681. "instance": null,
  1682. "targetOverrides": null,
  1683. "nestedPrefabInstanceRoots": null
  1684. },
  1685. {
  1686. "__type__": "cc.Node",
  1687. "_name": "slot11",
  1688. "_objFlags": 0,
  1689. "__editorExtras__": {},
  1690. "_parent": {
  1691. "__id__": 29
  1692. },
  1693. "_children": [],
  1694. "_active": true,
  1695. "_components": [
  1696. {
  1697. "__id__": 67
  1698. }
  1699. ],
  1700. "_prefab": {
  1701. "__id__": 69
  1702. },
  1703. "_lpos": {
  1704. "__type__": "cc.Vec3",
  1705. "x": 90,
  1706. "y": -690,
  1707. "z": 0
  1708. },
  1709. "_lrot": {
  1710. "__type__": "cc.Quat",
  1711. "x": 0,
  1712. "y": 0,
  1713. "z": 0,
  1714. "w": 1
  1715. },
  1716. "_lscale": {
  1717. "__type__": "cc.Vec3",
  1718. "x": 1,
  1719. "y": 1,
  1720. "z": 1
  1721. },
  1722. "_mobility": 0,
  1723. "_layer": 33554432,
  1724. "_euler": {
  1725. "__type__": "cc.Vec3",
  1726. "x": 0,
  1727. "y": 0,
  1728. "z": 0
  1729. },
  1730. "_id": ""
  1731. },
  1732. {
  1733. "__type__": "cc.UITransform",
  1734. "_name": "",
  1735. "_objFlags": 0,
  1736. "__editorExtras__": {},
  1737. "node": {
  1738. "__id__": 66
  1739. },
  1740. "_enabled": true,
  1741. "__prefab": {
  1742. "__id__": 68
  1743. },
  1744. "_contentSize": {
  1745. "__type__": "cc.Size",
  1746. "width": 180,
  1747. "height": 180
  1748. },
  1749. "_anchorPoint": {
  1750. "__type__": "cc.Vec2",
  1751. "x": 0.5,
  1752. "y": 0.5
  1753. },
  1754. "_id": ""
  1755. },
  1756. {
  1757. "__type__": "cc.CompPrefabInfo",
  1758. "fileId": "53aOPYWiBNSZzv+SIMnW6/"
  1759. },
  1760. {
  1761. "__type__": "cc.PrefabInfo",
  1762. "root": {
  1763. "__id__": 1
  1764. },
  1765. "asset": {
  1766. "__id__": 0
  1767. },
  1768. "fileId": "efg20CvRxHzqB/dp2B0KVV",
  1769. "instance": null,
  1770. "targetOverrides": null,
  1771. "nestedPrefabInstanceRoots": null
  1772. },
  1773. {
  1774. "__type__": "cc.Node",
  1775. "_name": "slot10",
  1776. "_objFlags": 0,
  1777. "__editorExtras__": {},
  1778. "_parent": {
  1779. "__id__": 29
  1780. },
  1781. "_children": [],
  1782. "_active": true,
  1783. "_components": [
  1784. {
  1785. "__id__": 71
  1786. }
  1787. ],
  1788. "_prefab": {
  1789. "__id__": 73
  1790. },
  1791. "_lpos": {
  1792. "__type__": "cc.Vec3",
  1793. "x": 280,
  1794. "y": -690,
  1795. "z": 0
  1796. },
  1797. "_lrot": {
  1798. "__type__": "cc.Quat",
  1799. "x": 0,
  1800. "y": 0,
  1801. "z": 0,
  1802. "w": 1
  1803. },
  1804. "_lscale": {
  1805. "__type__": "cc.Vec3",
  1806. "x": 1,
  1807. "y": 1,
  1808. "z": 1
  1809. },
  1810. "_mobility": 0,
  1811. "_layer": 33554432,
  1812. "_euler": {
  1813. "__type__": "cc.Vec3",
  1814. "x": 0,
  1815. "y": 0,
  1816. "z": 0
  1817. },
  1818. "_id": ""
  1819. },
  1820. {
  1821. "__type__": "cc.UITransform",
  1822. "_name": "",
  1823. "_objFlags": 0,
  1824. "__editorExtras__": {},
  1825. "node": {
  1826. "__id__": 70
  1827. },
  1828. "_enabled": true,
  1829. "__prefab": {
  1830. "__id__": 72
  1831. },
  1832. "_contentSize": {
  1833. "__type__": "cc.Size",
  1834. "width": 180,
  1835. "height": 180
  1836. },
  1837. "_anchorPoint": {
  1838. "__type__": "cc.Vec2",
  1839. "x": 0.5,
  1840. "y": 0.5
  1841. },
  1842. "_id": ""
  1843. },
  1844. {
  1845. "__type__": "cc.CompPrefabInfo",
  1846. "fileId": "e9kRhOlLlDHZ4nrxk6FmXs"
  1847. },
  1848. {
  1849. "__type__": "cc.PrefabInfo",
  1850. "root": {
  1851. "__id__": 1
  1852. },
  1853. "asset": {
  1854. "__id__": 0
  1855. },
  1856. "fileId": "2avfr0FehNwJFyq4qtnAlM",
  1857. "instance": null,
  1858. "targetOverrides": null,
  1859. "nestedPrefabInstanceRoots": null
  1860. },
  1861. {
  1862. "__type__": "cc.UITransform",
  1863. "_name": "",
  1864. "_objFlags": 0,
  1865. "__editorExtras__": {},
  1866. "node": {
  1867. "__id__": 29
  1868. },
  1869. "_enabled": true,
  1870. "__prefab": {
  1871. "__id__": 75
  1872. },
  1873. "_contentSize": {
  1874. "__type__": "cc.Size",
  1875. "width": 560,
  1876. "height": 780
  1877. },
  1878. "_anchorPoint": {
  1879. "__type__": "cc.Vec2",
  1880. "x": 0,
  1881. "y": 1
  1882. },
  1883. "_id": ""
  1884. },
  1885. {
  1886. "__type__": "cc.CompPrefabInfo",
  1887. "fileId": "17mFQker5E2o5rvpk4W0b4"
  1888. },
  1889. {
  1890. "__type__": "cc.Layout",
  1891. "_name": "",
  1892. "_objFlags": 0,
  1893. "__editorExtras__": {},
  1894. "node": {
  1895. "__id__": 29
  1896. },
  1897. "_enabled": true,
  1898. "__prefab": {
  1899. "__id__": 77
  1900. },
  1901. "_resizeMode": 1,
  1902. "_layoutType": 3,
  1903. "_cellSize": {
  1904. "__type__": "cc.Size",
  1905. "width": 40,
  1906. "height": 40
  1907. },
  1908. "_startAxis": 0,
  1909. "_paddingLeft": 0,
  1910. "_paddingRight": 0,
  1911. "_paddingTop": 0,
  1912. "_paddingBottom": 0,
  1913. "_spacingX": 10,
  1914. "_spacingY": 20,
  1915. "_verticalDirection": 1,
  1916. "_horizontalDirection": 0,
  1917. "_constraint": 2,
  1918. "_constraintNum": 3,
  1919. "_affectedByScale": false,
  1920. "_isAlign": false,
  1921. "_id": ""
  1922. },
  1923. {
  1924. "__type__": "cc.CompPrefabInfo",
  1925. "fileId": "0aaLU2ZIVK55joANFLN2Z2"
  1926. },
  1927. {
  1928. "__type__": "cc.Widget",
  1929. "_name": "",
  1930. "_objFlags": 0,
  1931. "__editorExtras__": {},
  1932. "node": {
  1933. "__id__": 29
  1934. },
  1935. "_enabled": true,
  1936. "__prefab": {
  1937. "__id__": 79
  1938. },
  1939. "_alignFlags": 40,
  1940. "_target": null,
  1941. "_left": 20,
  1942. "_right": 20,
  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": 560,
  1954. "_originalHeight": 0,
  1955. "_alignMode": 2,
  1956. "_lockFlags": 0,
  1957. "_id": ""
  1958. },
  1959. {
  1960. "__type__": "cc.CompPrefabInfo",
  1961. "fileId": "a36pC51KhE2JZpEiBykOdP"
  1962. },
  1963. {
  1964. "__type__": "cc.PrefabInfo",
  1965. "root": {
  1966. "__id__": 1
  1967. },
  1968. "asset": {
  1969. "__id__": 0
  1970. },
  1971. "fileId": "ccjqTV2o5NP6kZCCN2SlQt",
  1972. "instance": null,
  1973. "targetOverrides": null,
  1974. "nestedPrefabInstanceRoots": null
  1975. },
  1976. {
  1977. "__type__": "cc.UITransform",
  1978. "_name": "",
  1979. "_objFlags": 0,
  1980. "__editorExtras__": {},
  1981. "node": {
  1982. "__id__": 28
  1983. },
  1984. "_enabled": true,
  1985. "__prefab": {
  1986. "__id__": 82
  1987. },
  1988. "_contentSize": {
  1989. "__type__": "cc.Size",
  1990. "width": 600,
  1991. "height": 600
  1992. },
  1993. "_anchorPoint": {
  1994. "__type__": "cc.Vec2",
  1995. "x": 0.5,
  1996. "y": 0.5
  1997. },
  1998. "_id": ""
  1999. },
  2000. {
  2001. "__type__": "cc.CompPrefabInfo",
  2002. "fileId": "c0e7yk5hhGn70l1CvzZEhn"
  2003. },
  2004. {
  2005. "__type__": "cc.Mask",
  2006. "_name": "",
  2007. "_objFlags": 0,
  2008. "__editorExtras__": {},
  2009. "node": {
  2010. "__id__": 28
  2011. },
  2012. "_enabled": true,
  2013. "__prefab": {
  2014. "__id__": 84
  2015. },
  2016. "_type": 0,
  2017. "_inverted": false,
  2018. "_segments": 64,
  2019. "_alphaThreshold": 0.1,
  2020. "_id": ""
  2021. },
  2022. {
  2023. "__type__": "cc.CompPrefabInfo",
  2024. "fileId": "c1tVAvXolBa4tkyoe0o8Dt"
  2025. },
  2026. {
  2027. "__type__": "cc.Graphics",
  2028. "_name": "",
  2029. "_objFlags": 0,
  2030. "__editorExtras__": {},
  2031. "node": {
  2032. "__id__": 28
  2033. },
  2034. "_enabled": true,
  2035. "__prefab": {
  2036. "__id__": 86
  2037. },
  2038. "_customMaterial": null,
  2039. "_srcBlendFactor": 2,
  2040. "_dstBlendFactor": 4,
  2041. "_color": {
  2042. "__type__": "cc.Color",
  2043. "r": 255,
  2044. "g": 255,
  2045. "b": 255,
  2046. "a": 255
  2047. },
  2048. "_lineWidth": 1,
  2049. "_strokeColor": {
  2050. "__type__": "cc.Color",
  2051. "r": 0,
  2052. "g": 0,
  2053. "b": 0,
  2054. "a": 255
  2055. },
  2056. "_lineJoin": 2,
  2057. "_lineCap": 0,
  2058. "_fillColor": {
  2059. "__type__": "cc.Color",
  2060. "r": 255,
  2061. "g": 255,
  2062. "b": 255,
  2063. "a": 0
  2064. },
  2065. "_miterLimit": 10,
  2066. "_id": ""
  2067. },
  2068. {
  2069. "__type__": "cc.CompPrefabInfo",
  2070. "fileId": "26OpntZaxL046gyxRgtwQQ"
  2071. },
  2072. {
  2073. "__type__": "cc.PrefabInfo",
  2074. "root": {
  2075. "__id__": 1
  2076. },
  2077. "asset": {
  2078. "__id__": 0
  2079. },
  2080. "fileId": "20Z/HV+dBBX499lKFNK5aQ",
  2081. "instance": null,
  2082. "targetOverrides": null,
  2083. "nestedPrefabInstanceRoots": null
  2084. },
  2085. {
  2086. "__type__": "cc.UITransform",
  2087. "_name": "",
  2088. "_objFlags": 0,
  2089. "__editorExtras__": {},
  2090. "node": {
  2091. "__id__": 27
  2092. },
  2093. "_enabled": true,
  2094. "__prefab": {
  2095. "__id__": 89
  2096. },
  2097. "_contentSize": {
  2098. "__type__": "cc.Size",
  2099. "width": 640,
  2100. "height": 640
  2101. },
  2102. "_anchorPoint": {
  2103. "__type__": "cc.Vec2",
  2104. "x": 0.5,
  2105. "y": 0.5
  2106. },
  2107. "_id": ""
  2108. },
  2109. {
  2110. "__type__": "cc.CompPrefabInfo",
  2111. "fileId": "88P6A2TxNNkYLMjfmUaCCn"
  2112. },
  2113. {
  2114. "__type__": "cc.Sprite",
  2115. "_name": "",
  2116. "_objFlags": 0,
  2117. "__editorExtras__": {},
  2118. "node": {
  2119. "__id__": 27
  2120. },
  2121. "_enabled": false,
  2122. "__prefab": {
  2123. "__id__": 91
  2124. },
  2125. "_customMaterial": null,
  2126. "_srcBlendFactor": 2,
  2127. "_dstBlendFactor": 4,
  2128. "_color": {
  2129. "__type__": "cc.Color",
  2130. "r": 255,
  2131. "g": 255,
  2132. "b": 255,
  2133. "a": 255
  2134. },
  2135. "_spriteFrame": {
  2136. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  2137. "__expectedType__": "cc.SpriteFrame"
  2138. },
  2139. "_type": 1,
  2140. "_fillType": 0,
  2141. "_sizeMode": 0,
  2142. "_fillCenter": {
  2143. "__type__": "cc.Vec2",
  2144. "x": 0,
  2145. "y": 0
  2146. },
  2147. "_fillStart": 0,
  2148. "_fillRange": 0,
  2149. "_isTrimmedMode": true,
  2150. "_useGrayscale": false,
  2151. "_atlas": null,
  2152. "_id": ""
  2153. },
  2154. {
  2155. "__type__": "cc.CompPrefabInfo",
  2156. "fileId": "d04tg+0BhGWLtK436d6Nq4"
  2157. },
  2158. {
  2159. "__type__": "cc.ScrollView",
  2160. "_name": "",
  2161. "_objFlags": 0,
  2162. "__editorExtras__": {},
  2163. "node": {
  2164. "__id__": 27
  2165. },
  2166. "_enabled": true,
  2167. "__prefab": {
  2168. "__id__": 93
  2169. },
  2170. "bounceDuration": 0.23,
  2171. "brake": 0.75,
  2172. "elastic": true,
  2173. "inertia": true,
  2174. "horizontal": false,
  2175. "vertical": true,
  2176. "cancelInnerEvents": true,
  2177. "scrollEvents": [],
  2178. "_content": {
  2179. "__id__": 29
  2180. },
  2181. "_horizontalScrollBar": null,
  2182. "_verticalScrollBar": null,
  2183. "_id": ""
  2184. },
  2185. {
  2186. "__type__": "cc.CompPrefabInfo",
  2187. "fileId": "3f6tX48MZD4KflHyvG/+8T"
  2188. },
  2189. {
  2190. "__type__": "cc.PrefabInfo",
  2191. "root": {
  2192. "__id__": 1
  2193. },
  2194. "asset": {
  2195. "__id__": 0
  2196. },
  2197. "fileId": "b6hBTJLNBEcKbn1HdXHZ2a",
  2198. "instance": null,
  2199. "targetOverrides": null,
  2200. "nestedPrefabInstanceRoots": null
  2201. },
  2202. {
  2203. "__type__": "cc.UITransform",
  2204. "_name": "",
  2205. "_objFlags": 0,
  2206. "__editorExtras__": {},
  2207. "node": {
  2208. "__id__": 26
  2209. },
  2210. "_enabled": true,
  2211. "__prefab": {
  2212. "__id__": 96
  2213. },
  2214. "_contentSize": {
  2215. "__type__": "cc.Size",
  2216. "width": 640,
  2217. "height": 640
  2218. },
  2219. "_anchorPoint": {
  2220. "__type__": "cc.Vec2",
  2221. "x": 0.5,
  2222. "y": 0.5
  2223. },
  2224. "_id": ""
  2225. },
  2226. {
  2227. "__type__": "cc.CompPrefabInfo",
  2228. "fileId": "11aLb4r8FMza8z5BK7Fmw7"
  2229. },
  2230. {
  2231. "__type__": "cc.Sprite",
  2232. "_name": "",
  2233. "_objFlags": 0,
  2234. "__editorExtras__": {},
  2235. "node": {
  2236. "__id__": 26
  2237. },
  2238. "_enabled": true,
  2239. "__prefab": {
  2240. "__id__": 98
  2241. },
  2242. "_customMaterial": null,
  2243. "_srcBlendFactor": 2,
  2244. "_dstBlendFactor": 4,
  2245. "_color": {
  2246. "__type__": "cc.Color",
  2247. "r": 255,
  2248. "g": 255,
  2249. "b": 255,
  2250. "a": 255
  2251. },
  2252. "_spriteFrame": {
  2253. "__uuid__": "f1fa8edd-957f-4cd3-93a8-9fc4e783c5a5@f9941",
  2254. "__expectedType__": "cc.SpriteFrame"
  2255. },
  2256. "_type": 1,
  2257. "_fillType": 0,
  2258. "_sizeMode": 0,
  2259. "_fillCenter": {
  2260. "__type__": "cc.Vec2",
  2261. "x": 0,
  2262. "y": 0
  2263. },
  2264. "_fillStart": 0,
  2265. "_fillRange": 0,
  2266. "_isTrimmedMode": true,
  2267. "_useGrayscale": false,
  2268. "_atlas": null,
  2269. "_id": ""
  2270. },
  2271. {
  2272. "__type__": "cc.CompPrefabInfo",
  2273. "fileId": "b10P37pFZCkZIftKBKicM0"
  2274. },
  2275. {
  2276. "__type__": "cc.Animation",
  2277. "_name": "",
  2278. "_objFlags": 0,
  2279. "__editorExtras__": {},
  2280. "node": {
  2281. "__id__": 26
  2282. },
  2283. "_enabled": true,
  2284. "__prefab": {
  2285. "__id__": 100
  2286. },
  2287. "playOnLoad": true,
  2288. "_clips": [
  2289. {
  2290. "__uuid__": "a0fff91a-a33e-49c2-b2b4-bfac4804bfbd",
  2291. "__expectedType__": "cc.AnimationClip"
  2292. }
  2293. ],
  2294. "_defaultClip": {
  2295. "__uuid__": "a0fff91a-a33e-49c2-b2b4-bfac4804bfbd",
  2296. "__expectedType__": "cc.AnimationClip"
  2297. },
  2298. "_id": ""
  2299. },
  2300. {
  2301. "__type__": "cc.CompPrefabInfo",
  2302. "fileId": "0eOQqYYu9PM5jIfZiKnc1C"
  2303. },
  2304. {
  2305. "__type__": "cc.PrefabInfo",
  2306. "root": {
  2307. "__id__": 1
  2308. },
  2309. "asset": {
  2310. "__id__": 0
  2311. },
  2312. "fileId": "e44z7miFdJyqwXK4dobznb",
  2313. "instance": null,
  2314. "targetOverrides": null,
  2315. "nestedPrefabInstanceRoots": null
  2316. },
  2317. {
  2318. "__type__": "cc.Node",
  2319. "_objFlags": 0,
  2320. "_parent": {
  2321. "__id__": 1
  2322. },
  2323. "_prefab": {
  2324. "__id__": 103
  2325. },
  2326. "__editorExtras__": {}
  2327. },
  2328. {
  2329. "__type__": "cc.PrefabInfo",
  2330. "root": {
  2331. "__id__": 102
  2332. },
  2333. "asset": {
  2334. "__uuid__": "0c78a08a-69a1-4ce4-a8f1-b75767410906",
  2335. "__expectedType__": "cc.Prefab"
  2336. },
  2337. "fileId": "45I+1vKipFEI9dort+hxeT",
  2338. "instance": {
  2339. "__id__": 104
  2340. },
  2341. "targetOverrides": null
  2342. },
  2343. {
  2344. "__type__": "cc.PrefabInstance",
  2345. "fileId": "deTGzhOehLvI6qtHu1vOpa",
  2346. "prefabRootNode": {
  2347. "__id__": 1
  2348. },
  2349. "mountedChildren": [],
  2350. "mountedComponents": [],
  2351. "propertyOverrides": [
  2352. {
  2353. "__id__": 105
  2354. },
  2355. {
  2356. "__id__": 107
  2357. },
  2358. {
  2359. "__id__": 108
  2360. },
  2361. {
  2362. "__id__": 109
  2363. },
  2364. {
  2365. "__id__": 110
  2366. }
  2367. ],
  2368. "removedComponents": []
  2369. },
  2370. {
  2371. "__type__": "CCPropertyOverrideInfo",
  2372. "targetInfo": {
  2373. "__id__": 106
  2374. },
  2375. "propertyPath": [
  2376. "_name"
  2377. ],
  2378. "value": "tap_close"
  2379. },
  2380. {
  2381. "__type__": "cc.TargetInfo",
  2382. "localID": [
  2383. "45I+1vKipFEI9dort+hxeT"
  2384. ]
  2385. },
  2386. {
  2387. "__type__": "CCPropertyOverrideInfo",
  2388. "targetInfo": {
  2389. "__id__": 106
  2390. },
  2391. "propertyPath": [
  2392. "_lpos"
  2393. ],
  2394. "value": {
  2395. "__type__": "cc.Vec3",
  2396. "x": 0,
  2397. "y": -457.983,
  2398. "z": 0
  2399. }
  2400. },
  2401. {
  2402. "__type__": "CCPropertyOverrideInfo",
  2403. "targetInfo": {
  2404. "__id__": 106
  2405. },
  2406. "propertyPath": [
  2407. "_lrot"
  2408. ],
  2409. "value": {
  2410. "__type__": "cc.Quat",
  2411. "x": 0,
  2412. "y": 0,
  2413. "z": 0,
  2414. "w": 1
  2415. }
  2416. },
  2417. {
  2418. "__type__": "CCPropertyOverrideInfo",
  2419. "targetInfo": {
  2420. "__id__": 106
  2421. },
  2422. "propertyPath": [
  2423. "_euler"
  2424. ],
  2425. "value": {
  2426. "__type__": "cc.Vec3",
  2427. "x": 0,
  2428. "y": 0,
  2429. "z": 0
  2430. }
  2431. },
  2432. {
  2433. "__type__": "CCPropertyOverrideInfo",
  2434. "targetInfo": {
  2435. "__id__": 111
  2436. },
  2437. "propertyPath": [
  2438. "_bottom"
  2439. ],
  2440. "value": 132.017
  2441. },
  2442. {
  2443. "__type__": "cc.TargetInfo",
  2444. "localID": [
  2445. "81v10z28BNqZ/Uwudx0+Am"
  2446. ]
  2447. },
  2448. {
  2449. "__type__": "cc.Node",
  2450. "_name": "lbl_nothing",
  2451. "_objFlags": 0,
  2452. "__editorExtras__": {},
  2453. "_parent": {
  2454. "__id__": 1
  2455. },
  2456. "_children": [],
  2457. "_active": false,
  2458. "_components": [
  2459. {
  2460. "__id__": 113
  2461. },
  2462. {
  2463. "__id__": 115
  2464. }
  2465. ],
  2466. "_prefab": {
  2467. "__id__": 117
  2468. },
  2469. "_lpos": {
  2470. "__type__": "cc.Vec3",
  2471. "x": -9.439999999999998,
  2472. "y": 17.397000000000048,
  2473. "z": 0
  2474. },
  2475. "_lrot": {
  2476. "__type__": "cc.Quat",
  2477. "x": 0,
  2478. "y": 0,
  2479. "z": 0,
  2480. "w": 1
  2481. },
  2482. "_lscale": {
  2483. "__type__": "cc.Vec3",
  2484. "x": 1,
  2485. "y": 1,
  2486. "z": 1
  2487. },
  2488. "_mobility": 0,
  2489. "_layer": 33554432,
  2490. "_euler": {
  2491. "__type__": "cc.Vec3",
  2492. "x": 0,
  2493. "y": 0,
  2494. "z": 0
  2495. },
  2496. "_id": ""
  2497. },
  2498. {
  2499. "__type__": "cc.UITransform",
  2500. "_name": "",
  2501. "_objFlags": 0,
  2502. "__editorExtras__": {},
  2503. "node": {
  2504. "__id__": 112
  2505. },
  2506. "_enabled": true,
  2507. "__prefab": {
  2508. "__id__": 114
  2509. },
  2510. "_contentSize": {
  2511. "__type__": "cc.Size",
  2512. "width": 443.82421875,
  2513. "height": 54.4
  2514. },
  2515. "_anchorPoint": {
  2516. "__type__": "cc.Vec2",
  2517. "x": 0.5,
  2518. "y": 0.5
  2519. },
  2520. "_id": ""
  2521. },
  2522. {
  2523. "__type__": "cc.CompPrefabInfo",
  2524. "fileId": "1bVBbOFTVCPK+jT3bbKWvU"
  2525. },
  2526. {
  2527. "__type__": "cc.Label",
  2528. "_name": "",
  2529. "_objFlags": 0,
  2530. "__editorExtras__": {},
  2531. "node": {
  2532. "__id__": 112
  2533. },
  2534. "_enabled": true,
  2535. "__prefab": {
  2536. "__id__": 116
  2537. },
  2538. "_customMaterial": null,
  2539. "_srcBlendFactor": 2,
  2540. "_dstBlendFactor": 4,
  2541. "_color": {
  2542. "__type__": "cc.Color",
  2543. "r": 255,
  2544. "g": 255,
  2545. "b": 255,
  2546. "a": 255
  2547. },
  2548. "_string": "You didn't get anything",
  2549. "_horizontalAlign": 1,
  2550. "_verticalAlign": 1,
  2551. "_actualFontSize": 40,
  2552. "_fontSize": 40,
  2553. "_fontFamily": "Arial",
  2554. "_lineHeight": 40,
  2555. "_overflow": 0,
  2556. "_enableWrapText": true,
  2557. "_font": null,
  2558. "_isSystemFontUsed": true,
  2559. "_spacingX": 0,
  2560. "_isItalic": false,
  2561. "_isBold": true,
  2562. "_isUnderline": false,
  2563. "_underlineHeight": 2,
  2564. "_cacheMode": 0,
  2565. "_enableOutline": true,
  2566. "_outlineColor": {
  2567. "__type__": "cc.Color",
  2568. "r": 0,
  2569. "g": 0,
  2570. "b": 0,
  2571. "a": 255
  2572. },
  2573. "_outlineWidth": 2,
  2574. "_enableShadow": false,
  2575. "_shadowColor": {
  2576. "__type__": "cc.Color",
  2577. "r": 0,
  2578. "g": 0,
  2579. "b": 0,
  2580. "a": 255
  2581. },
  2582. "_shadowOffset": {
  2583. "__type__": "cc.Vec2",
  2584. "x": 2,
  2585. "y": 2
  2586. },
  2587. "_shadowBlur": 2,
  2588. "_id": ""
  2589. },
  2590. {
  2591. "__type__": "cc.CompPrefabInfo",
  2592. "fileId": "e9TctXYB9On6jcEuvG3wKc"
  2593. },
  2594. {
  2595. "__type__": "cc.PrefabInfo",
  2596. "root": {
  2597. "__id__": 1
  2598. },
  2599. "asset": {
  2600. "__id__": 0
  2601. },
  2602. "fileId": "fde3Qq3rtOH5gL2rgs74VN",
  2603. "instance": null,
  2604. "targetOverrides": null,
  2605. "nestedPrefabInstanceRoots": null
  2606. },
  2607. {
  2608. "__type__": "cc.UITransform",
  2609. "_name": "",
  2610. "_objFlags": 0,
  2611. "__editorExtras__": {},
  2612. "node": {
  2613. "__id__": 1
  2614. },
  2615. "_enabled": true,
  2616. "__prefab": {
  2617. "__id__": 119
  2618. },
  2619. "_contentSize": {
  2620. "__type__": "cc.Size",
  2621. "width": 720,
  2622. "height": 1280
  2623. },
  2624. "_anchorPoint": {
  2625. "__type__": "cc.Vec2",
  2626. "x": 0.5,
  2627. "y": 0.5
  2628. },
  2629. "_id": ""
  2630. },
  2631. {
  2632. "__type__": "cc.CompPrefabInfo",
  2633. "fileId": "fchk3mMPlEEoRWrMPIpt/i"
  2634. },
  2635. {
  2636. "__type__": "cc.Widget",
  2637. "_name": "",
  2638. "_objFlags": 0,
  2639. "__editorExtras__": {},
  2640. "node": {
  2641. "__id__": 1
  2642. },
  2643. "_enabled": true,
  2644. "__prefab": {
  2645. "__id__": 121
  2646. },
  2647. "_alignFlags": 45,
  2648. "_target": null,
  2649. "_left": 0,
  2650. "_right": 0,
  2651. "_top": 0,
  2652. "_bottom": 0,
  2653. "_horizontalCenter": 0,
  2654. "_verticalCenter": 0,
  2655. "_isAbsLeft": true,
  2656. "_isAbsRight": true,
  2657. "_isAbsTop": true,
  2658. "_isAbsBottom": true,
  2659. "_isAbsHorizontalCenter": true,
  2660. "_isAbsVerticalCenter": true,
  2661. "_originalWidth": 100,
  2662. "_originalHeight": 100,
  2663. "_alignMode": 2,
  2664. "_lockFlags": 0,
  2665. "_id": ""
  2666. },
  2667. {
  2668. "__type__": "cc.CompPrefabInfo",
  2669. "fileId": "caGZgxR19HL6Z7oAmyrPlA"
  2670. },
  2671. {
  2672. "__type__": "29472nY13BC1a+wm6MzmJUx",
  2673. "_name": "",
  2674. "_objFlags": 0,
  2675. "__editorExtras__": {},
  2676. "node": {
  2677. "__id__": 1
  2678. },
  2679. "_enabled": true,
  2680. "__prefab": {
  2681. "__id__": 123
  2682. },
  2683. "_id": ""
  2684. },
  2685. {
  2686. "__type__": "cc.CompPrefabInfo",
  2687. "fileId": "b8fsSrJAVA8IM8MbKasLam"
  2688. },
  2689. {
  2690. "__type__": "cc.PrefabInfo",
  2691. "root": {
  2692. "__id__": 1
  2693. },
  2694. "asset": {
  2695. "__id__": 0
  2696. },
  2697. "fileId": "a1FjelHHtAzJyy283B//Nx",
  2698. "instance": null,
  2699. "targetOverrides": null,
  2700. "nestedPrefabInstanceRoots": [
  2701. {
  2702. "__id__": 102
  2703. }
  2704. ]
  2705. }
  2706. ]