doubleSpeed.prefab 37 KB

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