BuyItemLayer.prefab 44 KB

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