completeImmediately.prefab 31 KB

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