Lack.prefab 35 KB

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