doubleSpeed.prefab 34 KB

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