farmItem.prefab 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088
  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. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "farmItem",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. }
  23. ],
  24. "_active": true,
  25. "_components": [
  26. {
  27. "__id__": 55
  28. }
  29. ],
  30. "_prefab": {
  31. "__id__": 56
  32. },
  33. "_opacity": 255,
  34. "_color": {
  35. "__type__": "cc.Color",
  36. "r": 255,
  37. "g": 255,
  38. "b": 255,
  39. "a": 255
  40. },
  41. "_contentSize": {
  42. "__type__": "cc.Size",
  43. "width": 469,
  44. "height": 99
  45. },
  46. "_anchorPoint": {
  47. "__type__": "cc.Vec2",
  48. "x": 0.5,
  49. "y": 1
  50. },
  51. "_trs": {
  52. "__type__": "TypedArray",
  53. "ctor": "Float64Array",
  54. "array": [
  55. 0,
  56. 0,
  57. 0,
  58. 0,
  59. 0,
  60. 0,
  61. 1,
  62. 1.02,
  63. 1.02,
  64. 1
  65. ]
  66. },
  67. "_eulerAngles": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_skewX": 0,
  74. "_skewY": 0,
  75. "_is3DNode": false,
  76. "_groupIndex": 0,
  77. "groupIndex": 0,
  78. "_id": ""
  79. },
  80. {
  81. "__type__": "cc.Node",
  82. "_name": "New Node",
  83. "_objFlags": 0,
  84. "_parent": {
  85. "__id__": 1
  86. },
  87. "_children": [
  88. {
  89. "__id__": 3
  90. },
  91. {
  92. "__id__": 9
  93. },
  94. {
  95. "__id__": 21
  96. },
  97. {
  98. "__id__": 33
  99. },
  100. {
  101. "__id__": 42
  102. },
  103. {
  104. "__id__": 50
  105. }
  106. ],
  107. "_active": true,
  108. "_components": [
  109. {
  110. "__id__": 53
  111. }
  112. ],
  113. "_prefab": {
  114. "__id__": 54
  115. },
  116. "_opacity": 255,
  117. "_color": {
  118. "__type__": "cc.Color",
  119. "r": 255,
  120. "g": 255,
  121. "b": 255,
  122. "a": 255
  123. },
  124. "_contentSize": {
  125. "__type__": "cc.Size",
  126. "width": 469,
  127. "height": 99
  128. },
  129. "_anchorPoint": {
  130. "__type__": "cc.Vec2",
  131. "x": 0.5,
  132. "y": 1
  133. },
  134. "_trs": {
  135. "__type__": "TypedArray",
  136. "ctor": "Float64Array",
  137. "array": [
  138. -3,
  139. 0,
  140. 0,
  141. 0,
  142. 0,
  143. 0,
  144. 1,
  145. 1,
  146. 1,
  147. 1
  148. ]
  149. },
  150. "_eulerAngles": {
  151. "__type__": "cc.Vec3",
  152. "x": 0,
  153. "y": 0,
  154. "z": 0
  155. },
  156. "_skewX": 0,
  157. "_skewY": 0,
  158. "_is3DNode": false,
  159. "_groupIndex": 0,
  160. "groupIndex": 0,
  161. "_id": ""
  162. },
  163. {
  164. "__type__": "cc.Node",
  165. "_name": "iconBg",
  166. "_objFlags": 0,
  167. "_parent": {
  168. "__id__": 2
  169. },
  170. "_children": [
  171. {
  172. "__id__": 4
  173. }
  174. ],
  175. "_active": true,
  176. "_components": [
  177. {
  178. "__id__": 7
  179. }
  180. ],
  181. "_prefab": {
  182. "__id__": 8
  183. },
  184. "_opacity": 255,
  185. "_color": {
  186. "__type__": "cc.Color",
  187. "r": 255,
  188. "g": 255,
  189. "b": 255,
  190. "a": 255
  191. },
  192. "_contentSize": {
  193. "__type__": "cc.Size",
  194. "width": 81,
  195. "height": 81
  196. },
  197. "_anchorPoint": {
  198. "__type__": "cc.Vec2",
  199. "x": 0.5,
  200. "y": 0.5
  201. },
  202. "_trs": {
  203. "__type__": "TypedArray",
  204. "ctor": "Float64Array",
  205. "array": [
  206. -177,
  207. -50,
  208. 0,
  209. 0,
  210. 0,
  211. 0,
  212. 1,
  213. 1,
  214. 1,
  215. 1
  216. ]
  217. },
  218. "_eulerAngles": {
  219. "__type__": "cc.Vec3",
  220. "x": 0,
  221. "y": 0,
  222. "z": 0
  223. },
  224. "_skewX": 0,
  225. "_skewY": 0,
  226. "_is3DNode": false,
  227. "_groupIndex": 0,
  228. "groupIndex": 0,
  229. "_id": ""
  230. },
  231. {
  232. "__type__": "cc.Node",
  233. "_name": "icon",
  234. "_objFlags": 0,
  235. "_parent": {
  236. "__id__": 3
  237. },
  238. "_children": [],
  239. "_active": true,
  240. "_components": [
  241. {
  242. "__id__": 5
  243. }
  244. ],
  245. "_prefab": {
  246. "__id__": 6
  247. },
  248. "_opacity": 255,
  249. "_color": {
  250. "__type__": "cc.Color",
  251. "r": 255,
  252. "g": 255,
  253. "b": 255,
  254. "a": 255
  255. },
  256. "_contentSize": {
  257. "__type__": "cc.Size",
  258. "width": 136,
  259. "height": 173
  260. },
  261. "_anchorPoint": {
  262. "__type__": "cc.Vec2",
  263. "x": 0.5,
  264. "y": 0.5
  265. },
  266. "_trs": {
  267. "__type__": "TypedArray",
  268. "ctor": "Float64Array",
  269. "array": [
  270. 2.842170943040401e-14,
  271. 4,
  272. 0,
  273. 0,
  274. 0,
  275. 0,
  276. 1,
  277. 0.3,
  278. 0.3,
  279. 0.3
  280. ]
  281. },
  282. "_eulerAngles": {
  283. "__type__": "cc.Vec3",
  284. "x": 0,
  285. "y": 0,
  286. "z": 0
  287. },
  288. "_skewX": 0,
  289. "_skewY": 0,
  290. "_is3DNode": false,
  291. "_groupIndex": 0,
  292. "groupIndex": 0,
  293. "_id": ""
  294. },
  295. {
  296. "__type__": "cc.Sprite",
  297. "_name": "",
  298. "_objFlags": 0,
  299. "node": {
  300. "__id__": 4
  301. },
  302. "_enabled": true,
  303. "_materials": [
  304. {
  305. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  306. }
  307. ],
  308. "_srcBlendFactor": 770,
  309. "_dstBlendFactor": 771,
  310. "_spriteFrame": {
  311. "__uuid__": "7ed22804-d9d1-435c-8e54-a121fb489018@6c48a"
  312. },
  313. "_type": 0,
  314. "_sizeMode": 1,
  315. "_fillType": 0,
  316. "_fillCenter": {
  317. "__type__": "cc.Vec2",
  318. "x": 0,
  319. "y": 0
  320. },
  321. "_fillStart": 0,
  322. "_fillRange": 0,
  323. "_isTrimmedMode": true,
  324. "_atlas": null,
  325. "_id": ""
  326. },
  327. {
  328. "__type__": "cc.PrefabInfo",
  329. "root": {
  330. "__id__": 1
  331. },
  332. "asset": {
  333. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  334. },
  335. "fileId": "6fMrGYI/pN+LoONqP2saqY",
  336. "sync": false
  337. },
  338. {
  339. "__type__": "cc.Sprite",
  340. "_name": "",
  341. "_objFlags": 0,
  342. "node": {
  343. "__id__": 3
  344. },
  345. "_enabled": true,
  346. "_materials": [
  347. {
  348. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  349. }
  350. ],
  351. "_srcBlendFactor": 770,
  352. "_dstBlendFactor": 771,
  353. "_spriteFrame": {
  354. "__uuid__": "a48605b4-76b0-453f-94c0-cfce2694efb9"
  355. },
  356. "_type": 0,
  357. "_sizeMode": 1,
  358. "_fillType": 0,
  359. "_fillCenter": {
  360. "__type__": "cc.Vec2",
  361. "x": 0,
  362. "y": 0
  363. },
  364. "_fillStart": 0,
  365. "_fillRange": 0,
  366. "_isTrimmedMode": true,
  367. "_atlas": null,
  368. "_id": ""
  369. },
  370. {
  371. "__type__": "cc.PrefabInfo",
  372. "root": {
  373. "__id__": 1
  374. },
  375. "asset": {
  376. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  377. },
  378. "fileId": "1dL0jCyF9OrK5pPptAsyeM",
  379. "sync": false
  380. },
  381. {
  382. "__type__": "cc.Node",
  383. "_name": "New Node",
  384. "_objFlags": 0,
  385. "_parent": {
  386. "__id__": 2
  387. },
  388. "_children": [
  389. {
  390. "__id__": 10
  391. },
  392. {
  393. "__id__": 13
  394. },
  395. {
  396. "__id__": 16
  397. }
  398. ],
  399. "_active": true,
  400. "_components": [
  401. {
  402. "__id__": 19
  403. }
  404. ],
  405. "_prefab": {
  406. "__id__": 20
  407. },
  408. "_opacity": 255,
  409. "_color": {
  410. "__type__": "cc.Color",
  411. "r": 255,
  412. "g": 255,
  413. "b": 255,
  414. "a": 255
  415. },
  416. "_contentSize": {
  417. "__type__": "cc.Size",
  418. "width": 300,
  419. "height": 60.92
  420. },
  421. "_anchorPoint": {
  422. "__type__": "cc.Vec2",
  423. "x": 0,
  424. "y": 0.5
  425. },
  426. "_trs": {
  427. "__type__": "TypedArray",
  428. "ctor": "Float64Array",
  429. "array": [
  430. -129.31,
  431. -49.996,
  432. 0,
  433. 0,
  434. 0,
  435. 0,
  436. 1,
  437. 1,
  438. 1,
  439. 1
  440. ]
  441. },
  442. "_eulerAngles": {
  443. "__type__": "cc.Vec3",
  444. "x": 0,
  445. "y": 0,
  446. "z": 0
  447. },
  448. "_skewX": 0,
  449. "_skewY": 0,
  450. "_is3DNode": false,
  451. "_groupIndex": 0,
  452. "groupIndex": 0,
  453. "_id": ""
  454. },
  455. {
  456. "__type__": "cc.Node",
  457. "_name": "title",
  458. "_objFlags": 0,
  459. "_parent": {
  460. "__id__": 9
  461. },
  462. "_children": [],
  463. "_active": false,
  464. "_components": [
  465. {
  466. "__id__": 11
  467. }
  468. ],
  469. "_prefab": {
  470. "__id__": 12
  471. },
  472. "_opacity": 255,
  473. "_color": {
  474. "__type__": "cc.Color",
  475. "r": 147,
  476. "g": 83,
  477. "b": 56,
  478. "a": 255
  479. },
  480. "_contentSize": {
  481. "__type__": "cc.Size",
  482. "width": 186.65,
  483. "height": 27.72
  484. },
  485. "_anchorPoint": {
  486. "__type__": "cc.Vec2",
  487. "x": 0,
  488. "y": 0.5
  489. },
  490. "_trs": {
  491. "__type__": "TypedArray",
  492. "ctor": "Float64Array",
  493. "array": [
  494. 2.842170943040401e-14,
  495. 16.6,
  496. 0,
  497. 0,
  498. 0,
  499. 0,
  500. 1,
  501. 1,
  502. 1,
  503. 1
  504. ]
  505. },
  506. "_eulerAngles": {
  507. "__type__": "cc.Vec3",
  508. "x": 0,
  509. "y": 0,
  510. "z": 0
  511. },
  512. "_skewX": 0,
  513. "_skewY": 0,
  514. "_is3DNode": false,
  515. "_groupIndex": 0,
  516. "groupIndex": 0,
  517. "_id": ""
  518. },
  519. {
  520. "__type__": "cc.Label",
  521. "_name": "",
  522. "_objFlags": 0,
  523. "node": {
  524. "__id__": 10
  525. },
  526. "_enabled": true,
  527. "_materials": [
  528. {
  529. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  530. }
  531. ],
  532. "_srcBlendFactor": 770,
  533. "_dstBlendFactor": 771,
  534. "_string": "Lv.1玉米 15秒成熟",
  535. "_N$string": "Lv.1玉米 15秒成熟",
  536. "_fontSize": 22,
  537. "_lineHeight": 22,
  538. "_enableWrapText": true,
  539. "_N$file": null,
  540. "_isSystemFontUsed": true,
  541. "_spacingX": 0,
  542. "_batchAsBitmap": false,
  543. "_styleFlags": 0,
  544. "_underlineHeight": 0,
  545. "_N$horizontalAlign": 0,
  546. "_N$verticalAlign": 1,
  547. "_N$fontFamily": "Arial",
  548. "_N$overflow": 0,
  549. "_N$cacheMode": 0,
  550. "_id": ""
  551. },
  552. {
  553. "__type__": "cc.PrefabInfo",
  554. "root": {
  555. "__id__": 1
  556. },
  557. "asset": {
  558. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  559. },
  560. "fileId": "cai9UTg/lJtaTYEuU9WAzo",
  561. "sync": false
  562. },
  563. {
  564. "__type__": "cc.Node",
  565. "_name": "描述",
  566. "_objFlags": 0,
  567. "_parent": {
  568. "__id__": 9
  569. },
  570. "_children": [],
  571. "_active": false,
  572. "_components": [
  573. {
  574. "__id__": 14
  575. }
  576. ],
  577. "_prefab": {
  578. "__id__": 15
  579. },
  580. "_opacity": 255,
  581. "_color": {
  582. "__type__": "cc.Color",
  583. "r": 193,
  584. "g": 105,
  585. "b": 51,
  586. "a": 255
  587. },
  588. "_contentSize": {
  589. "__type__": "cc.Size",
  590. "width": 211.12,
  591. "height": 25.2
  592. },
  593. "_anchorPoint": {
  594. "__type__": "cc.Vec2",
  595. "x": 0,
  596. "y": 0.5
  597. },
  598. "_trs": {
  599. "__type__": "TypedArray",
  600. "ctor": "Float64Array",
  601. "array": [
  602. 2.842170943040401e-14,
  603. -17.859999999999978,
  604. 0,
  605. 0,
  606. 0,
  607. 0,
  608. 1,
  609. 1,
  610. 1,
  611. 1
  612. ]
  613. },
  614. "_eulerAngles": {
  615. "__type__": "cc.Vec3",
  616. "x": 0,
  617. "y": 0,
  618. "z": 0
  619. },
  620. "_skewX": 0,
  621. "_skewY": 0,
  622. "_is3DNode": false,
  623. "_groupIndex": 0,
  624. "groupIndex": 0,
  625. "_id": ""
  626. },
  627. {
  628. "__type__": "cc.Label",
  629. "_name": "",
  630. "_objFlags": 0,
  631. "node": {
  632. "__id__": 13
  633. },
  634. "_enabled": true,
  635. "_materials": [
  636. {
  637. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  638. }
  639. ],
  640. "_srcBlendFactor": 770,
  641. "_dstBlendFactor": 771,
  642. "_string": "种植5次玉米胡萝卜解锁",
  643. "_N$string": "种植5次玉米胡萝卜解锁",
  644. "_fontSize": 20,
  645. "_lineHeight": 20,
  646. "_enableWrapText": true,
  647. "_N$file": null,
  648. "_isSystemFontUsed": true,
  649. "_spacingX": 0,
  650. "_batchAsBitmap": false,
  651. "_styleFlags": 0,
  652. "_underlineHeight": 0,
  653. "_N$horizontalAlign": 0,
  654. "_N$verticalAlign": 1,
  655. "_N$fontFamily": "Arial",
  656. "_N$overflow": 0,
  657. "_N$cacheMode": 0,
  658. "_id": ""
  659. },
  660. {
  661. "__type__": "cc.PrefabInfo",
  662. "root": {
  663. "__id__": 1
  664. },
  665. "asset": {
  666. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  667. },
  668. "fileId": "5e5+QqJJxLmpIWxdyjKex/",
  669. "sync": false
  670. },
  671. {
  672. "__type__": "cc.Node",
  673. "_name": "组合描述",
  674. "_objFlags": 0,
  675. "_parent": {
  676. "__id__": 9
  677. },
  678. "_children": [],
  679. "_active": false,
  680. "_components": [
  681. {
  682. "__id__": 17
  683. }
  684. ],
  685. "_prefab": {
  686. "__id__": 18
  687. },
  688. "_opacity": 255,
  689. "_color": {
  690. "__type__": "cc.Color",
  691. "r": 193,
  692. "g": 105,
  693. "b": 51,
  694. "a": 255
  695. },
  696. "_contentSize": {
  697. "__type__": "cc.Size",
  698. "width": 211.12,
  699. "height": 25.2
  700. },
  701. "_anchorPoint": {
  702. "__type__": "cc.Vec2",
  703. "x": 0,
  704. "y": 0.5
  705. },
  706. "_trs": {
  707. "__type__": "TypedArray",
  708. "ctor": "Float64Array",
  709. "array": [
  710. 2.842170943040401e-14,
  711. 0.14000000000000057,
  712. 0,
  713. 0,
  714. 0,
  715. 0,
  716. 1,
  717. 1,
  718. 1,
  719. 1
  720. ]
  721. },
  722. "_eulerAngles": {
  723. "__type__": "cc.Vec3",
  724. "x": 0,
  725. "y": 0,
  726. "z": 0
  727. },
  728. "_skewX": 0,
  729. "_skewY": 0,
  730. "_is3DNode": false,
  731. "_groupIndex": 0,
  732. "groupIndex": 0,
  733. "_id": ""
  734. },
  735. {
  736. "__type__": "cc.Label",
  737. "_name": "",
  738. "_objFlags": 0,
  739. "node": {
  740. "__id__": 16
  741. },
  742. "_enabled": true,
  743. "_materials": [
  744. {
  745. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  746. }
  747. ],
  748. "_srcBlendFactor": 770,
  749. "_dstBlendFactor": 771,
  750. "_string": "种植5次玉米胡萝卜解锁",
  751. "_N$string": "种植5次玉米胡萝卜解锁",
  752. "_fontSize": 20,
  753. "_lineHeight": 20,
  754. "_enableWrapText": true,
  755. "_N$file": null,
  756. "_isSystemFontUsed": true,
  757. "_spacingX": 0,
  758. "_batchAsBitmap": false,
  759. "_styleFlags": 0,
  760. "_underlineHeight": 0,
  761. "_N$horizontalAlign": 0,
  762. "_N$verticalAlign": 1,
  763. "_N$fontFamily": "Arial",
  764. "_N$overflow": 0,
  765. "_N$cacheMode": 0,
  766. "_id": ""
  767. },
  768. {
  769. "__type__": "cc.PrefabInfo",
  770. "root": {
  771. "__id__": 1
  772. },
  773. "asset": {
  774. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  775. },
  776. "fileId": "5eVOCsJe1KV53bhwOvNWKe",
  777. "sync": false
  778. },
  779. {
  780. "__type__": "cc.Layout",
  781. "_name": "",
  782. "_objFlags": 0,
  783. "node": {
  784. "__id__": 9
  785. },
  786. "_enabled": false,
  787. "_layoutSize": {
  788. "__type__": "cc.Size",
  789. "width": 300,
  790. "height": 60.92
  791. },
  792. "_resize": 1,
  793. "_N$layoutType": 2,
  794. "_N$cellSize": {
  795. "__type__": "cc.Size",
  796. "width": 40,
  797. "height": 40
  798. },
  799. "_N$startAxis": 0,
  800. "_N$paddingLeft": 0,
  801. "_N$paddingRight": 0,
  802. "_N$paddingTop": 0,
  803. "_N$paddingBottom": 0,
  804. "_N$spacingX": 0,
  805. "_N$spacingY": 8,
  806. "_N$verticalDirection": 1,
  807. "_N$horizontalDirection": 0,
  808. "_N$affectedByScale": false,
  809. "_id": ""
  810. },
  811. {
  812. "__type__": "cc.PrefabInfo",
  813. "root": {
  814. "__id__": 1
  815. },
  816. "asset": {
  817. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  818. },
  819. "fileId": "7eyL9O3AhHc4/vW7gzUbkY",
  820. "sync": false
  821. },
  822. {
  823. "__type__": "cc.Node",
  824. "_name": "领奖按钮",
  825. "_objFlags": 0,
  826. "_parent": {
  827. "__id__": 2
  828. },
  829. "_children": [
  830. {
  831. "__id__": 22
  832. },
  833. {
  834. "__id__": 26
  835. }
  836. ],
  837. "_active": false,
  838. "_components": [
  839. {
  840. "__id__": 29
  841. },
  842. {
  843. "__id__": 30
  844. }
  845. ],
  846. "_prefab": {
  847. "__id__": 32
  848. },
  849. "_opacity": 255,
  850. "_color": {
  851. "__type__": "cc.Color",
  852. "r": 255,
  853. "g": 255,
  854. "b": 255,
  855. "a": 255
  856. },
  857. "_contentSize": {
  858. "__type__": "cc.Size",
  859. "width": 123,
  860. "height": 45
  861. },
  862. "_anchorPoint": {
  863. "__type__": "cc.Vec2",
  864. "x": 0.5,
  865. "y": 0.5
  866. },
  867. "_trs": {
  868. "__type__": "TypedArray",
  869. "ctor": "Float64Array",
  870. "array": [
  871. 157.606,
  872. -50,
  873. 0,
  874. 0,
  875. 0,
  876. 0,
  877. 1,
  878. 1,
  879. 1,
  880. 1
  881. ]
  882. },
  883. "_eulerAngles": {
  884. "__type__": "cc.Vec3",
  885. "x": 0,
  886. "y": 0,
  887. "z": 0
  888. },
  889. "_skewX": 0,
  890. "_skewY": 0,
  891. "_is3DNode": false,
  892. "_groupIndex": 0,
  893. "groupIndex": 0,
  894. "_id": ""
  895. },
  896. {
  897. "__type__": "cc.Node",
  898. "_name": "文字",
  899. "_objFlags": 0,
  900. "_parent": {
  901. "__id__": 21
  902. },
  903. "_children": [],
  904. "_active": true,
  905. "_components": [
  906. {
  907. "__id__": 23
  908. },
  909. {
  910. "__id__": 24
  911. }
  912. ],
  913. "_prefab": {
  914. "__id__": 25
  915. },
  916. "_opacity": 255,
  917. "_color": {
  918. "__type__": "cc.Color",
  919. "r": 255,
  920. "g": 251,
  921. "b": 237,
  922. "a": 255
  923. },
  924. "_contentSize": {
  925. "__type__": "cc.Size",
  926. "width": 53.82,
  927. "height": 54.4
  928. },
  929. "_anchorPoint": {
  930. "__type__": "cc.Vec2",
  931. "x": 0.5,
  932. "y": 0.5
  933. },
  934. "_trs": {
  935. "__type__": "TypedArray",
  936. "ctor": "Float64Array",
  937. "array": [
  938. 4,
  939. 2,
  940. 0,
  941. 0,
  942. 0,
  943. 0,
  944. 1,
  945. 1,
  946. 1,
  947. 1
  948. ]
  949. },
  950. "_eulerAngles": {
  951. "__type__": "cc.Vec3",
  952. "x": 0,
  953. "y": 0,
  954. "z": 0
  955. },
  956. "_skewX": 0,
  957. "_skewY": 0,
  958. "_is3DNode": false,
  959. "_groupIndex": 0,
  960. "groupIndex": 0,
  961. "_id": ""
  962. },
  963. {
  964. "__type__": "cc.Label",
  965. "_name": "",
  966. "_objFlags": 0,
  967. "node": {
  968. "__id__": 22
  969. },
  970. "_enabled": true,
  971. "_materials": [
  972. {
  973. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  974. }
  975. ],
  976. "_srcBlendFactor": 770,
  977. "_dstBlendFactor": 771,
  978. "_string": "领 奖",
  979. "_N$string": "领 奖",
  980. "_fontSize": 22,
  981. "_lineHeight": 40,
  982. "_enableWrapText": true,
  983. "_N$file": {
  984. "__uuid__": "b47819b5-a9ec-4916-8909-db422f79bbb7"
  985. },
  986. "_isSystemFontUsed": false,
  987. "_spacingX": 0,
  988. "_batchAsBitmap": false,
  989. "_styleFlags": 0,
  990. "_underlineHeight": 0,
  991. "_N$horizontalAlign": 1,
  992. "_N$verticalAlign": 1,
  993. "_N$fontFamily": "Arial",
  994. "_N$overflow": 0,
  995. "_N$cacheMode": 0,
  996. "_id": ""
  997. },
  998. {
  999. "__type__": "cc.LabelOutline",
  1000. "_name": "",
  1001. "_objFlags": 0,
  1002. "node": {
  1003. "__id__": 22
  1004. },
  1005. "_enabled": true,
  1006. "_color": {
  1007. "__type__": "cc.Color",
  1008. "r": 178,
  1009. "g": 77,
  1010. "b": 18,
  1011. "a": 255
  1012. },
  1013. "_width": 2,
  1014. "_id": ""
  1015. },
  1016. {
  1017. "__type__": "cc.PrefabInfo",
  1018. "root": {
  1019. "__id__": 1
  1020. },
  1021. "asset": {
  1022. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  1023. },
  1024. "fileId": "68Br1Xmv5BdZP6ThynY5tC",
  1025. "sync": false
  1026. },
  1027. {
  1028. "__type__": "cc.Node",
  1029. "_name": "video",
  1030. "_objFlags": 0,
  1031. "_parent": {
  1032. "__id__": 21
  1033. },
  1034. "_children": [],
  1035. "_active": true,
  1036. "_components": [
  1037. {
  1038. "__id__": 27
  1039. }
  1040. ],
  1041. "_prefab": {
  1042. "__id__": 28
  1043. },
  1044. "_opacity": 255,
  1045. "_color": {
  1046. "__type__": "cc.Color",
  1047. "r": 255,
  1048. "g": 255,
  1049. "b": 255,
  1050. "a": 255
  1051. },
  1052. "_contentSize": {
  1053. "__type__": "cc.Size",
  1054. "width": 41,
  1055. "height": 39
  1056. },
  1057. "_anchorPoint": {
  1058. "__type__": "cc.Vec2",
  1059. "x": 0.5,
  1060. "y": 0.5
  1061. },
  1062. "_trs": {
  1063. "__type__": "TypedArray",
  1064. "ctor": "Float64Array",
  1065. "array": [
  1066. -49,
  1067. 3.000000000000007,
  1068. 0,
  1069. 0,
  1070. 0,
  1071. 0,
  1072. 1,
  1073. 1,
  1074. 1,
  1075. 1
  1076. ]
  1077. },
  1078. "_eulerAngles": {
  1079. "__type__": "cc.Vec3",
  1080. "x": 0,
  1081. "y": 0,
  1082. "z": 0
  1083. },
  1084. "_skewX": 0,
  1085. "_skewY": 0,
  1086. "_is3DNode": false,
  1087. "_groupIndex": 0,
  1088. "groupIndex": 0,
  1089. "_id": ""
  1090. },
  1091. {
  1092. "__type__": "cc.Sprite",
  1093. "_name": "",
  1094. "_objFlags": 0,
  1095. "node": {
  1096. "__id__": 26
  1097. },
  1098. "_enabled": true,
  1099. "_materials": [
  1100. {
  1101. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1102. }
  1103. ],
  1104. "_srcBlendFactor": 770,
  1105. "_dstBlendFactor": 771,
  1106. "_spriteFrame": {
  1107. "__uuid__": "ebce635b-bccc-4c4b-8864-c5bfe3afd71c"
  1108. },
  1109. "_type": 0,
  1110. "_sizeMode": 1,
  1111. "_fillType": 0,
  1112. "_fillCenter": {
  1113. "__type__": "cc.Vec2",
  1114. "x": 0,
  1115. "y": 0
  1116. },
  1117. "_fillStart": 0,
  1118. "_fillRange": 0,
  1119. "_isTrimmedMode": true,
  1120. "_atlas": null,
  1121. "_id": ""
  1122. },
  1123. {
  1124. "__type__": "cc.PrefabInfo",
  1125. "root": {
  1126. "__id__": 1
  1127. },
  1128. "asset": {
  1129. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  1130. },
  1131. "fileId": "1cNJ72JWlKBpJ9pPR2AnAq",
  1132. "sync": false
  1133. },
  1134. {
  1135. "__type__": "cc.Sprite",
  1136. "_name": "",
  1137. "_objFlags": 0,
  1138. "node": {
  1139. "__id__": 21
  1140. },
  1141. "_enabled": true,
  1142. "_materials": [
  1143. {
  1144. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1145. }
  1146. ],
  1147. "_srcBlendFactor": 770,
  1148. "_dstBlendFactor": 771,
  1149. "_spriteFrame": {
  1150. "__uuid__": "010c7f93-d02f-4812-a23d-331822ac6426"
  1151. },
  1152. "_type": 0,
  1153. "_sizeMode": 1,
  1154. "_fillType": 0,
  1155. "_fillCenter": {
  1156. "__type__": "cc.Vec2",
  1157. "x": 0,
  1158. "y": 0
  1159. },
  1160. "_fillStart": 0,
  1161. "_fillRange": 0,
  1162. "_isTrimmedMode": true,
  1163. "_atlas": null,
  1164. "_id": ""
  1165. },
  1166. {
  1167. "__type__": "cc.Button",
  1168. "_name": "",
  1169. "_objFlags": 0,
  1170. "node": {
  1171. "__id__": 21
  1172. },
  1173. "_enabled": true,
  1174. "_normalMaterial": null,
  1175. "_grayMaterial": null,
  1176. "duration": 0.1,
  1177. "zoomScale": 1.2,
  1178. "clickEvents": [
  1179. {
  1180. "__id__": 31
  1181. }
  1182. ],
  1183. "_N$interactable": true,
  1184. "_N$enableAutoGrayEffect": false,
  1185. "_N$transition": 0,
  1186. "transition": 0,
  1187. "_N$normalColor": {
  1188. "__type__": "cc.Color",
  1189. "r": 255,
  1190. "g": 255,
  1191. "b": 255,
  1192. "a": 255
  1193. },
  1194. "_N$pressedColor": {
  1195. "__type__": "cc.Color",
  1196. "r": 211,
  1197. "g": 211,
  1198. "b": 211,
  1199. "a": 255
  1200. },
  1201. "pressedColor": {
  1202. "__type__": "cc.Color",
  1203. "r": 211,
  1204. "g": 211,
  1205. "b": 211,
  1206. "a": 255
  1207. },
  1208. "_N$hoverColor": {
  1209. "__type__": "cc.Color",
  1210. "r": 255,
  1211. "g": 255,
  1212. "b": 255,
  1213. "a": 255
  1214. },
  1215. "hoverColor": {
  1216. "__type__": "cc.Color",
  1217. "r": 255,
  1218. "g": 255,
  1219. "b": 255,
  1220. "a": 255
  1221. },
  1222. "_N$disabledColor": {
  1223. "__type__": "cc.Color",
  1224. "r": 124,
  1225. "g": 124,
  1226. "b": 124,
  1227. "a": 255
  1228. },
  1229. "_N$normalSprite": null,
  1230. "_N$pressedSprite": null,
  1231. "pressedSprite": null,
  1232. "_N$hoverSprite": null,
  1233. "hoverSprite": null,
  1234. "_N$disabledSprite": null,
  1235. "_N$target": {
  1236. "__id__": 21
  1237. },
  1238. "_id": ""
  1239. },
  1240. {
  1241. "__type__": "cc.ClickEvent",
  1242. "target": {
  1243. "__id__": 1
  1244. },
  1245. "component": "",
  1246. "_componentId": "9b578CB5kBCtpyvrx1EoT+t",
  1247. "handler": "clickUnGetRewardBtn",
  1248. "customEventData": ""
  1249. },
  1250. {
  1251. "__type__": "cc.PrefabInfo",
  1252. "root": {
  1253. "__id__": 1
  1254. },
  1255. "asset": {
  1256. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  1257. },
  1258. "fileId": "bdMd3wVpxISZQI9hqk31zH",
  1259. "sync": false
  1260. },
  1261. {
  1262. "__type__": "cc.Node",
  1263. "_name": "已领奖按钮",
  1264. "_objFlags": 0,
  1265. "_parent": {
  1266. "__id__": 2
  1267. },
  1268. "_children": [
  1269. {
  1270. "__id__": 34
  1271. }
  1272. ],
  1273. "_active": false,
  1274. "_components": [
  1275. {
  1276. "__id__": 38
  1277. },
  1278. {
  1279. "__id__": 39
  1280. }
  1281. ],
  1282. "_prefab": {
  1283. "__id__": 41
  1284. },
  1285. "_opacity": 255,
  1286. "_color": {
  1287. "__type__": "cc.Color",
  1288. "r": 255,
  1289. "g": 255,
  1290. "b": 255,
  1291. "a": 255
  1292. },
  1293. "_contentSize": {
  1294. "__type__": "cc.Size",
  1295. "width": 123,
  1296. "height": 45
  1297. },
  1298. "_anchorPoint": {
  1299. "__type__": "cc.Vec2",
  1300. "x": 0.5,
  1301. "y": 0.5
  1302. },
  1303. "_trs": {
  1304. "__type__": "TypedArray",
  1305. "ctor": "Float64Array",
  1306. "array": [
  1307. 157.606,
  1308. -50,
  1309. 0,
  1310. 0,
  1311. 0,
  1312. 0,
  1313. 1,
  1314. 1,
  1315. 1,
  1316. 1
  1317. ]
  1318. },
  1319. "_eulerAngles": {
  1320. "__type__": "cc.Vec3",
  1321. "x": 0,
  1322. "y": 0,
  1323. "z": 0
  1324. },
  1325. "_skewX": 0,
  1326. "_skewY": 0,
  1327. "_is3DNode": false,
  1328. "_groupIndex": 0,
  1329. "groupIndex": 0,
  1330. "_id": ""
  1331. },
  1332. {
  1333. "__type__": "cc.Node",
  1334. "_name": "文字",
  1335. "_objFlags": 0,
  1336. "_parent": {
  1337. "__id__": 33
  1338. },
  1339. "_children": [],
  1340. "_active": true,
  1341. "_components": [
  1342. {
  1343. "__id__": 35
  1344. },
  1345. {
  1346. "__id__": 36
  1347. }
  1348. ],
  1349. "_prefab": {
  1350. "__id__": 37
  1351. },
  1352. "_opacity": 255,
  1353. "_color": {
  1354. "__type__": "cc.Color",
  1355. "r": 255,
  1356. "g": 255,
  1357. "b": 255,
  1358. "a": 255
  1359. },
  1360. "_contentSize": {
  1361. "__type__": "cc.Size",
  1362. "width": 70,
  1363. "height": 54.4
  1364. },
  1365. "_anchorPoint": {
  1366. "__type__": "cc.Vec2",
  1367. "x": 0.5,
  1368. "y": 0.5
  1369. },
  1370. "_trs": {
  1371. "__type__": "TypedArray",
  1372. "ctor": "Float64Array",
  1373. "array": [
  1374. 0,
  1375. 3.000000000000007,
  1376. 0,
  1377. 0,
  1378. 0,
  1379. 0,
  1380. 1,
  1381. 1,
  1382. 1,
  1383. 1
  1384. ]
  1385. },
  1386. "_eulerAngles": {
  1387. "__type__": "cc.Vec3",
  1388. "x": 0,
  1389. "y": 0,
  1390. "z": 0
  1391. },
  1392. "_skewX": 0,
  1393. "_skewY": 0,
  1394. "_is3DNode": false,
  1395. "_groupIndex": 0,
  1396. "groupIndex": 0,
  1397. "_id": ""
  1398. },
  1399. {
  1400. "__type__": "cc.Label",
  1401. "_name": "",
  1402. "_objFlags": 0,
  1403. "node": {
  1404. "__id__": 34
  1405. },
  1406. "_enabled": true,
  1407. "_materials": [
  1408. {
  1409. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1410. }
  1411. ],
  1412. "_srcBlendFactor": 770,
  1413. "_dstBlendFactor": 771,
  1414. "_string": "已领奖",
  1415. "_N$string": "已领奖",
  1416. "_fontSize": 22,
  1417. "_lineHeight": 40,
  1418. "_enableWrapText": true,
  1419. "_N$file": null,
  1420. "_isSystemFontUsed": true,
  1421. "_spacingX": 0,
  1422. "_batchAsBitmap": false,
  1423. "_styleFlags": 0,
  1424. "_underlineHeight": 0,
  1425. "_N$horizontalAlign": 1,
  1426. "_N$verticalAlign": 1,
  1427. "_N$fontFamily": "Arial",
  1428. "_N$overflow": 0,
  1429. "_N$cacheMode": 0,
  1430. "_id": ""
  1431. },
  1432. {
  1433. "__type__": "cc.LabelOutline",
  1434. "_name": "",
  1435. "_objFlags": 0,
  1436. "node": {
  1437. "__id__": 34
  1438. },
  1439. "_enabled": true,
  1440. "_color": {
  1441. "__type__": "cc.Color",
  1442. "r": 32,
  1443. "g": 7,
  1444. "b": 7,
  1445. "a": 123
  1446. },
  1447. "_width": 2,
  1448. "_id": ""
  1449. },
  1450. {
  1451. "__type__": "cc.PrefabInfo",
  1452. "root": {
  1453. "__id__": 1
  1454. },
  1455. "asset": {
  1456. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  1457. },
  1458. "fileId": "249OIe9lJPwbnzPyBqDbht",
  1459. "sync": false
  1460. },
  1461. {
  1462. "__type__": "cc.Sprite",
  1463. "_name": "",
  1464. "_objFlags": 0,
  1465. "node": {
  1466. "__id__": 33
  1467. },
  1468. "_enabled": true,
  1469. "_materials": [
  1470. {
  1471. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1472. }
  1473. ],
  1474. "_srcBlendFactor": 770,
  1475. "_dstBlendFactor": 771,
  1476. "_spriteFrame": {
  1477. "__uuid__": "b25f11bd-f87f-4589-a5ab-086afa40f57f"
  1478. },
  1479. "_type": 0,
  1480. "_sizeMode": 1,
  1481. "_fillType": 0,
  1482. "_fillCenter": {
  1483. "__type__": "cc.Vec2",
  1484. "x": 0,
  1485. "y": 0
  1486. },
  1487. "_fillStart": 0,
  1488. "_fillRange": 0,
  1489. "_isTrimmedMode": true,
  1490. "_atlas": null,
  1491. "_id": ""
  1492. },
  1493. {
  1494. "__type__": "cc.Button",
  1495. "_name": "",
  1496. "_objFlags": 0,
  1497. "node": {
  1498. "__id__": 33
  1499. },
  1500. "_enabled": true,
  1501. "_normalMaterial": null,
  1502. "_grayMaterial": null,
  1503. "duration": 0.1,
  1504. "zoomScale": 1.2,
  1505. "clickEvents": [
  1506. {
  1507. "__id__": 40
  1508. }
  1509. ],
  1510. "_N$interactable": true,
  1511. "_N$enableAutoGrayEffect": false,
  1512. "_N$transition": 0,
  1513. "transition": 0,
  1514. "_N$normalColor": {
  1515. "__type__": "cc.Color",
  1516. "r": 255,
  1517. "g": 255,
  1518. "b": 255,
  1519. "a": 255
  1520. },
  1521. "_N$pressedColor": {
  1522. "__type__": "cc.Color",
  1523. "r": 211,
  1524. "g": 211,
  1525. "b": 211,
  1526. "a": 255
  1527. },
  1528. "pressedColor": {
  1529. "__type__": "cc.Color",
  1530. "r": 211,
  1531. "g": 211,
  1532. "b": 211,
  1533. "a": 255
  1534. },
  1535. "_N$hoverColor": {
  1536. "__type__": "cc.Color",
  1537. "r": 255,
  1538. "g": 255,
  1539. "b": 255,
  1540. "a": 255
  1541. },
  1542. "hoverColor": {
  1543. "__type__": "cc.Color",
  1544. "r": 255,
  1545. "g": 255,
  1546. "b": 255,
  1547. "a": 255
  1548. },
  1549. "_N$disabledColor": {
  1550. "__type__": "cc.Color",
  1551. "r": 124,
  1552. "g": 124,
  1553. "b": 124,
  1554. "a": 255
  1555. },
  1556. "_N$normalSprite": null,
  1557. "_N$pressedSprite": null,
  1558. "pressedSprite": null,
  1559. "_N$hoverSprite": null,
  1560. "hoverSprite": null,
  1561. "_N$disabledSprite": null,
  1562. "_N$target": {
  1563. "__id__": 33
  1564. },
  1565. "_id": ""
  1566. },
  1567. {
  1568. "__type__": "cc.ClickEvent",
  1569. "target": {
  1570. "__id__": 1
  1571. },
  1572. "component": "",
  1573. "_componentId": "9b578CB5kBCtpyvrx1EoT+t",
  1574. "handler": "clickGetRewardBtn",
  1575. "customEventData": ""
  1576. },
  1577. {
  1578. "__type__": "cc.PrefabInfo",
  1579. "root": {
  1580. "__id__": 1
  1581. },
  1582. "asset": {
  1583. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  1584. },
  1585. "fileId": "6dsZnuKqNKKp/F1RM+TvBu",
  1586. "sync": false
  1587. },
  1588. {
  1589. "__type__": "cc.Node",
  1590. "_name": "未解锁",
  1591. "_objFlags": 0,
  1592. "_parent": {
  1593. "__id__": 2
  1594. },
  1595. "_children": [
  1596. {
  1597. "__id__": 43
  1598. }
  1599. ],
  1600. "_active": false,
  1601. "_components": [
  1602. {
  1603. "__id__": 46
  1604. },
  1605. {
  1606. "__id__": 47
  1607. }
  1608. ],
  1609. "_prefab": {
  1610. "__id__": 49
  1611. },
  1612. "_opacity": 255,
  1613. "_color": {
  1614. "__type__": "cc.Color",
  1615. "r": 255,
  1616. "g": 255,
  1617. "b": 255,
  1618. "a": 255
  1619. },
  1620. "_contentSize": {
  1621. "__type__": "cc.Size",
  1622. "width": 123,
  1623. "height": 45
  1624. },
  1625. "_anchorPoint": {
  1626. "__type__": "cc.Vec2",
  1627. "x": 0.5,
  1628. "y": 0.5
  1629. },
  1630. "_trs": {
  1631. "__type__": "TypedArray",
  1632. "ctor": "Float64Array",
  1633. "array": [
  1634. 157.606,
  1635. -50,
  1636. 0,
  1637. 0,
  1638. 0,
  1639. 0,
  1640. 1,
  1641. 1,
  1642. 1,
  1643. 1
  1644. ]
  1645. },
  1646. "_eulerAngles": {
  1647. "__type__": "cc.Vec3",
  1648. "x": 0,
  1649. "y": 0,
  1650. "z": 0
  1651. },
  1652. "_skewX": 0,
  1653. "_skewY": 0,
  1654. "_is3DNode": false,
  1655. "_groupIndex": 0,
  1656. "groupIndex": 0,
  1657. "_id": ""
  1658. },
  1659. {
  1660. "__type__": "cc.Node",
  1661. "_name": "锁",
  1662. "_objFlags": 0,
  1663. "_parent": {
  1664. "__id__": 42
  1665. },
  1666. "_children": [],
  1667. "_active": true,
  1668. "_components": [
  1669. {
  1670. "__id__": 44
  1671. }
  1672. ],
  1673. "_prefab": {
  1674. "__id__": 45
  1675. },
  1676. "_opacity": 255,
  1677. "_color": {
  1678. "__type__": "cc.Color",
  1679. "r": 255,
  1680. "g": 255,
  1681. "b": 255,
  1682. "a": 255
  1683. },
  1684. "_contentSize": {
  1685. "__type__": "cc.Size",
  1686. "width": 20,
  1687. "height": 26
  1688. },
  1689. "_anchorPoint": {
  1690. "__type__": "cc.Vec2",
  1691. "x": 0.5,
  1692. "y": 0.5
  1693. },
  1694. "_trs": {
  1695. "__type__": "TypedArray",
  1696. "ctor": "Float64Array",
  1697. "array": [
  1698. 0,
  1699. 3.000000000000007,
  1700. 0,
  1701. 0,
  1702. 0,
  1703. 0,
  1704. 1,
  1705. 1,
  1706. 1,
  1707. 1
  1708. ]
  1709. },
  1710. "_eulerAngles": {
  1711. "__type__": "cc.Vec3",
  1712. "x": 0,
  1713. "y": 0,
  1714. "z": 0
  1715. },
  1716. "_skewX": 0,
  1717. "_skewY": 0,
  1718. "_is3DNode": false,
  1719. "_groupIndex": 0,
  1720. "groupIndex": 0,
  1721. "_id": ""
  1722. },
  1723. {
  1724. "__type__": "cc.Sprite",
  1725. "_name": "",
  1726. "_objFlags": 0,
  1727. "node": {
  1728. "__id__": 43
  1729. },
  1730. "_enabled": true,
  1731. "_materials": [
  1732. {
  1733. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1734. }
  1735. ],
  1736. "_srcBlendFactor": 770,
  1737. "_dstBlendFactor": 771,
  1738. "_spriteFrame": {
  1739. "__uuid__": "8ae103e1-fce5-4839-8e65-4c6488ec0bbc"
  1740. },
  1741. "_type": 0,
  1742. "_sizeMode": 1,
  1743. "_fillType": 0,
  1744. "_fillCenter": {
  1745. "__type__": "cc.Vec2",
  1746. "x": 0,
  1747. "y": 0
  1748. },
  1749. "_fillStart": 0,
  1750. "_fillRange": 0,
  1751. "_isTrimmedMode": true,
  1752. "_atlas": null,
  1753. "_id": ""
  1754. },
  1755. {
  1756. "__type__": "cc.PrefabInfo",
  1757. "root": {
  1758. "__id__": 1
  1759. },
  1760. "asset": {
  1761. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  1762. },
  1763. "fileId": "6aHqLRQmhAuZTd9c5/Ns98",
  1764. "sync": false
  1765. },
  1766. {
  1767. "__type__": "cc.Sprite",
  1768. "_name": "",
  1769. "_objFlags": 0,
  1770. "node": {
  1771. "__id__": 42
  1772. },
  1773. "_enabled": true,
  1774. "_materials": [
  1775. {
  1776. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1777. }
  1778. ],
  1779. "_srcBlendFactor": 770,
  1780. "_dstBlendFactor": 771,
  1781. "_spriteFrame": {
  1782. "__uuid__": "b25f11bd-f87f-4589-a5ab-086afa40f57f"
  1783. },
  1784. "_type": 0,
  1785. "_sizeMode": 1,
  1786. "_fillType": 0,
  1787. "_fillCenter": {
  1788. "__type__": "cc.Vec2",
  1789. "x": 0,
  1790. "y": 0
  1791. },
  1792. "_fillStart": 0,
  1793. "_fillRange": 0,
  1794. "_isTrimmedMode": true,
  1795. "_atlas": null,
  1796. "_id": ""
  1797. },
  1798. {
  1799. "__type__": "cc.Button",
  1800. "_name": "",
  1801. "_objFlags": 0,
  1802. "node": {
  1803. "__id__": 42
  1804. },
  1805. "_enabled": true,
  1806. "_normalMaterial": null,
  1807. "_grayMaterial": null,
  1808. "duration": 0.1,
  1809. "zoomScale": 1.2,
  1810. "clickEvents": [
  1811. {
  1812. "__id__": 48
  1813. }
  1814. ],
  1815. "_N$interactable": true,
  1816. "_N$enableAutoGrayEffect": false,
  1817. "_N$transition": 0,
  1818. "transition": 0,
  1819. "_N$normalColor": {
  1820. "__type__": "cc.Color",
  1821. "r": 255,
  1822. "g": 255,
  1823. "b": 255,
  1824. "a": 255
  1825. },
  1826. "_N$pressedColor": {
  1827. "__type__": "cc.Color",
  1828. "r": 211,
  1829. "g": 211,
  1830. "b": 211,
  1831. "a": 255
  1832. },
  1833. "pressedColor": {
  1834. "__type__": "cc.Color",
  1835. "r": 211,
  1836. "g": 211,
  1837. "b": 211,
  1838. "a": 255
  1839. },
  1840. "_N$hoverColor": {
  1841. "__type__": "cc.Color",
  1842. "r": 255,
  1843. "g": 255,
  1844. "b": 255,
  1845. "a": 255
  1846. },
  1847. "hoverColor": {
  1848. "__type__": "cc.Color",
  1849. "r": 255,
  1850. "g": 255,
  1851. "b": 255,
  1852. "a": 255
  1853. },
  1854. "_N$disabledColor": {
  1855. "__type__": "cc.Color",
  1856. "r": 124,
  1857. "g": 124,
  1858. "b": 124,
  1859. "a": 255
  1860. },
  1861. "_N$normalSprite": null,
  1862. "_N$pressedSprite": null,
  1863. "pressedSprite": null,
  1864. "_N$hoverSprite": null,
  1865. "hoverSprite": null,
  1866. "_N$disabledSprite": null,
  1867. "_N$target": {
  1868. "__id__": 42
  1869. },
  1870. "_id": ""
  1871. },
  1872. {
  1873. "__type__": "cc.ClickEvent",
  1874. "target": {
  1875. "__id__": 1
  1876. },
  1877. "component": "",
  1878. "_componentId": "9b578CB5kBCtpyvrx1EoT+t",
  1879. "handler": "clickUnluckBtn",
  1880. "customEventData": ""
  1881. },
  1882. {
  1883. "__type__": "cc.PrefabInfo",
  1884. "root": {
  1885. "__id__": 1
  1886. },
  1887. "asset": {
  1888. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  1889. },
  1890. "fileId": "a9e1xKdrJE4pBvLwyxF/v/",
  1891. "sync": false
  1892. },
  1893. {
  1894. "__type__": "cc.Node",
  1895. "_name": "redPoint",
  1896. "_objFlags": 0,
  1897. "_parent": {
  1898. "__id__": 2
  1899. },
  1900. "_children": [],
  1901. "_active": false,
  1902. "_components": [
  1903. {
  1904. "__id__": 51
  1905. }
  1906. ],
  1907. "_prefab": {
  1908. "__id__": 52
  1909. },
  1910. "_opacity": 255,
  1911. "_color": {
  1912. "__type__": "cc.Color",
  1913. "r": 255,
  1914. "g": 255,
  1915. "b": 255,
  1916. "a": 255
  1917. },
  1918. "_contentSize": {
  1919. "__type__": "cc.Size",
  1920. "width": 23,
  1921. "height": 22
  1922. },
  1923. "_anchorPoint": {
  1924. "__type__": "cc.Vec2",
  1925. "x": 0.5,
  1926. "y": 0.5
  1927. },
  1928. "_trs": {
  1929. "__type__": "TypedArray",
  1930. "ctor": "Float64Array",
  1931. "array": [
  1932. -146,
  1933. -20,
  1934. 0,
  1935. 0,
  1936. 0,
  1937. 0,
  1938. 1,
  1939. 1,
  1940. 1,
  1941. 1
  1942. ]
  1943. },
  1944. "_eulerAngles": {
  1945. "__type__": "cc.Vec3",
  1946. "x": 0,
  1947. "y": 0,
  1948. "z": 0
  1949. },
  1950. "_skewX": 0,
  1951. "_skewY": 0,
  1952. "_is3DNode": false,
  1953. "_groupIndex": 0,
  1954. "groupIndex": 0,
  1955. "_id": ""
  1956. },
  1957. {
  1958. "__type__": "cc.Sprite",
  1959. "_name": "",
  1960. "_objFlags": 0,
  1961. "node": {
  1962. "__id__": 50
  1963. },
  1964. "_enabled": true,
  1965. "_materials": [
  1966. {
  1967. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1968. }
  1969. ],
  1970. "_srcBlendFactor": 770,
  1971. "_dstBlendFactor": 771,
  1972. "_spriteFrame": {
  1973. "__uuid__": "c991780f-7721-453b-8fe7-22a4b0471789"
  1974. },
  1975. "_type": 0,
  1976. "_sizeMode": 1,
  1977. "_fillType": 0,
  1978. "_fillCenter": {
  1979. "__type__": "cc.Vec2",
  1980. "x": 0,
  1981. "y": 0
  1982. },
  1983. "_fillStart": 0,
  1984. "_fillRange": 0,
  1985. "_isTrimmedMode": true,
  1986. "_atlas": null,
  1987. "_id": ""
  1988. },
  1989. {
  1990. "__type__": "cc.PrefabInfo",
  1991. "root": {
  1992. "__id__": 1
  1993. },
  1994. "asset": {
  1995. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  1996. },
  1997. "fileId": "01lmS7YtVBdo1b+3zGBrt2",
  1998. "sync": false
  1999. },
  2000. {
  2001. "__type__": "cc.Sprite",
  2002. "_name": "",
  2003. "_objFlags": 0,
  2004. "node": {
  2005. "__id__": 2
  2006. },
  2007. "_enabled": true,
  2008. "_materials": [
  2009. {
  2010. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2011. }
  2012. ],
  2013. "_srcBlendFactor": 770,
  2014. "_dstBlendFactor": 771,
  2015. "_spriteFrame": {
  2016. "__uuid__": "bfa73ac6-ce80-4edc-913d-9a008ffbbbf3"
  2017. },
  2018. "_type": 0,
  2019. "_sizeMode": 1,
  2020. "_fillType": 0,
  2021. "_fillCenter": {
  2022. "__type__": "cc.Vec2",
  2023. "x": 0,
  2024. "y": 0
  2025. },
  2026. "_fillStart": 0,
  2027. "_fillRange": 0,
  2028. "_isTrimmedMode": true,
  2029. "_atlas": null,
  2030. "_id": ""
  2031. },
  2032. {
  2033. "__type__": "cc.PrefabInfo",
  2034. "root": {
  2035. "__id__": 1
  2036. },
  2037. "asset": {
  2038. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  2039. },
  2040. "fileId": "5c6xskYjRL2aE9t87EtWjm",
  2041. "sync": false
  2042. },
  2043. {
  2044. "__type__": "9b578CB5kBCtpyvrx1EoT+t",
  2045. "_name": "",
  2046. "_objFlags": 0,
  2047. "node": {
  2048. "__id__": 1
  2049. },
  2050. "_enabled": true,
  2051. "sp_icon": {
  2052. "__id__": 5
  2053. },
  2054. "lbl_nameDes": {
  2055. "__id__": 11
  2056. },
  2057. "lbl_des": {
  2058. "__id__": 14
  2059. },
  2060. "lbl_groupDes": {
  2061. "__id__": 17
  2062. },
  2063. "node_ungetBtn": {
  2064. "__id__": 21
  2065. },
  2066. "node_getBtn": {
  2067. "__id__": 33
  2068. },
  2069. "node_unluckBtn": {
  2070. "__id__": 42
  2071. },
  2072. "node_redPoint": {
  2073. "__id__": 50
  2074. },
  2075. "_id": ""
  2076. },
  2077. {
  2078. "__type__": "cc.PrefabInfo",
  2079. "root": {
  2080. "__id__": 1
  2081. },
  2082. "asset": {
  2083. "__uuid__": "c92ee1bb-0e83-4868-97e3-d71b8b58fae0"
  2084. },
  2085. "fileId": "",
  2086. "sync": false
  2087. }
  2088. ]