restart_view.prefab 32 KB

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