pause.prefab 34 KB

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