FenceListItemRender.prefab 42 KB

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