AwardGetLayer.prefab 49 KB

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