Win.prefab 44 KB

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