ADUnlockWindow.prefab 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373
  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. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "ADUnlockWindow",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 10
  24. }
  25. ],
  26. "_active": true,
  27. "_components": [
  28. {
  29. "__id__": 103
  30. },
  31. {
  32. "__id__": 105
  33. },
  34. {
  35. "__id__": 107
  36. },
  37. {
  38. "__id__": 109
  39. },
  40. {
  41. "__id__": 111
  42. }
  43. ],
  44. "_prefab": {
  45. "__id__": 114
  46. },
  47. "_lpos": {
  48. "__type__": "cc.Vec3",
  49. "x": 0,
  50. "y": 0,
  51. "z": 0
  52. },
  53. "_lrot": {
  54. "__type__": "cc.Quat",
  55. "x": 0,
  56. "y": 0,
  57. "z": 0,
  58. "w": 1
  59. },
  60. "_lscale": {
  61. "__type__": "cc.Vec3",
  62. "x": 1,
  63. "y": 1,
  64. "z": 1
  65. },
  66. "_layer": 1073741824,
  67. "_euler": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_id": ""
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_name": "背景",
  78. "_objFlags": 0,
  79. "_parent": {
  80. "__id__": 1
  81. },
  82. "_children": [],
  83. "_active": true,
  84. "_components": [
  85. {
  86. "__id__": 3
  87. },
  88. {
  89. "__id__": 5
  90. },
  91. {
  92. "__id__": 7
  93. }
  94. ],
  95. "_prefab": {
  96. "__id__": 9
  97. },
  98. "_lpos": {
  99. "__type__": "cc.Vec3",
  100. "x": 0,
  101. "y": 0,
  102. "z": 0
  103. },
  104. "_lrot": {
  105. "__type__": "cc.Quat",
  106. "x": 0,
  107. "y": 0,
  108. "z": 0,
  109. "w": 1
  110. },
  111. "_lscale": {
  112. "__type__": "cc.Vec3",
  113. "x": 1,
  114. "y": 1,
  115. "z": 1
  116. },
  117. "_layer": 33554432,
  118. "_euler": {
  119. "__type__": "cc.Vec3",
  120. "x": 0,
  121. "y": 0,
  122. "z": 0
  123. },
  124. "_id": ""
  125. },
  126. {
  127. "__type__": "cc.UITransform",
  128. "_name": "",
  129. "_objFlags": 0,
  130. "node": {
  131. "__id__": 2
  132. },
  133. "_enabled": true,
  134. "__prefab": {
  135. "__id__": 4
  136. },
  137. "_priority": 0,
  138. "_contentSize": {
  139. "__type__": "cc.Size",
  140. "width": 750,
  141. "height": 1334
  142. },
  143. "_anchorPoint": {
  144. "__type__": "cc.Vec2",
  145. "x": 0.5,
  146. "y": 0.5
  147. },
  148. "_id": ""
  149. },
  150. {
  151. "__type__": "cc.CompPrefabInfo",
  152. "fileId": "b45LGLZeNOioZqHBEj4I3V"
  153. },
  154. {
  155. "__type__": "cc.Sprite",
  156. "_name": "",
  157. "_objFlags": 0,
  158. "node": {
  159. "__id__": 2
  160. },
  161. "_enabled": true,
  162. "__prefab": {
  163. "__id__": 6
  164. },
  165. "_visFlags": 0,
  166. "_customMaterial": null,
  167. "_srcBlendFactor": 2,
  168. "_dstBlendFactor": 4,
  169. "_color": {
  170. "__type__": "cc.Color",
  171. "r": 0,
  172. "g": 0,
  173. "b": 0,
  174. "a": 215
  175. },
  176. "_spriteFrame": {
  177. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941"
  178. },
  179. "_type": 0,
  180. "_fillType": 0,
  181. "_sizeMode": 0,
  182. "_fillCenter": {
  183. "__type__": "cc.Vec2",
  184. "x": 0,
  185. "y": 0
  186. },
  187. "_fillStart": 0,
  188. "_fillRange": 0,
  189. "_isTrimmedMode": true,
  190. "_useGrayscale": false,
  191. "_atlas": null,
  192. "_id": ""
  193. },
  194. {
  195. "__type__": "cc.CompPrefabInfo",
  196. "fileId": "fdBrihaIdEaY8eEKIAXw8E"
  197. },
  198. {
  199. "__type__": "cc.Widget",
  200. "_name": "",
  201. "_objFlags": 0,
  202. "node": {
  203. "__id__": 2
  204. },
  205. "_enabled": true,
  206. "__prefab": {
  207. "__id__": 8
  208. },
  209. "_alignFlags": 45,
  210. "_target": null,
  211. "_left": 0,
  212. "_right": 0,
  213. "_top": 0,
  214. "_bottom": 0,
  215. "_horizontalCenter": 0,
  216. "_verticalCenter": 0,
  217. "_isAbsLeft": true,
  218. "_isAbsRight": true,
  219. "_isAbsTop": true,
  220. "_isAbsBottom": true,
  221. "_isAbsHorizontalCenter": true,
  222. "_isAbsVerticalCenter": true,
  223. "_originalWidth": 100,
  224. "_originalHeight": 100,
  225. "_alignMode": 2,
  226. "_lockFlags": 0,
  227. "_id": ""
  228. },
  229. {
  230. "__type__": "cc.CompPrefabInfo",
  231. "fileId": "a2IkyKHm9IebKjkjL1eKDq"
  232. },
  233. {
  234. "__type__": "cc.PrefabInfo",
  235. "root": {
  236. "__id__": 1
  237. },
  238. "asset": {
  239. "__id__": 0
  240. },
  241. "fileId": "d5473Ds3tMQa0CQKZkcLdk"
  242. },
  243. {
  244. "__type__": "cc.Node",
  245. "_name": "背板",
  246. "_objFlags": 0,
  247. "_parent": {
  248. "__id__": 1
  249. },
  250. "_children": [
  251. {
  252. "__id__": 11
  253. }
  254. ],
  255. "_active": true,
  256. "_components": [
  257. {
  258. "__id__": 100
  259. }
  260. ],
  261. "_prefab": {
  262. "__id__": 102
  263. },
  264. "_lpos": {
  265. "__type__": "cc.Vec3",
  266. "x": 0,
  267. "y": 0,
  268. "z": 0
  269. },
  270. "_lrot": {
  271. "__type__": "cc.Quat",
  272. "x": 0,
  273. "y": 0,
  274. "z": 0,
  275. "w": 1
  276. },
  277. "_lscale": {
  278. "__type__": "cc.Vec3",
  279. "x": 1,
  280. "y": 1,
  281. "z": 1
  282. },
  283. "_layer": 1073741824,
  284. "_euler": {
  285. "__type__": "cc.Vec3",
  286. "x": 0,
  287. "y": 0,
  288. "z": 0
  289. },
  290. "_id": ""
  291. },
  292. {
  293. "__type__": "cc.Node",
  294. "_name": "木板",
  295. "_objFlags": 0,
  296. "_parent": {
  297. "__id__": 10
  298. },
  299. "_children": [
  300. {
  301. "__id__": 12
  302. },
  303. {
  304. "__id__": 24
  305. },
  306. {
  307. "__id__": 32
  308. },
  309. {
  310. "__id__": 42
  311. },
  312. {
  313. "__id__": 68
  314. }
  315. ],
  316. "_active": true,
  317. "_components": [
  318. {
  319. "__id__": 95
  320. },
  321. {
  322. "__id__": 97
  323. }
  324. ],
  325. "_prefab": {
  326. "__id__": 99
  327. },
  328. "_lpos": {
  329. "__type__": "cc.Vec3",
  330. "x": 0,
  331. "y": 0,
  332. "z": 0
  333. },
  334. "_lrot": {
  335. "__type__": "cc.Quat",
  336. "x": 0,
  337. "y": 0,
  338. "z": 0,
  339. "w": 1
  340. },
  341. "_lscale": {
  342. "__type__": "cc.Vec3",
  343. "x": 1,
  344. "y": 1,
  345. "z": 1
  346. },
  347. "_layer": 33554432,
  348. "_euler": {
  349. "__type__": "cc.Vec3",
  350. "x": 0,
  351. "y": 0,
  352. "z": 0
  353. },
  354. "_id": ""
  355. },
  356. {
  357. "__type__": "cc.Node",
  358. "_name": "关闭按钮",
  359. "_objFlags": 0,
  360. "_parent": {
  361. "__id__": 11
  362. },
  363. "_children": [],
  364. "_active": true,
  365. "_components": [
  366. {
  367. "__id__": 13
  368. },
  369. {
  370. "__id__": 15
  371. },
  372. {
  373. "__id__": 17
  374. },
  375. {
  376. "__id__": 19
  377. },
  378. {
  379. "__id__": 21
  380. }
  381. ],
  382. "_prefab": {
  383. "__id__": 23
  384. },
  385. "_lpos": {
  386. "__type__": "cc.Vec3",
  387. "x": 255,
  388. "y": 296,
  389. "z": 0
  390. },
  391. "_lrot": {
  392. "__type__": "cc.Quat",
  393. "x": 0,
  394. "y": 0,
  395. "z": 0,
  396. "w": 1
  397. },
  398. "_lscale": {
  399. "__type__": "cc.Vec3",
  400. "x": 1,
  401. "y": 1,
  402. "z": 1
  403. },
  404. "_layer": 33554432,
  405. "_euler": {
  406. "__type__": "cc.Vec3",
  407. "x": 0,
  408. "y": 0,
  409. "z": 0
  410. },
  411. "_id": ""
  412. },
  413. {
  414. "__type__": "cc.UITransform",
  415. "_name": "",
  416. "_objFlags": 0,
  417. "node": {
  418. "__id__": 12
  419. },
  420. "_enabled": true,
  421. "__prefab": {
  422. "__id__": 14
  423. },
  424. "_priority": 0,
  425. "_contentSize": {
  426. "__type__": "cc.Size",
  427. "width": 89,
  428. "height": 88
  429. },
  430. "_anchorPoint": {
  431. "__type__": "cc.Vec2",
  432. "x": 0.5,
  433. "y": 0.5
  434. },
  435. "_id": ""
  436. },
  437. {
  438. "__type__": "cc.CompPrefabInfo",
  439. "fileId": "fffbebaJtPEKLIaIPBx0bx"
  440. },
  441. {
  442. "__type__": "cc.Sprite",
  443. "_name": "",
  444. "_objFlags": 0,
  445. "node": {
  446. "__id__": 12
  447. },
  448. "_enabled": true,
  449. "__prefab": {
  450. "__id__": 16
  451. },
  452. "_visFlags": 0,
  453. "_customMaterial": null,
  454. "_srcBlendFactor": 2,
  455. "_dstBlendFactor": 4,
  456. "_color": {
  457. "__type__": "cc.Color",
  458. "r": 255,
  459. "g": 255,
  460. "b": 255,
  461. "a": 255
  462. },
  463. "_spriteFrame": {
  464. "__uuid__": "194df592-3d3d-4882-bedd-c7e2f9cbcdca@f9941"
  465. },
  466. "_type": 0,
  467. "_fillType": 0,
  468. "_sizeMode": 0,
  469. "_fillCenter": {
  470. "__type__": "cc.Vec2",
  471. "x": 0,
  472. "y": 0
  473. },
  474. "_fillStart": 0,
  475. "_fillRange": 0,
  476. "_isTrimmedMode": true,
  477. "_useGrayscale": false,
  478. "_atlas": null,
  479. "_id": ""
  480. },
  481. {
  482. "__type__": "cc.CompPrefabInfo",
  483. "fileId": "08FMcYK81HZZa6zSv1cFj1"
  484. },
  485. {
  486. "__type__": "cc.Widget",
  487. "_name": "",
  488. "_objFlags": 0,
  489. "node": {
  490. "__id__": 12
  491. },
  492. "_enabled": true,
  493. "__prefab": {
  494. "__id__": 18
  495. },
  496. "_alignFlags": 33,
  497. "_target": null,
  498. "_left": 0,
  499. "_right": 0,
  500. "_top": 10,
  501. "_bottom": 0,
  502. "_horizontalCenter": 0,
  503. "_verticalCenter": 0,
  504. "_isAbsLeft": true,
  505. "_isAbsRight": true,
  506. "_isAbsTop": true,
  507. "_isAbsBottom": true,
  508. "_isAbsHorizontalCenter": true,
  509. "_isAbsVerticalCenter": true,
  510. "_originalWidth": 0,
  511. "_originalHeight": 0,
  512. "_alignMode": 2,
  513. "_lockFlags": 0,
  514. "_id": ""
  515. },
  516. {
  517. "__type__": "cc.CompPrefabInfo",
  518. "fileId": "8a7kEDVU5KEK5F0N2TEeo7"
  519. },
  520. {
  521. "__type__": "cc.Button",
  522. "_name": "",
  523. "_objFlags": 0,
  524. "node": {
  525. "__id__": 12
  526. },
  527. "_enabled": true,
  528. "__prefab": {
  529. "__id__": 20
  530. },
  531. "clickEvents": [],
  532. "_interactable": true,
  533. "_transition": 3,
  534. "_normalColor": {
  535. "__type__": "cc.Color",
  536. "r": 255,
  537. "g": 255,
  538. "b": 255,
  539. "a": 255
  540. },
  541. "_hoverColor": {
  542. "__type__": "cc.Color",
  543. "r": 211,
  544. "g": 211,
  545. "b": 211,
  546. "a": 255
  547. },
  548. "_pressedColor": {
  549. "__type__": "cc.Color",
  550. "r": 255,
  551. "g": 255,
  552. "b": 255,
  553. "a": 255
  554. },
  555. "_disabledColor": {
  556. "__type__": "cc.Color",
  557. "r": 124,
  558. "g": 124,
  559. "b": 124,
  560. "a": 255
  561. },
  562. "_normalSprite": {
  563. "__uuid__": "194df592-3d3d-4882-bedd-c7e2f9cbcdca@f9941"
  564. },
  565. "_hoverSprite": null,
  566. "_pressedSprite": null,
  567. "_disabledSprite": null,
  568. "_duration": 0.1,
  569. "_zoomScale": 1.2,
  570. "_target": null,
  571. "_id": ""
  572. },
  573. {
  574. "__type__": "cc.CompPrefabInfo",
  575. "fileId": "c3uX9zQnBMxp99vpPRwVde"
  576. },
  577. {
  578. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  579. "_name": "",
  580. "_objFlags": 0,
  581. "node": {
  582. "__id__": 12
  583. },
  584. "_enabled": true,
  585. "__prefab": {
  586. "__id__": 22
  587. },
  588. "clips": [
  589. {
  590. "__uuid__": "1d3965ff-d4b2-43ee-ab57-e777ac93c813"
  591. }
  592. ],
  593. "_volume": 1,
  594. "useGlobalVolume": true,
  595. "playOnLoad": false,
  596. "playOnTouch": true,
  597. "oneShot": true,
  598. "loop": false,
  599. "_id": ""
  600. },
  601. {
  602. "__type__": "cc.CompPrefabInfo",
  603. "fileId": "63PjxMTqRJZrprCbKv7Chk"
  604. },
  605. {
  606. "__type__": "cc.PrefabInfo",
  607. "root": {
  608. "__id__": 1
  609. },
  610. "asset": {
  611. "__id__": 0
  612. },
  613. "fileId": "585nLziSZE3LLIAyeZOt+A"
  614. },
  615. {
  616. "__type__": "cc.Node",
  617. "_name": "文本",
  618. "_objFlags": 0,
  619. "_parent": {
  620. "__id__": 11
  621. },
  622. "_children": [],
  623. "_active": true,
  624. "_components": [
  625. {
  626. "__id__": 25
  627. },
  628. {
  629. "__id__": 27
  630. },
  631. {
  632. "__id__": 29
  633. }
  634. ],
  635. "_prefab": {
  636. "__id__": 31
  637. },
  638. "_lpos": {
  639. "__type__": "cc.Vec3",
  640. "x": 0,
  641. "y": 218,
  642. "z": 0
  643. },
  644. "_lrot": {
  645. "__type__": "cc.Quat",
  646. "x": 0,
  647. "y": 0,
  648. "z": 0,
  649. "w": 1
  650. },
  651. "_lscale": {
  652. "__type__": "cc.Vec3",
  653. "x": 1,
  654. "y": 1,
  655. "z": 1
  656. },
  657. "_layer": 33554432,
  658. "_euler": {
  659. "__type__": "cc.Vec3",
  660. "x": 0,
  661. "y": 0,
  662. "z": 0
  663. },
  664. "_id": ""
  665. },
  666. {
  667. "__type__": "cc.UITransform",
  668. "_name": "",
  669. "_objFlags": 0,
  670. "node": {
  671. "__id__": 24
  672. },
  673. "_enabled": true,
  674. "__prefab": {
  675. "__id__": 26
  676. },
  677. "_priority": 0,
  678. "_contentSize": {
  679. "__type__": "cc.Size",
  680. "width": 210,
  681. "height": 50.4
  682. },
  683. "_anchorPoint": {
  684. "__type__": "cc.Vec2",
  685. "x": 0.5,
  686. "y": 0.5
  687. },
  688. "_id": ""
  689. },
  690. {
  691. "__type__": "cc.CompPrefabInfo",
  692. "fileId": "77nisMVYdIsa8v3kB0GUl5"
  693. },
  694. {
  695. "__type__": "cc.Label",
  696. "_name": "",
  697. "_objFlags": 0,
  698. "node": {
  699. "__id__": 24
  700. },
  701. "_enabled": true,
  702. "__prefab": {
  703. "__id__": 28
  704. },
  705. "_visFlags": 0,
  706. "_customMaterial": null,
  707. "_srcBlendFactor": 2,
  708. "_dstBlendFactor": 4,
  709. "_color": {
  710. "__type__": "cc.Color",
  711. "r": 139,
  712. "g": 69,
  713. "b": 19,
  714. "a": 255
  715. },
  716. "_string": "观看一小段广告",
  717. "_horizontalAlign": 1,
  718. "_verticalAlign": 1,
  719. "_actualFontSize": 30,
  720. "_fontSize": 30,
  721. "_fontFamily": "Arial",
  722. "_lineHeight": 40,
  723. "_overflow": 0,
  724. "_enableWrapText": true,
  725. "_font": null,
  726. "_isSystemFontUsed": true,
  727. "_isItalic": false,
  728. "_isBold": true,
  729. "_isUnderline": false,
  730. "_underlineHeight": 2,
  731. "_cacheMode": 0,
  732. "_id": ""
  733. },
  734. {
  735. "__type__": "cc.CompPrefabInfo",
  736. "fileId": "4fzVTDk6FACLyQxzRKwTdn"
  737. },
  738. {
  739. "__type__": "cc.Widget",
  740. "_name": "",
  741. "_objFlags": 0,
  742. "node": {
  743. "__id__": 24
  744. },
  745. "_enabled": true,
  746. "__prefab": {
  747. "__id__": 30
  748. },
  749. "_alignFlags": 17,
  750. "_target": null,
  751. "_left": 0,
  752. "_right": 0,
  753. "_top": 106.80000000000001,
  754. "_bottom": 0,
  755. "_horizontalCenter": 0,
  756. "_verticalCenter": 0,
  757. "_isAbsLeft": true,
  758. "_isAbsRight": true,
  759. "_isAbsTop": true,
  760. "_isAbsBottom": true,
  761. "_isAbsHorizontalCenter": true,
  762. "_isAbsVerticalCenter": true,
  763. "_originalWidth": 0,
  764. "_originalHeight": 0,
  765. "_alignMode": 2,
  766. "_lockFlags": 0,
  767. "_id": ""
  768. },
  769. {
  770. "__type__": "cc.CompPrefabInfo",
  771. "fileId": "07aTfkRx1PHpyxbDsPcCPY"
  772. },
  773. {
  774. "__type__": "cc.PrefabInfo",
  775. "root": {
  776. "__id__": 1
  777. },
  778. "asset": {
  779. "__id__": 0
  780. },
  781. "fileId": "9dUGnB1wVHRaf1w9oDn+NY"
  782. },
  783. {
  784. "__type__": "cc.Node",
  785. "_name": "立即获得文本",
  786. "_objFlags": 0,
  787. "_parent": {
  788. "__id__": 11
  789. },
  790. "_children": [],
  791. "_active": true,
  792. "_components": [
  793. {
  794. "__id__": 33
  795. },
  796. {
  797. "__id__": 35
  798. },
  799. {
  800. "__id__": 37
  801. },
  802. {
  803. "__id__": 39
  804. }
  805. ],
  806. "_prefab": {
  807. "__id__": 41
  808. },
  809. "_lpos": {
  810. "__type__": "cc.Vec3",
  811. "x": 0,
  812. "y": 115.99999999999999,
  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. "_layer": 33554432,
  829. "_euler": {
  830. "__type__": "cc.Vec3",
  831. "x": 0,
  832. "y": 0,
  833. "z": 0
  834. },
  835. "_id": ""
  836. },
  837. {
  838. "__type__": "cc.UITransform",
  839. "_name": "",
  840. "_objFlags": 0,
  841. "node": {
  842. "__id__": 32
  843. },
  844. "_enabled": true,
  845. "__prefab": {
  846. "__id__": 34
  847. },
  848. "_priority": 0,
  849. "_contentSize": {
  850. "__type__": "cc.Size",
  851. "width": 162,
  852. "height": 52.4
  853. },
  854. "_anchorPoint": {
  855. "__type__": "cc.Vec2",
  856. "x": 0.5,
  857. "y": 0.5
  858. },
  859. "_id": ""
  860. },
  861. {
  862. "__type__": "cc.CompPrefabInfo",
  863. "fileId": "66Hr+wiYZAj7ffcpdpPDAO"
  864. },
  865. {
  866. "__type__": "cc.Label",
  867. "_name": "",
  868. "_objFlags": 0,
  869. "node": {
  870. "__id__": 32
  871. },
  872. "_enabled": true,
  873. "__prefab": {
  874. "__id__": 36
  875. },
  876. "_visFlags": 0,
  877. "_customMaterial": null,
  878. "_srcBlendFactor": 2,
  879. "_dstBlendFactor": 4,
  880. "_color": {
  881. "__type__": "cc.Color",
  882. "r": 210,
  883. "g": 105,
  884. "b": 30,
  885. "a": 255
  886. },
  887. "_string": "立即获得",
  888. "_horizontalAlign": 1,
  889. "_verticalAlign": 1,
  890. "_actualFontSize": 40,
  891. "_fontSize": 40,
  892. "_fontFamily": "Arial",
  893. "_lineHeight": 40,
  894. "_overflow": 0,
  895. "_enableWrapText": true,
  896. "_font": null,
  897. "_isSystemFontUsed": true,
  898. "_isItalic": false,
  899. "_isBold": true,
  900. "_isUnderline": false,
  901. "_underlineHeight": 2,
  902. "_cacheMode": 0,
  903. "_id": ""
  904. },
  905. {
  906. "__type__": "cc.CompPrefabInfo",
  907. "fileId": "e4x2cAV3NINbBCydBBhZZg"
  908. },
  909. {
  910. "__type__": "cc.LabelOutline",
  911. "_name": "",
  912. "_objFlags": 0,
  913. "node": {
  914. "__id__": 32
  915. },
  916. "_enabled": true,
  917. "__prefab": {
  918. "__id__": 38
  919. },
  920. "_color": {
  921. "__type__": "cc.Color",
  922. "r": 255,
  923. "g": 255,
  924. "b": 255,
  925. "a": 255
  926. },
  927. "_width": 1,
  928. "_id": ""
  929. },
  930. {
  931. "__type__": "cc.CompPrefabInfo",
  932. "fileId": "42/3KW5BxMWLacO/K9yQQ2"
  933. },
  934. {
  935. "__type__": "cc.Widget",
  936. "_name": "",
  937. "_objFlags": 0,
  938. "node": {
  939. "__id__": 32
  940. },
  941. "_enabled": true,
  942. "__prefab": {
  943. "__id__": 40
  944. },
  945. "_alignFlags": 17,
  946. "_target": null,
  947. "_left": 0,
  948. "_right": 0,
  949. "_top": 207.8,
  950. "_bottom": 0,
  951. "_horizontalCenter": 0,
  952. "_verticalCenter": 0,
  953. "_isAbsLeft": true,
  954. "_isAbsRight": true,
  955. "_isAbsTop": true,
  956. "_isAbsBottom": true,
  957. "_isAbsHorizontalCenter": true,
  958. "_isAbsVerticalCenter": true,
  959. "_originalWidth": 0,
  960. "_originalHeight": 0,
  961. "_alignMode": 2,
  962. "_lockFlags": 0,
  963. "_id": ""
  964. },
  965. {
  966. "__type__": "cc.CompPrefabInfo",
  967. "fileId": "c5cBfoeHxNLrsMrnqI1wuc"
  968. },
  969. {
  970. "__type__": "cc.PrefabInfo",
  971. "root": {
  972. "__id__": 1
  973. },
  974. "asset": {
  975. "__id__": 0
  976. },
  977. "fileId": "a0Z8Nm6T9N8YSWk+3ITIuh"
  978. },
  979. {
  980. "__type__": "cc.Node",
  981. "_name": "礼物背景",
  982. "_objFlags": 0,
  983. "_parent": {
  984. "__id__": 11
  985. },
  986. "_children": [
  987. {
  988. "__id__": 43
  989. },
  990. {
  991. "__id__": 51
  992. }
  993. ],
  994. "_active": true,
  995. "_components": [
  996. {
  997. "__id__": 61
  998. },
  999. {
  1000. "__id__": 63
  1001. },
  1002. {
  1003. "__id__": 65
  1004. }
  1005. ],
  1006. "_prefab": {
  1007. "__id__": 67
  1008. },
  1009. "_lpos": {
  1010. "__type__": "cc.Vec3",
  1011. "x": 0,
  1012. "y": 0,
  1013. "z": 0
  1014. },
  1015. "_lrot": {
  1016. "__type__": "cc.Quat",
  1017. "x": 0,
  1018. "y": 0,
  1019. "z": 0,
  1020. "w": 1
  1021. },
  1022. "_lscale": {
  1023. "__type__": "cc.Vec3",
  1024. "x": 1,
  1025. "y": 1,
  1026. "z": 1
  1027. },
  1028. "_layer": 33554432,
  1029. "_euler": {
  1030. "__type__": "cc.Vec3",
  1031. "x": 0,
  1032. "y": 0,
  1033. "z": 0
  1034. },
  1035. "_id": ""
  1036. },
  1037. {
  1038. "__type__": "cc.Node",
  1039. "_name": "钻石",
  1040. "_objFlags": 0,
  1041. "_parent": {
  1042. "__id__": 42
  1043. },
  1044. "_children": [],
  1045. "_active": true,
  1046. "_components": [
  1047. {
  1048. "__id__": 44
  1049. },
  1050. {
  1051. "__id__": 46
  1052. },
  1053. {
  1054. "__id__": 48
  1055. }
  1056. ],
  1057. "_prefab": {
  1058. "__id__": 50
  1059. },
  1060. "_lpos": {
  1061. "__type__": "cc.Vec3",
  1062. "x": 0,
  1063. "y": 0,
  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": 0.6,
  1076. "y": 0.6,
  1077. "z": 1
  1078. },
  1079. "_layer": 33554432,
  1080. "_euler": {
  1081. "__type__": "cc.Vec3",
  1082. "x": 0,
  1083. "y": 0,
  1084. "z": 0
  1085. },
  1086. "_id": ""
  1087. },
  1088. {
  1089. "__type__": "cc.UITransform",
  1090. "_name": "",
  1091. "_objFlags": 0,
  1092. "node": {
  1093. "__id__": 43
  1094. },
  1095. "_enabled": true,
  1096. "__prefab": {
  1097. "__id__": 45
  1098. },
  1099. "_priority": 0,
  1100. "_contentSize": {
  1101. "__type__": "cc.Size",
  1102. "width": 162,
  1103. "height": 98
  1104. },
  1105. "_anchorPoint": {
  1106. "__type__": "cc.Vec2",
  1107. "x": 0.5,
  1108. "y": 0.5
  1109. },
  1110. "_id": ""
  1111. },
  1112. {
  1113. "__type__": "cc.CompPrefabInfo",
  1114. "fileId": "9cej+du/lDa7dQHKr5vh3u"
  1115. },
  1116. {
  1117. "__type__": "cc.Sprite",
  1118. "_name": "",
  1119. "_objFlags": 0,
  1120. "node": {
  1121. "__id__": 43
  1122. },
  1123. "_enabled": true,
  1124. "__prefab": {
  1125. "__id__": 47
  1126. },
  1127. "_visFlags": 0,
  1128. "_customMaterial": null,
  1129. "_srcBlendFactor": 2,
  1130. "_dstBlendFactor": 4,
  1131. "_color": {
  1132. "__type__": "cc.Color",
  1133. "r": 255,
  1134. "g": 255,
  1135. "b": 255,
  1136. "a": 255
  1137. },
  1138. "_spriteFrame": {
  1139. "__uuid__": "96c9b5de-e7c0-4813-8e4a-771e23eb7675@f9941"
  1140. },
  1141. "_type": 0,
  1142. "_fillType": 0,
  1143. "_sizeMode": 0,
  1144. "_fillCenter": {
  1145. "__type__": "cc.Vec2",
  1146. "x": 0,
  1147. "y": 0
  1148. },
  1149. "_fillStart": 0,
  1150. "_fillRange": 0,
  1151. "_isTrimmedMode": true,
  1152. "_useGrayscale": false,
  1153. "_atlas": null,
  1154. "_id": ""
  1155. },
  1156. {
  1157. "__type__": "cc.CompPrefabInfo",
  1158. "fileId": "ecxo9uMwJBW43eHu8qiUYY"
  1159. },
  1160. {
  1161. "__type__": "cc.Widget",
  1162. "_name": "",
  1163. "_objFlags": 0,
  1164. "node": {
  1165. "__id__": 43
  1166. },
  1167. "_enabled": true,
  1168. "__prefab": {
  1169. "__id__": 49
  1170. },
  1171. "_alignFlags": 18,
  1172. "_target": null,
  1173. "_left": 0,
  1174. "_right": 0,
  1175. "_top": 0,
  1176. "_bottom": 0,
  1177. "_horizontalCenter": 0,
  1178. "_verticalCenter": 0,
  1179. "_isAbsLeft": true,
  1180. "_isAbsRight": true,
  1181. "_isAbsTop": true,
  1182. "_isAbsBottom": true,
  1183. "_isAbsHorizontalCenter": true,
  1184. "_isAbsVerticalCenter": true,
  1185. "_originalWidth": 0,
  1186. "_originalHeight": 0,
  1187. "_alignMode": 2,
  1188. "_lockFlags": 0,
  1189. "_id": ""
  1190. },
  1191. {
  1192. "__type__": "cc.CompPrefabInfo",
  1193. "fileId": "efamR3QsZOHJe07inldZDP"
  1194. },
  1195. {
  1196. "__type__": "cc.PrefabInfo",
  1197. "root": {
  1198. "__id__": 1
  1199. },
  1200. "asset": {
  1201. "__id__": 0
  1202. },
  1203. "fileId": "b5wPvTM75IrqHBSeifFeLZ"
  1204. },
  1205. {
  1206. "__type__": "cc.Node",
  1207. "_name": "钻石数",
  1208. "_objFlags": 0,
  1209. "_parent": {
  1210. "__id__": 42
  1211. },
  1212. "_children": [],
  1213. "_active": true,
  1214. "_components": [
  1215. {
  1216. "__id__": 52
  1217. },
  1218. {
  1219. "__id__": 54
  1220. },
  1221. {
  1222. "__id__": 56
  1223. },
  1224. {
  1225. "__id__": 58
  1226. }
  1227. ],
  1228. "_prefab": {
  1229. "__id__": 60
  1230. },
  1231. "_lpos": {
  1232. "__type__": "cc.Vec3",
  1233. "x": 0,
  1234. "y": -35,
  1235. "z": 0
  1236. },
  1237. "_lrot": {
  1238. "__type__": "cc.Quat",
  1239. "x": 0,
  1240. "y": 0,
  1241. "z": 0,
  1242. "w": 1
  1243. },
  1244. "_lscale": {
  1245. "__type__": "cc.Vec3",
  1246. "x": 1,
  1247. "y": 1,
  1248. "z": 1
  1249. },
  1250. "_layer": 33554432,
  1251. "_euler": {
  1252. "__type__": "cc.Vec3",
  1253. "x": 0,
  1254. "y": 0,
  1255. "z": 0
  1256. },
  1257. "_id": ""
  1258. },
  1259. {
  1260. "__type__": "cc.UITransform",
  1261. "_name": "",
  1262. "_objFlags": 0,
  1263. "node": {
  1264. "__id__": 51
  1265. },
  1266. "_enabled": true,
  1267. "__prefab": {
  1268. "__id__": 53
  1269. },
  1270. "_priority": 0,
  1271. "_contentSize": {
  1272. "__type__": "cc.Size",
  1273. "width": 21.52,
  1274. "height": 54.4
  1275. },
  1276. "_anchorPoint": {
  1277. "__type__": "cc.Vec2",
  1278. "x": 0.5,
  1279. "y": 0.5
  1280. },
  1281. "_id": ""
  1282. },
  1283. {
  1284. "__type__": "cc.CompPrefabInfo",
  1285. "fileId": "0bTW5hfSlJS46bR0/S1m3t"
  1286. },
  1287. {
  1288. "__type__": "cc.Label",
  1289. "_name": "",
  1290. "_objFlags": 0,
  1291. "node": {
  1292. "__id__": 51
  1293. },
  1294. "_enabled": true,
  1295. "__prefab": {
  1296. "__id__": 55
  1297. },
  1298. "_visFlags": 0,
  1299. "_customMaterial": null,
  1300. "_srcBlendFactor": 2,
  1301. "_dstBlendFactor": 4,
  1302. "_color": {
  1303. "__type__": "cc.Color",
  1304. "r": 255,
  1305. "g": 140,
  1306. "b": 0,
  1307. "a": 255
  1308. },
  1309. "_string": "",
  1310. "_horizontalAlign": 1,
  1311. "_verticalAlign": 1,
  1312. "_actualFontSize": 30,
  1313. "_fontSize": 30,
  1314. "_fontFamily": "Arial",
  1315. "_lineHeight": 40,
  1316. "_overflow": 0,
  1317. "_enableWrapText": true,
  1318. "_font": null,
  1319. "_isSystemFontUsed": true,
  1320. "_isItalic": false,
  1321. "_isBold": true,
  1322. "_isUnderline": false,
  1323. "_underlineHeight": 2,
  1324. "_cacheMode": 0,
  1325. "_id": ""
  1326. },
  1327. {
  1328. "__type__": "cc.CompPrefabInfo",
  1329. "fileId": "7576MOI31KNoiychox/H45"
  1330. },
  1331. {
  1332. "__type__": "cc.Widget",
  1333. "_name": "",
  1334. "_objFlags": 0,
  1335. "node": {
  1336. "__id__": 51
  1337. },
  1338. "_enabled": true,
  1339. "__prefab": {
  1340. "__id__": 57
  1341. },
  1342. "_alignFlags": 20,
  1343. "_target": null,
  1344. "_left": 0,
  1345. "_right": 0,
  1346. "_top": 0,
  1347. "_bottom": -10.2,
  1348. "_horizontalCenter": 0,
  1349. "_verticalCenter": 0,
  1350. "_isAbsLeft": true,
  1351. "_isAbsRight": true,
  1352. "_isAbsTop": true,
  1353. "_isAbsBottom": true,
  1354. "_isAbsHorizontalCenter": true,
  1355. "_isAbsVerticalCenter": true,
  1356. "_originalWidth": 0,
  1357. "_originalHeight": 0,
  1358. "_alignMode": 2,
  1359. "_lockFlags": 0,
  1360. "_id": ""
  1361. },
  1362. {
  1363. "__type__": "cc.CompPrefabInfo",
  1364. "fileId": "74ZUwl0OdAcaXjZVVIhDWz"
  1365. },
  1366. {
  1367. "__type__": "cc.LabelOutline",
  1368. "_name": "",
  1369. "_objFlags": 0,
  1370. "node": {
  1371. "__id__": 51
  1372. },
  1373. "_enabled": true,
  1374. "__prefab": {
  1375. "__id__": 59
  1376. },
  1377. "_color": {
  1378. "__type__": "cc.Color",
  1379. "r": 139,
  1380. "g": 69,
  1381. "b": 19,
  1382. "a": 255
  1383. },
  1384. "_width": 2,
  1385. "_id": ""
  1386. },
  1387. {
  1388. "__type__": "cc.CompPrefabInfo",
  1389. "fileId": "ddxWODHZNF16ISqhY+drDy"
  1390. },
  1391. {
  1392. "__type__": "cc.PrefabInfo",
  1393. "root": {
  1394. "__id__": 1
  1395. },
  1396. "asset": {
  1397. "__id__": 0
  1398. },
  1399. "fileId": "2d5dBSmIRGN7khcM1vXP1m"
  1400. },
  1401. {
  1402. "__type__": "cc.UITransform",
  1403. "_name": "",
  1404. "_objFlags": 0,
  1405. "node": {
  1406. "__id__": 42
  1407. },
  1408. "_enabled": true,
  1409. "__prefab": {
  1410. "__id__": 62
  1411. },
  1412. "_priority": 0,
  1413. "_contentSize": {
  1414. "__type__": "cc.Size",
  1415. "width": 104,
  1416. "height": 104
  1417. },
  1418. "_anchorPoint": {
  1419. "__type__": "cc.Vec2",
  1420. "x": 0.5,
  1421. "y": 0.5
  1422. },
  1423. "_id": ""
  1424. },
  1425. {
  1426. "__type__": "cc.CompPrefabInfo",
  1427. "fileId": "a0u36ny4dMxqySkkjHWWpM"
  1428. },
  1429. {
  1430. "__type__": "cc.Sprite",
  1431. "_name": "",
  1432. "_objFlags": 0,
  1433. "node": {
  1434. "__id__": 42
  1435. },
  1436. "_enabled": true,
  1437. "__prefab": {
  1438. "__id__": 64
  1439. },
  1440. "_visFlags": 0,
  1441. "_customMaterial": null,
  1442. "_srcBlendFactor": 2,
  1443. "_dstBlendFactor": 4,
  1444. "_color": {
  1445. "__type__": "cc.Color",
  1446. "r": 255,
  1447. "g": 255,
  1448. "b": 255,
  1449. "a": 255
  1450. },
  1451. "_spriteFrame": {
  1452. "__uuid__": "fc7a5703-4208-41e0-8ee0-269d6b7d4a74@f9941"
  1453. },
  1454. "_type": 0,
  1455. "_fillType": 0,
  1456. "_sizeMode": 0,
  1457. "_fillCenter": {
  1458. "__type__": "cc.Vec2",
  1459. "x": 0,
  1460. "y": 0
  1461. },
  1462. "_fillStart": 0,
  1463. "_fillRange": 0,
  1464. "_isTrimmedMode": true,
  1465. "_useGrayscale": false,
  1466. "_atlas": null,
  1467. "_id": ""
  1468. },
  1469. {
  1470. "__type__": "cc.CompPrefabInfo",
  1471. "fileId": "65vqcR7oFOaaZTHHWk+OLM"
  1472. },
  1473. {
  1474. "__type__": "cc.Widget",
  1475. "_name": "",
  1476. "_objFlags": 0,
  1477. "node": {
  1478. "__id__": 42
  1479. },
  1480. "_enabled": true,
  1481. "__prefab": {
  1482. "__id__": 66
  1483. },
  1484. "_alignFlags": 17,
  1485. "_target": null,
  1486. "_left": 0,
  1487. "_right": 0,
  1488. "_top": 298,
  1489. "_bottom": 0,
  1490. "_horizontalCenter": 0,
  1491. "_verticalCenter": 0,
  1492. "_isAbsLeft": true,
  1493. "_isAbsRight": true,
  1494. "_isAbsTop": true,
  1495. "_isAbsBottom": true,
  1496. "_isAbsHorizontalCenter": true,
  1497. "_isAbsVerticalCenter": true,
  1498. "_originalWidth": 0,
  1499. "_originalHeight": 0,
  1500. "_alignMode": 2,
  1501. "_lockFlags": 0,
  1502. "_id": ""
  1503. },
  1504. {
  1505. "__type__": "cc.CompPrefabInfo",
  1506. "fileId": "29Eb853q5JS57anEQLNv/S"
  1507. },
  1508. {
  1509. "__type__": "cc.PrefabInfo",
  1510. "root": {
  1511. "__id__": 1
  1512. },
  1513. "asset": {
  1514. "__id__": 0
  1515. },
  1516. "fileId": "4bwmasnJ1J0oi7v9yCrXeD"
  1517. },
  1518. {
  1519. "__type__": "cc.Node",
  1520. "_name": "立即领取",
  1521. "_objFlags": 0,
  1522. "_parent": {
  1523. "__id__": 11
  1524. },
  1525. "_children": [
  1526. {
  1527. "__id__": 69
  1528. },
  1529. {
  1530. "__id__": 77
  1531. }
  1532. ],
  1533. "_active": true,
  1534. "_components": [
  1535. {
  1536. "__id__": 83
  1537. },
  1538. {
  1539. "__id__": 85
  1540. },
  1541. {
  1542. "__id__": 87
  1543. },
  1544. {
  1545. "__id__": 89
  1546. },
  1547. {
  1548. "__id__": 92
  1549. }
  1550. ],
  1551. "_prefab": {
  1552. "__id__": 94
  1553. },
  1554. "_lpos": {
  1555. "__type__": "cc.Vec3",
  1556. "x": 0,
  1557. "y": -180.56,
  1558. "z": 0
  1559. },
  1560. "_lrot": {
  1561. "__type__": "cc.Quat",
  1562. "x": 0,
  1563. "y": 0,
  1564. "z": 0,
  1565. "w": 1
  1566. },
  1567. "_lscale": {
  1568. "__type__": "cc.Vec3",
  1569. "x": 1,
  1570. "y": 1,
  1571. "z": 1
  1572. },
  1573. "_layer": 33554432,
  1574. "_euler": {
  1575. "__type__": "cc.Vec3",
  1576. "x": 0,
  1577. "y": 0,
  1578. "z": 0
  1579. },
  1580. "_id": ""
  1581. },
  1582. {
  1583. "__type__": "cc.Node",
  1584. "_name": "视频图标",
  1585. "_objFlags": 0,
  1586. "_parent": {
  1587. "__id__": 68
  1588. },
  1589. "_children": [],
  1590. "_active": true,
  1591. "_components": [
  1592. {
  1593. "__id__": 70
  1594. },
  1595. {
  1596. "__id__": 72
  1597. },
  1598. {
  1599. "__id__": 74
  1600. }
  1601. ],
  1602. "_prefab": {
  1603. "__id__": 76
  1604. },
  1605. "_lpos": {
  1606. "__type__": "cc.Vec3",
  1607. "x": -128,
  1608. "y": 0,
  1609. "z": 0
  1610. },
  1611. "_lrot": {
  1612. "__type__": "cc.Quat",
  1613. "x": 0,
  1614. "y": 0,
  1615. "z": 0,
  1616. "w": 1
  1617. },
  1618. "_lscale": {
  1619. "__type__": "cc.Vec3",
  1620. "x": 1,
  1621. "y": 1,
  1622. "z": 1
  1623. },
  1624. "_layer": 33554432,
  1625. "_euler": {
  1626. "__type__": "cc.Vec3",
  1627. "x": 0,
  1628. "y": 0,
  1629. "z": 0
  1630. },
  1631. "_id": ""
  1632. },
  1633. {
  1634. "__type__": "cc.UITransform",
  1635. "_name": "",
  1636. "_objFlags": 0,
  1637. "node": {
  1638. "__id__": 69
  1639. },
  1640. "_enabled": true,
  1641. "__prefab": {
  1642. "__id__": 71
  1643. },
  1644. "_priority": 0,
  1645. "_contentSize": {
  1646. "__type__": "cc.Size",
  1647. "width": 91,
  1648. "height": 97
  1649. },
  1650. "_anchorPoint": {
  1651. "__type__": "cc.Vec2",
  1652. "x": 0.5,
  1653. "y": 0.5
  1654. },
  1655. "_id": ""
  1656. },
  1657. {
  1658. "__type__": "cc.CompPrefabInfo",
  1659. "fileId": "dd5dKWTGFK5oZPClMEztbu"
  1660. },
  1661. {
  1662. "__type__": "cc.Sprite",
  1663. "_name": "",
  1664. "_objFlags": 0,
  1665. "node": {
  1666. "__id__": 69
  1667. },
  1668. "_enabled": true,
  1669. "__prefab": {
  1670. "__id__": 73
  1671. },
  1672. "_visFlags": 0,
  1673. "_customMaterial": null,
  1674. "_srcBlendFactor": 2,
  1675. "_dstBlendFactor": 4,
  1676. "_color": {
  1677. "__type__": "cc.Color",
  1678. "r": 255,
  1679. "g": 255,
  1680. "b": 255,
  1681. "a": 255
  1682. },
  1683. "_spriteFrame": {
  1684. "__uuid__": "b7c2b0ee-ffff-4822-add8-18fb1b55161c@f9941"
  1685. },
  1686. "_type": 0,
  1687. "_fillType": 0,
  1688. "_sizeMode": 0,
  1689. "_fillCenter": {
  1690. "__type__": "cc.Vec2",
  1691. "x": 0,
  1692. "y": 0
  1693. },
  1694. "_fillStart": 0,
  1695. "_fillRange": 0,
  1696. "_isTrimmedMode": true,
  1697. "_useGrayscale": false,
  1698. "_atlas": null,
  1699. "_id": ""
  1700. },
  1701. {
  1702. "__type__": "cc.CompPrefabInfo",
  1703. "fileId": "26RxHHJylK4a9b3/lMiPia"
  1704. },
  1705. {
  1706. "__type__": "cc.Widget",
  1707. "_name": "",
  1708. "_objFlags": 0,
  1709. "node": {
  1710. "__id__": 69
  1711. },
  1712. "_enabled": true,
  1713. "__prefab": {
  1714. "__id__": 75
  1715. },
  1716. "_alignFlags": 10,
  1717. "_target": null,
  1718. "_left": -30,
  1719. "_right": 0,
  1720. "_top": 0,
  1721. "_bottom": 0,
  1722. "_horizontalCenter": 0,
  1723. "_verticalCenter": 0,
  1724. "_isAbsLeft": true,
  1725. "_isAbsRight": true,
  1726. "_isAbsTop": true,
  1727. "_isAbsBottom": true,
  1728. "_isAbsHorizontalCenter": true,
  1729. "_isAbsVerticalCenter": true,
  1730. "_originalWidth": 0,
  1731. "_originalHeight": 0,
  1732. "_alignMode": 2,
  1733. "_lockFlags": 0,
  1734. "_id": ""
  1735. },
  1736. {
  1737. "__type__": "cc.CompPrefabInfo",
  1738. "fileId": "14WOcjmspBNLDwsUBtqlXo"
  1739. },
  1740. {
  1741. "__type__": "cc.PrefabInfo",
  1742. "root": {
  1743. "__id__": 1
  1744. },
  1745. "asset": {
  1746. "__id__": 0
  1747. },
  1748. "fileId": "37OjkUdsVL3q1+cvKZvTk9"
  1749. },
  1750. {
  1751. "__type__": "cc.Node",
  1752. "_name": "add_window_btn_byte_0",
  1753. "_objFlags": 0,
  1754. "_parent": {
  1755. "__id__": 68
  1756. },
  1757. "_children": [],
  1758. "_active": true,
  1759. "_components": [
  1760. {
  1761. "__id__": 78
  1762. },
  1763. {
  1764. "__id__": 80
  1765. }
  1766. ],
  1767. "_prefab": {
  1768. "__id__": 82
  1769. },
  1770. "_lpos": {
  1771. "__type__": "cc.Vec3",
  1772. "x": 0,
  1773. "y": 0,
  1774. "z": 0
  1775. },
  1776. "_lrot": {
  1777. "__type__": "cc.Quat",
  1778. "x": 0,
  1779. "y": 0,
  1780. "z": 0,
  1781. "w": 1
  1782. },
  1783. "_lscale": {
  1784. "__type__": "cc.Vec3",
  1785. "x": 1,
  1786. "y": 1,
  1787. "z": 1
  1788. },
  1789. "_layer": 1073741824,
  1790. "_euler": {
  1791. "__type__": "cc.Vec3",
  1792. "x": 0,
  1793. "y": 0,
  1794. "z": 0
  1795. },
  1796. "_id": ""
  1797. },
  1798. {
  1799. "__type__": "cc.UITransform",
  1800. "_name": "",
  1801. "_objFlags": 0,
  1802. "node": {
  1803. "__id__": 77
  1804. },
  1805. "_enabled": true,
  1806. "__prefab": {
  1807. "__id__": 79
  1808. },
  1809. "_priority": 0,
  1810. "_contentSize": {
  1811. "__type__": "cc.Size",
  1812. "width": 139,
  1813. "height": 37
  1814. },
  1815. "_anchorPoint": {
  1816. "__type__": "cc.Vec2",
  1817. "x": 0.5,
  1818. "y": 0.5
  1819. },
  1820. "_id": ""
  1821. },
  1822. {
  1823. "__type__": "cc.CompPrefabInfo",
  1824. "fileId": "92ymZ0WqxCs7WeDx5ox+EQ"
  1825. },
  1826. {
  1827. "__type__": "cc.Sprite",
  1828. "_name": "",
  1829. "_objFlags": 0,
  1830. "node": {
  1831. "__id__": 77
  1832. },
  1833. "_enabled": true,
  1834. "__prefab": {
  1835. "__id__": 81
  1836. },
  1837. "_visFlags": 0,
  1838. "_customMaterial": null,
  1839. "_srcBlendFactor": 2,
  1840. "_dstBlendFactor": 4,
  1841. "_color": {
  1842. "__type__": "cc.Color",
  1843. "r": 255,
  1844. "g": 255,
  1845. "b": 255,
  1846. "a": 255
  1847. },
  1848. "_spriteFrame": {
  1849. "__uuid__": "b306062e-375f-4e24-8d94-adf669c855e2@f9941"
  1850. },
  1851. "_type": 0,
  1852. "_fillType": 0,
  1853. "_sizeMode": 1,
  1854. "_fillCenter": {
  1855. "__type__": "cc.Vec2",
  1856. "x": 0,
  1857. "y": 0
  1858. },
  1859. "_fillStart": 0,
  1860. "_fillRange": 0,
  1861. "_isTrimmedMode": true,
  1862. "_useGrayscale": false,
  1863. "_atlas": null,
  1864. "_id": ""
  1865. },
  1866. {
  1867. "__type__": "cc.CompPrefabInfo",
  1868. "fileId": "6aIgAXrb9Mwpf8bwg/+vNQ"
  1869. },
  1870. {
  1871. "__type__": "cc.PrefabInfo",
  1872. "root": {
  1873. "__id__": 1
  1874. },
  1875. "asset": {
  1876. "__id__": 0
  1877. },
  1878. "fileId": "6bTvEjZepH8IHcZn5D1f6S"
  1879. },
  1880. {
  1881. "__type__": "cc.UITransform",
  1882. "_name": "",
  1883. "_objFlags": 0,
  1884. "node": {
  1885. "__id__": 68
  1886. },
  1887. "_enabled": true,
  1888. "__prefab": {
  1889. "__id__": 84
  1890. },
  1891. "_priority": 0,
  1892. "_contentSize": {
  1893. "__type__": "cc.Size",
  1894. "width": 287,
  1895. "height": 96
  1896. },
  1897. "_anchorPoint": {
  1898. "__type__": "cc.Vec2",
  1899. "x": 0.5,
  1900. "y": 0.5
  1901. },
  1902. "_id": ""
  1903. },
  1904. {
  1905. "__type__": "cc.CompPrefabInfo",
  1906. "fileId": "d9cX1I195Mr4NGIaLHSzzv"
  1907. },
  1908. {
  1909. "__type__": "cc.Sprite",
  1910. "_name": "",
  1911. "_objFlags": 0,
  1912. "node": {
  1913. "__id__": 68
  1914. },
  1915. "_enabled": true,
  1916. "__prefab": {
  1917. "__id__": 86
  1918. },
  1919. "_visFlags": 0,
  1920. "_customMaterial": null,
  1921. "_srcBlendFactor": 2,
  1922. "_dstBlendFactor": 4,
  1923. "_color": {
  1924. "__type__": "cc.Color",
  1925. "r": 255,
  1926. "g": 255,
  1927. "b": 255,
  1928. "a": 255
  1929. },
  1930. "_spriteFrame": {
  1931. "__uuid__": "b0441a04-95a8-4264-bc52-3881bbf09462@f9941"
  1932. },
  1933. "_type": 0,
  1934. "_fillType": 0,
  1935. "_sizeMode": 0,
  1936. "_fillCenter": {
  1937. "__type__": "cc.Vec2",
  1938. "x": 0,
  1939. "y": 0
  1940. },
  1941. "_fillStart": 0,
  1942. "_fillRange": 0,
  1943. "_isTrimmedMode": true,
  1944. "_useGrayscale": false,
  1945. "_atlas": null,
  1946. "_id": ""
  1947. },
  1948. {
  1949. "__type__": "cc.CompPrefabInfo",
  1950. "fileId": "688XuxVUxIEoDcBIMfF2IL"
  1951. },
  1952. {
  1953. "__type__": "cc.Widget",
  1954. "_name": "",
  1955. "_objFlags": 0,
  1956. "node": {
  1957. "__id__": 68
  1958. },
  1959. "_enabled": true,
  1960. "__prefab": {
  1961. "__id__": 88
  1962. },
  1963. "_alignFlags": 20,
  1964. "_target": null,
  1965. "_left": 0,
  1966. "_right": 0,
  1967. "_top": 0,
  1968. "_bottom": 121.44,
  1969. "_horizontalCenter": 0,
  1970. "_verticalCenter": 0,
  1971. "_isAbsLeft": true,
  1972. "_isAbsRight": true,
  1973. "_isAbsTop": true,
  1974. "_isAbsBottom": true,
  1975. "_isAbsHorizontalCenter": true,
  1976. "_isAbsVerticalCenter": true,
  1977. "_originalWidth": 0,
  1978. "_originalHeight": 0,
  1979. "_alignMode": 2,
  1980. "_lockFlags": 0,
  1981. "_id": ""
  1982. },
  1983. {
  1984. "__type__": "cc.CompPrefabInfo",
  1985. "fileId": "98yI63fHpDGowE2IoxQJLj"
  1986. },
  1987. {
  1988. "__type__": "cc.Button",
  1989. "_name": "",
  1990. "_objFlags": 0,
  1991. "node": {
  1992. "__id__": 68
  1993. },
  1994. "_enabled": true,
  1995. "__prefab": {
  1996. "__id__": 90
  1997. },
  1998. "clickEvents": [
  1999. {
  2000. "__id__": 91
  2001. }
  2002. ],
  2003. "_interactable": true,
  2004. "_transition": 3,
  2005. "_normalColor": {
  2006. "__type__": "cc.Color",
  2007. "r": 255,
  2008. "g": 255,
  2009. "b": 255,
  2010. "a": 255
  2011. },
  2012. "_hoverColor": {
  2013. "__type__": "cc.Color",
  2014. "r": 211,
  2015. "g": 211,
  2016. "b": 211,
  2017. "a": 255
  2018. },
  2019. "_pressedColor": {
  2020. "__type__": "cc.Color",
  2021. "r": 255,
  2022. "g": 255,
  2023. "b": 255,
  2024. "a": 255
  2025. },
  2026. "_disabledColor": {
  2027. "__type__": "cc.Color",
  2028. "r": 124,
  2029. "g": 124,
  2030. "b": 124,
  2031. "a": 255
  2032. },
  2033. "_normalSprite": {
  2034. "__uuid__": "b0441a04-95a8-4264-bc52-3881bbf09462@f9941"
  2035. },
  2036. "_hoverSprite": null,
  2037. "_pressedSprite": null,
  2038. "_disabledSprite": null,
  2039. "_duration": 0.1,
  2040. "_zoomScale": 1.2,
  2041. "_target": null,
  2042. "_id": ""
  2043. },
  2044. {
  2045. "__type__": "cc.CompPrefabInfo",
  2046. "fileId": "62p95dbnpCYoqPWBVMmbgP"
  2047. },
  2048. {
  2049. "__type__": "cc.ClickEvent",
  2050. "target": {
  2051. "__id__": 1
  2052. },
  2053. "component": "",
  2054. "_componentId": "2211fIgUOxLnaI4fITsXHzx",
  2055. "handler": "onClickButton",
  2056. "customEventData": ""
  2057. },
  2058. {
  2059. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  2060. "_name": "",
  2061. "_objFlags": 0,
  2062. "node": {
  2063. "__id__": 68
  2064. },
  2065. "_enabled": true,
  2066. "__prefab": {
  2067. "__id__": 93
  2068. },
  2069. "clips": [
  2070. {
  2071. "__uuid__": "88ef321e-a4f1-49a0-82cf-eb6dc7123a25"
  2072. }
  2073. ],
  2074. "_volume": 1,
  2075. "useGlobalVolume": true,
  2076. "playOnLoad": false,
  2077. "playOnTouch": true,
  2078. "oneShot": true,
  2079. "loop": false,
  2080. "_id": ""
  2081. },
  2082. {
  2083. "__type__": "cc.CompPrefabInfo",
  2084. "fileId": "9e5OC5lD1Ea5QjSVe/t1Ti"
  2085. },
  2086. {
  2087. "__type__": "cc.PrefabInfo",
  2088. "root": {
  2089. "__id__": 1
  2090. },
  2091. "asset": {
  2092. "__id__": 0
  2093. },
  2094. "fileId": "c8rmEFbYBCSYQ1cLoF3sEK"
  2095. },
  2096. {
  2097. "__type__": "cc.UITransform",
  2098. "_name": "",
  2099. "_objFlags": 0,
  2100. "node": {
  2101. "__id__": 11
  2102. },
  2103. "_enabled": true,
  2104. "__prefab": {
  2105. "__id__": 96
  2106. },
  2107. "_priority": 0,
  2108. "_contentSize": {
  2109. "__type__": "cc.Size",
  2110. "width": 599,
  2111. "height": 700
  2112. },
  2113. "_anchorPoint": {
  2114. "__type__": "cc.Vec2",
  2115. "x": 0.5,
  2116. "y": 0.5
  2117. },
  2118. "_id": ""
  2119. },
  2120. {
  2121. "__type__": "cc.CompPrefabInfo",
  2122. "fileId": "ccxXGN4PxKMo8q94gf3k2M"
  2123. },
  2124. {
  2125. "__type__": "cc.Sprite",
  2126. "_name": "",
  2127. "_objFlags": 0,
  2128. "node": {
  2129. "__id__": 11
  2130. },
  2131. "_enabled": true,
  2132. "__prefab": {
  2133. "__id__": 98
  2134. },
  2135. "_visFlags": 0,
  2136. "_customMaterial": null,
  2137. "_srcBlendFactor": 2,
  2138. "_dstBlendFactor": 4,
  2139. "_color": {
  2140. "__type__": "cc.Color",
  2141. "r": 255,
  2142. "g": 255,
  2143. "b": 255,
  2144. "a": 255
  2145. },
  2146. "_spriteFrame": {
  2147. "__uuid__": "898d164f-4a0f-4d44-9065-0c70f936ae02@f9941"
  2148. },
  2149. "_type": 0,
  2150. "_fillType": 0,
  2151. "_sizeMode": 0,
  2152. "_fillCenter": {
  2153. "__type__": "cc.Vec2",
  2154. "x": 0,
  2155. "y": 0
  2156. },
  2157. "_fillStart": 0,
  2158. "_fillRange": 0,
  2159. "_isTrimmedMode": true,
  2160. "_useGrayscale": false,
  2161. "_atlas": null,
  2162. "_id": ""
  2163. },
  2164. {
  2165. "__type__": "cc.CompPrefabInfo",
  2166. "fileId": "b8F+/2wulOWLdo/Zpp4kAe"
  2167. },
  2168. {
  2169. "__type__": "cc.PrefabInfo",
  2170. "root": {
  2171. "__id__": 1
  2172. },
  2173. "asset": {
  2174. "__id__": 0
  2175. },
  2176. "fileId": "8bOsuViDZN6peixVRsocye"
  2177. },
  2178. {
  2179. "__type__": "cc.UITransform",
  2180. "_name": "",
  2181. "_objFlags": 0,
  2182. "node": {
  2183. "__id__": 10
  2184. },
  2185. "_enabled": true,
  2186. "__prefab": {
  2187. "__id__": 101
  2188. },
  2189. "_priority": 0,
  2190. "_contentSize": {
  2191. "__type__": "cc.Size",
  2192. "width": 100,
  2193. "height": 100
  2194. },
  2195. "_anchorPoint": {
  2196. "__type__": "cc.Vec2",
  2197. "x": 0.5,
  2198. "y": 0.5
  2199. },
  2200. "_id": ""
  2201. },
  2202. {
  2203. "__type__": "cc.CompPrefabInfo",
  2204. "fileId": "1aLNJCxWZJoJL8IUHOvs9K"
  2205. },
  2206. {
  2207. "__type__": "cc.PrefabInfo",
  2208. "root": {
  2209. "__id__": 1
  2210. },
  2211. "asset": {
  2212. "__id__": 0
  2213. },
  2214. "fileId": "98aJkCxfRCObwvJNzv/2bN"
  2215. },
  2216. {
  2217. "__type__": "cc.UITransform",
  2218. "_name": "",
  2219. "_objFlags": 0,
  2220. "node": {
  2221. "__id__": 1
  2222. },
  2223. "_enabled": true,
  2224. "__prefab": {
  2225. "__id__": 104
  2226. },
  2227. "_priority": 0,
  2228. "_contentSize": {
  2229. "__type__": "cc.Size",
  2230. "width": 750,
  2231. "height": 1334
  2232. },
  2233. "_anchorPoint": {
  2234. "__type__": "cc.Vec2",
  2235. "x": 0.5,
  2236. "y": 0.5
  2237. },
  2238. "_id": ""
  2239. },
  2240. {
  2241. "__type__": "cc.CompPrefabInfo",
  2242. "fileId": "88lQ7LFYxBUqj3sk2C/Adz"
  2243. },
  2244. {
  2245. "__type__": "cc.Widget",
  2246. "_name": "",
  2247. "_objFlags": 0,
  2248. "node": {
  2249. "__id__": 1
  2250. },
  2251. "_enabled": true,
  2252. "__prefab": {
  2253. "__id__": 106
  2254. },
  2255. "_alignFlags": 45,
  2256. "_target": null,
  2257. "_left": 0,
  2258. "_right": 0,
  2259. "_top": 0,
  2260. "_bottom": 0,
  2261. "_horizontalCenter": 0,
  2262. "_verticalCenter": 0,
  2263. "_isAbsLeft": true,
  2264. "_isAbsRight": true,
  2265. "_isAbsTop": true,
  2266. "_isAbsBottom": true,
  2267. "_isAbsHorizontalCenter": true,
  2268. "_isAbsVerticalCenter": true,
  2269. "_originalWidth": 100,
  2270. "_originalHeight": 100,
  2271. "_alignMode": 2,
  2272. "_lockFlags": 0,
  2273. "_id": ""
  2274. },
  2275. {
  2276. "__type__": "cc.CompPrefabInfo",
  2277. "fileId": "0cxzgN2r1H/qS3WQUxHxYb"
  2278. },
  2279. {
  2280. "__type__": "dac21xJD+VAUaoh8lKjfmQr",
  2281. "_name": "",
  2282. "_objFlags": 0,
  2283. "node": {
  2284. "__id__": 1
  2285. },
  2286. "_enabled": true,
  2287. "__prefab": {
  2288. "__id__": 108
  2289. },
  2290. "hostAlias": "",
  2291. "withCredentials": false,
  2292. "timeout": 0,
  2293. "responseType": 3,
  2294. "onProgress": null,
  2295. "useEncrypt": true,
  2296. "useLog": true,
  2297. "_id": ""
  2298. },
  2299. {
  2300. "__type__": "cc.CompPrefabInfo",
  2301. "fileId": "72iRT1x55PZo54qNrZ9NsY"
  2302. },
  2303. {
  2304. "__type__": "2211fIgUOxLnaI4fITsXHzx",
  2305. "_name": "",
  2306. "_objFlags": 0,
  2307. "node": {
  2308. "__id__": 1
  2309. },
  2310. "_enabled": true,
  2311. "__prefab": {
  2312. "__id__": 110
  2313. },
  2314. "http": {
  2315. "__id__": 107
  2316. },
  2317. "_id": ""
  2318. },
  2319. {
  2320. "__type__": "cc.CompPrefabInfo",
  2321. "fileId": "a07oS0EQ5Npr5S7P0XHSTF"
  2322. },
  2323. {
  2324. "__type__": "bd869tPK79PH4A99v6jE8q0",
  2325. "_name": "",
  2326. "_objFlags": 0,
  2327. "node": {
  2328. "__id__": 1
  2329. },
  2330. "_enabled": true,
  2331. "__prefab": {
  2332. "__id__": 112
  2333. },
  2334. "closeNodes": [
  2335. {
  2336. "__id__": 2
  2337. },
  2338. {
  2339. "__id__": 12
  2340. }
  2341. ],
  2342. "onParams": {
  2343. "__id__": 113
  2344. },
  2345. "onClosing": null,
  2346. "closeTween": null,
  2347. "_id": ""
  2348. },
  2349. {
  2350. "__type__": "cc.CompPrefabInfo",
  2351. "fileId": "15Uzv/r+hFI7vkUcBY+fIA"
  2352. },
  2353. {
  2354. "__type__": "cc.ClickEvent",
  2355. "target": {
  2356. "__id__": 1
  2357. },
  2358. "component": "",
  2359. "_componentId": "2211fIgUOxLnaI4fITsXHzx",
  2360. "handler": "onParams",
  2361. "customEventData": ""
  2362. },
  2363. {
  2364. "__type__": "cc.PrefabInfo",
  2365. "root": {
  2366. "__id__": 1
  2367. },
  2368. "asset": {
  2369. "__id__": 0
  2370. },
  2371. "fileId": "25KFDuiVxPA5gErAdg/0Oj"
  2372. }
  2373. ]