unLock_view.prefab 35 KB

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