doubleSpeed.prefab 33 KB

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