BuyItemLayer.prefab 46 KB

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