PayItems.prefab 42 KB

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