fail.prefab 33 KB

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