AutoBreakSuccessUI.prefab 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655
  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": "AutoBreakSuccessUI",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. },
  26. {
  27. "__id__": 18
  28. },
  29. {
  30. "__id__": 30
  31. },
  32. {
  33. "__id__": 33
  34. },
  35. {
  36. "__id__": 36
  37. },
  38. {
  39. "__id__": 40
  40. },
  41. {
  42. "__id__": 43
  43. },
  44. {
  45. "__id__": 66
  46. },
  47. {
  48. "__id__": 71
  49. }
  50. ],
  51. "_active": true,
  52. "_components": [
  53. {
  54. "__id__": 77
  55. }
  56. ],
  57. "_prefab": {
  58. "__id__": 78
  59. },
  60. "_opacity": 255,
  61. "_color": {
  62. "__type__": "cc.Color",
  63. "r": 255,
  64. "g": 255,
  65. "b": 255,
  66. "a": 255
  67. },
  68. "_contentSize": {
  69. "__type__": "cc.Size",
  70. "width": 2400,
  71. "height": 1080
  72. },
  73. "_anchorPoint": {
  74. "__type__": "cc.Vec2",
  75. "x": 0.5,
  76. "y": 0.5
  77. },
  78. "_trs": {
  79. "__type__": "TypedArray",
  80. "ctor": "Float64Array",
  81. "array": [
  82. 0,
  83. 0,
  84. 0,
  85. 0,
  86. 0,
  87. 0,
  88. 1,
  89. 1,
  90. 1,
  91. 1
  92. ]
  93. },
  94. "_eulerAngles": {
  95. "__type__": "cc.Vec3",
  96. "x": 0,
  97. "y": 0,
  98. "z": 0
  99. },
  100. "_skewX": 0,
  101. "_skewY": 0,
  102. "_is3DNode": false,
  103. "_groupIndex": 0,
  104. "groupIndex": 0,
  105. "_id": ""
  106. },
  107. {
  108. "__type__": "cc.Node",
  109. "_name": "bg",
  110. "_objFlags": 0,
  111. "_parent": {
  112. "__id__": 1
  113. },
  114. "_children": [],
  115. "_active": true,
  116. "_components": [
  117. {
  118. "__id__": 3
  119. },
  120. {
  121. "__id__": 4
  122. }
  123. ],
  124. "_prefab": {
  125. "__id__": 5
  126. },
  127. "_opacity": 204,
  128. "_color": {
  129. "__type__": "cc.Color",
  130. "r": 0,
  131. "g": 0,
  132. "b": 0,
  133. "a": 255
  134. },
  135. "_contentSize": {
  136. "__type__": "cc.Size",
  137. "width": 2400,
  138. "height": 1080
  139. },
  140. "_anchorPoint": {
  141. "__type__": "cc.Vec2",
  142. "x": 0.5,
  143. "y": 0.5
  144. },
  145. "_trs": {
  146. "__type__": "TypedArray",
  147. "ctor": "Float64Array",
  148. "array": [
  149. 0,
  150. 0,
  151. 0,
  152. 0,
  153. 0,
  154. 0,
  155. 1,
  156. 1,
  157. 1,
  158. 1
  159. ]
  160. },
  161. "_eulerAngles": {
  162. "__type__": "cc.Vec3",
  163. "x": 0,
  164. "y": 0,
  165. "z": 0
  166. },
  167. "_skewX": 0,
  168. "_skewY": 0,
  169. "_is3DNode": false,
  170. "_groupIndex": 0,
  171. "groupIndex": 0,
  172. "_id": ""
  173. },
  174. {
  175. "__type__": "cc.Sprite",
  176. "_name": "",
  177. "_objFlags": 0,
  178. "node": {
  179. "__id__": 2
  180. },
  181. "_enabled": true,
  182. "_materials": [
  183. {
  184. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  185. }
  186. ],
  187. "_srcBlendFactor": 770,
  188. "_dstBlendFactor": 771,
  189. "_spriteFrame": {
  190. "__uuid__": "05b69229-67ad-42c3-bf71-09c34d9def2b"
  191. },
  192. "_type": 1,
  193. "_sizeMode": 0,
  194. "_fillType": 0,
  195. "_fillCenter": {
  196. "__type__": "cc.Vec2",
  197. "x": 0,
  198. "y": 0
  199. },
  200. "_fillStart": 0,
  201. "_fillRange": 0,
  202. "_isTrimmedMode": true,
  203. "_atlas": null,
  204. "_id": ""
  205. },
  206. {
  207. "__type__": "62f58zwdOVN/rFVGtus3pDj",
  208. "_name": "",
  209. "_objFlags": 0,
  210. "node": {
  211. "__id__": 2
  212. },
  213. "_enabled": true,
  214. "widthFit": true,
  215. "heightFit": true,
  216. "_id": ""
  217. },
  218. {
  219. "__type__": "cc.PrefabInfo",
  220. "root": {
  221. "__id__": 1
  222. },
  223. "asset": {
  224. "__id__": 0
  225. },
  226. "fileId": "beHoluJDFJe67PJ/ysLKzH",
  227. "sync": false
  228. },
  229. {
  230. "__type__": "cc.Node",
  231. "_name": "chains",
  232. "_objFlags": 0,
  233. "_parent": {
  234. "__id__": 1
  235. },
  236. "_children": [
  237. {
  238. "__id__": 7
  239. },
  240. {
  241. "__id__": 10
  242. },
  243. {
  244. "__id__": 13
  245. }
  246. ],
  247. "_active": true,
  248. "_components": [
  249. {
  250. "__id__": 16
  251. }
  252. ],
  253. "_prefab": {
  254. "__id__": 17
  255. },
  256. "_opacity": 255,
  257. "_color": {
  258. "__type__": "cc.Color",
  259. "r": 255,
  260. "g": 255,
  261. "b": 255,
  262. "a": 255
  263. },
  264. "_contentSize": {
  265. "__type__": "cc.Size",
  266. "width": 20,
  267. "height": 177
  268. },
  269. "_anchorPoint": {
  270. "__type__": "cc.Vec2",
  271. "x": 0.5,
  272. "y": 0.5
  273. },
  274. "_trs": {
  275. "__type__": "TypedArray",
  276. "ctor": "Float64Array",
  277. "array": [
  278. -375.906,
  279. 445.228,
  280. 0,
  281. 0,
  282. 0,
  283. 0,
  284. 1,
  285. 1,
  286. 1,
  287. 1
  288. ]
  289. },
  290. "_eulerAngles": {
  291. "__type__": "cc.Vec3",
  292. "x": 0,
  293. "y": 0,
  294. "z": 0
  295. },
  296. "_skewX": 0,
  297. "_skewY": 0,
  298. "_is3DNode": false,
  299. "_groupIndex": 0,
  300. "groupIndex": 0,
  301. "_id": ""
  302. },
  303. {
  304. "__type__": "cc.Node",
  305. "_name": "chain",
  306. "_objFlags": 0,
  307. "_parent": {
  308. "__id__": 6
  309. },
  310. "_children": [],
  311. "_active": true,
  312. "_components": [
  313. {
  314. "__id__": 8
  315. }
  316. ],
  317. "_prefab": {
  318. "__id__": 9
  319. },
  320. "_opacity": 255,
  321. "_color": {
  322. "__type__": "cc.Color",
  323. "r": 255,
  324. "g": 255,
  325. "b": 255,
  326. "a": 255
  327. },
  328. "_contentSize": {
  329. "__type__": "cc.Size",
  330. "width": 24,
  331. "height": 59
  332. },
  333. "_anchorPoint": {
  334. "__type__": "cc.Vec2",
  335. "x": 0.5,
  336. "y": 0.5
  337. },
  338. "_trs": {
  339. "__type__": "TypedArray",
  340. "ctor": "Float64Array",
  341. "array": [
  342. 0,
  343. 59,
  344. 0,
  345. 0,
  346. 0,
  347. 0,
  348. 1,
  349. 1,
  350. 1,
  351. 1
  352. ]
  353. },
  354. "_eulerAngles": {
  355. "__type__": "cc.Vec3",
  356. "x": 0,
  357. "y": 0,
  358. "z": 0
  359. },
  360. "_skewX": 0,
  361. "_skewY": 0,
  362. "_is3DNode": false,
  363. "_groupIndex": 0,
  364. "groupIndex": 0,
  365. "_id": ""
  366. },
  367. {
  368. "__type__": "cc.Sprite",
  369. "_name": "",
  370. "_objFlags": 0,
  371. "node": {
  372. "__id__": 7
  373. },
  374. "_enabled": true,
  375. "_materials": [
  376. {
  377. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  378. }
  379. ],
  380. "_srcBlendFactor": 770,
  381. "_dstBlendFactor": 771,
  382. "_spriteFrame": {
  383. "__uuid__": "d1c8582d-6d32-45d1-9197-3a9e97252180"
  384. },
  385. "_type": 0,
  386. "_sizeMode": 1,
  387. "_fillType": 0,
  388. "_fillCenter": {
  389. "__type__": "cc.Vec2",
  390. "x": 0,
  391. "y": 0
  392. },
  393. "_fillStart": 0,
  394. "_fillRange": 0,
  395. "_isTrimmedMode": true,
  396. "_atlas": null,
  397. "_id": ""
  398. },
  399. {
  400. "__type__": "cc.PrefabInfo",
  401. "root": {
  402. "__id__": 1
  403. },
  404. "asset": {
  405. "__id__": 0
  406. },
  407. "fileId": "0cQrNmff5NJpSb3fqJ59FT",
  408. "sync": false
  409. },
  410. {
  411. "__type__": "cc.Node",
  412. "_name": "chain",
  413. "_objFlags": 0,
  414. "_parent": {
  415. "__id__": 6
  416. },
  417. "_children": [],
  418. "_active": true,
  419. "_components": [
  420. {
  421. "__id__": 11
  422. }
  423. ],
  424. "_prefab": {
  425. "__id__": 12
  426. },
  427. "_opacity": 255,
  428. "_color": {
  429. "__type__": "cc.Color",
  430. "r": 255,
  431. "g": 255,
  432. "b": 255,
  433. "a": 255
  434. },
  435. "_contentSize": {
  436. "__type__": "cc.Size",
  437. "width": 24,
  438. "height": 59
  439. },
  440. "_anchorPoint": {
  441. "__type__": "cc.Vec2",
  442. "x": 0.5,
  443. "y": 0.5
  444. },
  445. "_trs": {
  446. "__type__": "TypedArray",
  447. "ctor": "Float64Array",
  448. "array": [
  449. 0,
  450. 0,
  451. 0,
  452. 0,
  453. 0,
  454. 0,
  455. 1,
  456. 1,
  457. 1,
  458. 1
  459. ]
  460. },
  461. "_eulerAngles": {
  462. "__type__": "cc.Vec3",
  463. "x": 0,
  464. "y": 0,
  465. "z": 0
  466. },
  467. "_skewX": 0,
  468. "_skewY": 0,
  469. "_is3DNode": false,
  470. "_groupIndex": 0,
  471. "groupIndex": 0,
  472. "_id": ""
  473. },
  474. {
  475. "__type__": "cc.Sprite",
  476. "_name": "",
  477. "_objFlags": 0,
  478. "node": {
  479. "__id__": 10
  480. },
  481. "_enabled": true,
  482. "_materials": [
  483. {
  484. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  485. }
  486. ],
  487. "_srcBlendFactor": 770,
  488. "_dstBlendFactor": 771,
  489. "_spriteFrame": {
  490. "__uuid__": "d1c8582d-6d32-45d1-9197-3a9e97252180"
  491. },
  492. "_type": 0,
  493. "_sizeMode": 1,
  494. "_fillType": 0,
  495. "_fillCenter": {
  496. "__type__": "cc.Vec2",
  497. "x": 0,
  498. "y": 0
  499. },
  500. "_fillStart": 0,
  501. "_fillRange": 0,
  502. "_isTrimmedMode": true,
  503. "_atlas": null,
  504. "_id": ""
  505. },
  506. {
  507. "__type__": "cc.PrefabInfo",
  508. "root": {
  509. "__id__": 1
  510. },
  511. "asset": {
  512. "__id__": 0
  513. },
  514. "fileId": "f4G9D+oFVMSK055/hXQelG",
  515. "sync": false
  516. },
  517. {
  518. "__type__": "cc.Node",
  519. "_name": "chain",
  520. "_objFlags": 0,
  521. "_parent": {
  522. "__id__": 6
  523. },
  524. "_children": [],
  525. "_active": true,
  526. "_components": [
  527. {
  528. "__id__": 14
  529. }
  530. ],
  531. "_prefab": {
  532. "__id__": 15
  533. },
  534. "_opacity": 255,
  535. "_color": {
  536. "__type__": "cc.Color",
  537. "r": 255,
  538. "g": 255,
  539. "b": 255,
  540. "a": 255
  541. },
  542. "_contentSize": {
  543. "__type__": "cc.Size",
  544. "width": 24,
  545. "height": 59
  546. },
  547. "_anchorPoint": {
  548. "__type__": "cc.Vec2",
  549. "x": 0.5,
  550. "y": 0.5
  551. },
  552. "_trs": {
  553. "__type__": "TypedArray",
  554. "ctor": "Float64Array",
  555. "array": [
  556. 0,
  557. -59,
  558. 0,
  559. 0,
  560. 0,
  561. 0,
  562. 1,
  563. 1,
  564. 1,
  565. 1
  566. ]
  567. },
  568. "_eulerAngles": {
  569. "__type__": "cc.Vec3",
  570. "x": 0,
  571. "y": 0,
  572. "z": 0
  573. },
  574. "_skewX": 0,
  575. "_skewY": 0,
  576. "_is3DNode": false,
  577. "_groupIndex": 0,
  578. "groupIndex": 0,
  579. "_id": ""
  580. },
  581. {
  582. "__type__": "cc.Sprite",
  583. "_name": "",
  584. "_objFlags": 0,
  585. "node": {
  586. "__id__": 13
  587. },
  588. "_enabled": true,
  589. "_materials": [
  590. {
  591. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  592. }
  593. ],
  594. "_srcBlendFactor": 770,
  595. "_dstBlendFactor": 771,
  596. "_spriteFrame": {
  597. "__uuid__": "d1c8582d-6d32-45d1-9197-3a9e97252180"
  598. },
  599. "_type": 0,
  600. "_sizeMode": 1,
  601. "_fillType": 0,
  602. "_fillCenter": {
  603. "__type__": "cc.Vec2",
  604. "x": 0,
  605. "y": 0
  606. },
  607. "_fillStart": 0,
  608. "_fillRange": 0,
  609. "_isTrimmedMode": true,
  610. "_atlas": null,
  611. "_id": ""
  612. },
  613. {
  614. "__type__": "cc.PrefabInfo",
  615. "root": {
  616. "__id__": 1
  617. },
  618. "asset": {
  619. "__id__": 0
  620. },
  621. "fileId": "fehZnljMNKT5qxpv6ckmVw",
  622. "sync": false
  623. },
  624. {
  625. "__type__": "cc.Layout",
  626. "_name": "",
  627. "_objFlags": 0,
  628. "node": {
  629. "__id__": 6
  630. },
  631. "_enabled": true,
  632. "_layoutSize": {
  633. "__type__": "cc.Size",
  634. "width": 20,
  635. "height": 177
  636. },
  637. "_resize": 1,
  638. "_N$layoutType": 2,
  639. "_N$cellSize": {
  640. "__type__": "cc.Size",
  641. "width": 40,
  642. "height": 40
  643. },
  644. "_N$startAxis": 0,
  645. "_N$paddingLeft": 0,
  646. "_N$paddingRight": 0,
  647. "_N$paddingTop": 0,
  648. "_N$paddingBottom": 0,
  649. "_N$spacingX": 0,
  650. "_N$spacingY": 0,
  651. "_N$verticalDirection": 1,
  652. "_N$horizontalDirection": 0,
  653. "_N$affectedByScale": false,
  654. "_id": ""
  655. },
  656. {
  657. "__type__": "cc.PrefabInfo",
  658. "root": {
  659. "__id__": 1
  660. },
  661. "asset": {
  662. "__id__": 0
  663. },
  664. "fileId": "b4PWJMx3BEP6fkpkZZC0bE",
  665. "sync": false
  666. },
  667. {
  668. "__type__": "cc.Node",
  669. "_name": "chains",
  670. "_objFlags": 0,
  671. "_parent": {
  672. "__id__": 1
  673. },
  674. "_children": [
  675. {
  676. "__id__": 19
  677. },
  678. {
  679. "__id__": 22
  680. },
  681. {
  682. "__id__": 25
  683. }
  684. ],
  685. "_active": true,
  686. "_components": [
  687. {
  688. "__id__": 28
  689. }
  690. ],
  691. "_prefab": {
  692. "__id__": 29
  693. },
  694. "_opacity": 255,
  695. "_color": {
  696. "__type__": "cc.Color",
  697. "r": 255,
  698. "g": 255,
  699. "b": 255,
  700. "a": 255
  701. },
  702. "_contentSize": {
  703. "__type__": "cc.Size",
  704. "width": 20,
  705. "height": 177
  706. },
  707. "_anchorPoint": {
  708. "__type__": "cc.Vec2",
  709. "x": 0.5,
  710. "y": 0.5
  711. },
  712. "_trs": {
  713. "__type__": "TypedArray",
  714. "ctor": "Float64Array",
  715. "array": [
  716. 375.906,
  717. 445.228,
  718. 0,
  719. 0,
  720. 0,
  721. 0,
  722. 1,
  723. 1,
  724. 1,
  725. 1
  726. ]
  727. },
  728. "_eulerAngles": {
  729. "__type__": "cc.Vec3",
  730. "x": 0,
  731. "y": 0,
  732. "z": 0
  733. },
  734. "_skewX": 0,
  735. "_skewY": 0,
  736. "_is3DNode": false,
  737. "_groupIndex": 0,
  738. "groupIndex": 0,
  739. "_id": ""
  740. },
  741. {
  742. "__type__": "cc.Node",
  743. "_name": "chain",
  744. "_objFlags": 0,
  745. "_parent": {
  746. "__id__": 18
  747. },
  748. "_children": [],
  749. "_active": true,
  750. "_components": [
  751. {
  752. "__id__": 20
  753. }
  754. ],
  755. "_prefab": {
  756. "__id__": 21
  757. },
  758. "_opacity": 255,
  759. "_color": {
  760. "__type__": "cc.Color",
  761. "r": 255,
  762. "g": 255,
  763. "b": 255,
  764. "a": 255
  765. },
  766. "_contentSize": {
  767. "__type__": "cc.Size",
  768. "width": 24,
  769. "height": 59
  770. },
  771. "_anchorPoint": {
  772. "__type__": "cc.Vec2",
  773. "x": 0.5,
  774. "y": 0.5
  775. },
  776. "_trs": {
  777. "__type__": "TypedArray",
  778. "ctor": "Float64Array",
  779. "array": [
  780. 0,
  781. 59,
  782. 0,
  783. 0,
  784. 0,
  785. 0,
  786. 1,
  787. 1,
  788. 1,
  789. 1
  790. ]
  791. },
  792. "_eulerAngles": {
  793. "__type__": "cc.Vec3",
  794. "x": 0,
  795. "y": 0,
  796. "z": 0
  797. },
  798. "_skewX": 0,
  799. "_skewY": 0,
  800. "_is3DNode": false,
  801. "_groupIndex": 0,
  802. "groupIndex": 0,
  803. "_id": ""
  804. },
  805. {
  806. "__type__": "cc.Sprite",
  807. "_name": "",
  808. "_objFlags": 0,
  809. "node": {
  810. "__id__": 19
  811. },
  812. "_enabled": true,
  813. "_materials": [
  814. {
  815. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  816. }
  817. ],
  818. "_srcBlendFactor": 770,
  819. "_dstBlendFactor": 771,
  820. "_spriteFrame": {
  821. "__uuid__": "d1c8582d-6d32-45d1-9197-3a9e97252180"
  822. },
  823. "_type": 0,
  824. "_sizeMode": 1,
  825. "_fillType": 0,
  826. "_fillCenter": {
  827. "__type__": "cc.Vec2",
  828. "x": 0,
  829. "y": 0
  830. },
  831. "_fillStart": 0,
  832. "_fillRange": 0,
  833. "_isTrimmedMode": true,
  834. "_atlas": null,
  835. "_id": ""
  836. },
  837. {
  838. "__type__": "cc.PrefabInfo",
  839. "root": {
  840. "__id__": 1
  841. },
  842. "asset": {
  843. "__id__": 0
  844. },
  845. "fileId": "9bT7f6tk1DEaF/oUPRIfVq",
  846. "sync": false
  847. },
  848. {
  849. "__type__": "cc.Node",
  850. "_name": "chain",
  851. "_objFlags": 0,
  852. "_parent": {
  853. "__id__": 18
  854. },
  855. "_children": [],
  856. "_active": true,
  857. "_components": [
  858. {
  859. "__id__": 23
  860. }
  861. ],
  862. "_prefab": {
  863. "__id__": 24
  864. },
  865. "_opacity": 255,
  866. "_color": {
  867. "__type__": "cc.Color",
  868. "r": 255,
  869. "g": 255,
  870. "b": 255,
  871. "a": 255
  872. },
  873. "_contentSize": {
  874. "__type__": "cc.Size",
  875. "width": 24,
  876. "height": 59
  877. },
  878. "_anchorPoint": {
  879. "__type__": "cc.Vec2",
  880. "x": 0.5,
  881. "y": 0.5
  882. },
  883. "_trs": {
  884. "__type__": "TypedArray",
  885. "ctor": "Float64Array",
  886. "array": [
  887. 0,
  888. 0,
  889. 0,
  890. 0,
  891. 0,
  892. 0,
  893. 1,
  894. 1,
  895. 1,
  896. 1
  897. ]
  898. },
  899. "_eulerAngles": {
  900. "__type__": "cc.Vec3",
  901. "x": 0,
  902. "y": 0,
  903. "z": 0
  904. },
  905. "_skewX": 0,
  906. "_skewY": 0,
  907. "_is3DNode": false,
  908. "_groupIndex": 0,
  909. "groupIndex": 0,
  910. "_id": ""
  911. },
  912. {
  913. "__type__": "cc.Sprite",
  914. "_name": "",
  915. "_objFlags": 0,
  916. "node": {
  917. "__id__": 22
  918. },
  919. "_enabled": true,
  920. "_materials": [
  921. {
  922. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  923. }
  924. ],
  925. "_srcBlendFactor": 770,
  926. "_dstBlendFactor": 771,
  927. "_spriteFrame": {
  928. "__uuid__": "d1c8582d-6d32-45d1-9197-3a9e97252180"
  929. },
  930. "_type": 0,
  931. "_sizeMode": 1,
  932. "_fillType": 0,
  933. "_fillCenter": {
  934. "__type__": "cc.Vec2",
  935. "x": 0,
  936. "y": 0
  937. },
  938. "_fillStart": 0,
  939. "_fillRange": 0,
  940. "_isTrimmedMode": true,
  941. "_atlas": null,
  942. "_id": ""
  943. },
  944. {
  945. "__type__": "cc.PrefabInfo",
  946. "root": {
  947. "__id__": 1
  948. },
  949. "asset": {
  950. "__id__": 0
  951. },
  952. "fileId": "c6b1Bw6ElJwZPts4CuLT3f",
  953. "sync": false
  954. },
  955. {
  956. "__type__": "cc.Node",
  957. "_name": "chain",
  958. "_objFlags": 0,
  959. "_parent": {
  960. "__id__": 18
  961. },
  962. "_children": [],
  963. "_active": true,
  964. "_components": [
  965. {
  966. "__id__": 26
  967. }
  968. ],
  969. "_prefab": {
  970. "__id__": 27
  971. },
  972. "_opacity": 255,
  973. "_color": {
  974. "__type__": "cc.Color",
  975. "r": 255,
  976. "g": 255,
  977. "b": 255,
  978. "a": 255
  979. },
  980. "_contentSize": {
  981. "__type__": "cc.Size",
  982. "width": 24,
  983. "height": 59
  984. },
  985. "_anchorPoint": {
  986. "__type__": "cc.Vec2",
  987. "x": 0.5,
  988. "y": 0.5
  989. },
  990. "_trs": {
  991. "__type__": "TypedArray",
  992. "ctor": "Float64Array",
  993. "array": [
  994. 0,
  995. -59,
  996. 0,
  997. 0,
  998. 0,
  999. 0,
  1000. 1,
  1001. 1,
  1002. 1,
  1003. 1
  1004. ]
  1005. },
  1006. "_eulerAngles": {
  1007. "__type__": "cc.Vec3",
  1008. "x": 0,
  1009. "y": 0,
  1010. "z": 0
  1011. },
  1012. "_skewX": 0,
  1013. "_skewY": 0,
  1014. "_is3DNode": false,
  1015. "_groupIndex": 0,
  1016. "groupIndex": 0,
  1017. "_id": ""
  1018. },
  1019. {
  1020. "__type__": "cc.Sprite",
  1021. "_name": "",
  1022. "_objFlags": 0,
  1023. "node": {
  1024. "__id__": 25
  1025. },
  1026. "_enabled": true,
  1027. "_materials": [
  1028. {
  1029. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1030. }
  1031. ],
  1032. "_srcBlendFactor": 770,
  1033. "_dstBlendFactor": 771,
  1034. "_spriteFrame": {
  1035. "__uuid__": "d1c8582d-6d32-45d1-9197-3a9e97252180"
  1036. },
  1037. "_type": 0,
  1038. "_sizeMode": 1,
  1039. "_fillType": 0,
  1040. "_fillCenter": {
  1041. "__type__": "cc.Vec2",
  1042. "x": 0,
  1043. "y": 0
  1044. },
  1045. "_fillStart": 0,
  1046. "_fillRange": 0,
  1047. "_isTrimmedMode": true,
  1048. "_atlas": null,
  1049. "_id": ""
  1050. },
  1051. {
  1052. "__type__": "cc.PrefabInfo",
  1053. "root": {
  1054. "__id__": 1
  1055. },
  1056. "asset": {
  1057. "__id__": 0
  1058. },
  1059. "fileId": "16h0LT5pRDKr34dELfafYC",
  1060. "sync": false
  1061. },
  1062. {
  1063. "__type__": "cc.Layout",
  1064. "_name": "",
  1065. "_objFlags": 0,
  1066. "node": {
  1067. "__id__": 18
  1068. },
  1069. "_enabled": true,
  1070. "_layoutSize": {
  1071. "__type__": "cc.Size",
  1072. "width": 20,
  1073. "height": 177
  1074. },
  1075. "_resize": 1,
  1076. "_N$layoutType": 2,
  1077. "_N$cellSize": {
  1078. "__type__": "cc.Size",
  1079. "width": 40,
  1080. "height": 40
  1081. },
  1082. "_N$startAxis": 0,
  1083. "_N$paddingLeft": 0,
  1084. "_N$paddingRight": 0,
  1085. "_N$paddingTop": 0,
  1086. "_N$paddingBottom": 0,
  1087. "_N$spacingX": 0,
  1088. "_N$spacingY": 0,
  1089. "_N$verticalDirection": 1,
  1090. "_N$horizontalDirection": 0,
  1091. "_N$affectedByScale": false,
  1092. "_id": ""
  1093. },
  1094. {
  1095. "__type__": "cc.PrefabInfo",
  1096. "root": {
  1097. "__id__": 1
  1098. },
  1099. "asset": {
  1100. "__id__": 0
  1101. },
  1102. "fileId": "c3or/LvcVFBp0d6fxrEyyw",
  1103. "sync": false
  1104. },
  1105. {
  1106. "__type__": "cc.Node",
  1107. "_name": "common_popup",
  1108. "_objFlags": 0,
  1109. "_parent": {
  1110. "__id__": 1
  1111. },
  1112. "_children": [],
  1113. "_active": true,
  1114. "_components": [
  1115. {
  1116. "__id__": 31
  1117. }
  1118. ],
  1119. "_prefab": {
  1120. "__id__": 32
  1121. },
  1122. "_opacity": 255,
  1123. "_color": {
  1124. "__type__": "cc.Color",
  1125. "r": 255,
  1126. "g": 255,
  1127. "b": 255,
  1128. "a": 255
  1129. },
  1130. "_contentSize": {
  1131. "__type__": "cc.Size",
  1132. "width": 1000,
  1133. "height": 700
  1134. },
  1135. "_anchorPoint": {
  1136. "__type__": "cc.Vec2",
  1137. "x": 0.5,
  1138. "y": 0.5
  1139. },
  1140. "_trs": {
  1141. "__type__": "TypedArray",
  1142. "ctor": "Float64Array",
  1143. "array": [
  1144. 0,
  1145. 16.589,
  1146. 0,
  1147. 0,
  1148. 0,
  1149. 0,
  1150. 1,
  1151. 1,
  1152. 1,
  1153. 1
  1154. ]
  1155. },
  1156. "_eulerAngles": {
  1157. "__type__": "cc.Vec3",
  1158. "x": 0,
  1159. "y": 0,
  1160. "z": 0
  1161. },
  1162. "_skewX": 0,
  1163. "_skewY": 0,
  1164. "_is3DNode": false,
  1165. "_groupIndex": 0,
  1166. "groupIndex": 0,
  1167. "_id": ""
  1168. },
  1169. {
  1170. "__type__": "cc.Sprite",
  1171. "_name": "",
  1172. "_objFlags": 0,
  1173. "node": {
  1174. "__id__": 30
  1175. },
  1176. "_enabled": true,
  1177. "_materials": [
  1178. {
  1179. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1180. }
  1181. ],
  1182. "_srcBlendFactor": 770,
  1183. "_dstBlendFactor": 771,
  1184. "_spriteFrame": {
  1185. "__uuid__": "e07f7d80-677d-4def-b648-88341c7a5b1a"
  1186. },
  1187. "_type": 1,
  1188. "_sizeMode": 0,
  1189. "_fillType": 0,
  1190. "_fillCenter": {
  1191. "__type__": "cc.Vec2",
  1192. "x": 0,
  1193. "y": 0
  1194. },
  1195. "_fillStart": 0,
  1196. "_fillRange": 0,
  1197. "_isTrimmedMode": true,
  1198. "_atlas": null,
  1199. "_id": ""
  1200. },
  1201. {
  1202. "__type__": "cc.PrefabInfo",
  1203. "root": {
  1204. "__id__": 1
  1205. },
  1206. "asset": {
  1207. "__id__": 0
  1208. },
  1209. "fileId": "4buBUu7MVJOJ0g+7gHeeTq",
  1210. "sync": false
  1211. },
  1212. {
  1213. "__type__": "cc.Node",
  1214. "_name": "streamer_tiele",
  1215. "_objFlags": 0,
  1216. "_parent": {
  1217. "__id__": 1
  1218. },
  1219. "_children": [],
  1220. "_active": true,
  1221. "_components": [
  1222. {
  1223. "__id__": 34
  1224. }
  1225. ],
  1226. "_prefab": {
  1227. "__id__": 35
  1228. },
  1229. "_opacity": 255,
  1230. "_color": {
  1231. "__type__": "cc.Color",
  1232. "r": 255,
  1233. "g": 255,
  1234. "b": 255,
  1235. "a": 255
  1236. },
  1237. "_contentSize": {
  1238. "__type__": "cc.Size",
  1239. "width": 801,
  1240. "height": 151
  1241. },
  1242. "_anchorPoint": {
  1243. "__type__": "cc.Vec2",
  1244. "x": 0.5,
  1245. "y": 0.5
  1246. },
  1247. "_trs": {
  1248. "__type__": "TypedArray",
  1249. "ctor": "Float64Array",
  1250. "array": [
  1251. 0,
  1252. 363.95,
  1253. 0,
  1254. 0,
  1255. 0,
  1256. 0,
  1257. 1,
  1258. 1,
  1259. 1,
  1260. 1
  1261. ]
  1262. },
  1263. "_eulerAngles": {
  1264. "__type__": "cc.Vec3",
  1265. "x": 0,
  1266. "y": 0,
  1267. "z": 0
  1268. },
  1269. "_skewX": 0,
  1270. "_skewY": 0,
  1271. "_is3DNode": false,
  1272. "_groupIndex": 0,
  1273. "groupIndex": 0,
  1274. "_id": ""
  1275. },
  1276. {
  1277. "__type__": "cc.Sprite",
  1278. "_name": "",
  1279. "_objFlags": 0,
  1280. "node": {
  1281. "__id__": 33
  1282. },
  1283. "_enabled": true,
  1284. "_materials": [
  1285. {
  1286. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1287. }
  1288. ],
  1289. "_srcBlendFactor": 770,
  1290. "_dstBlendFactor": 771,
  1291. "_spriteFrame": {
  1292. "__uuid__": "b5b89dca-a78a-4915-97f6-466dde419a03"
  1293. },
  1294. "_type": 0,
  1295. "_sizeMode": 1,
  1296. "_fillType": 0,
  1297. "_fillCenter": {
  1298. "__type__": "cc.Vec2",
  1299. "x": 0,
  1300. "y": 0
  1301. },
  1302. "_fillStart": 0,
  1303. "_fillRange": 0,
  1304. "_isTrimmedMode": true,
  1305. "_atlas": null,
  1306. "_id": ""
  1307. },
  1308. {
  1309. "__type__": "cc.PrefabInfo",
  1310. "root": {
  1311. "__id__": 1
  1312. },
  1313. "asset": {
  1314. "__id__": 0
  1315. },
  1316. "fileId": "67njngzRpHWKLfSeu2Zdzi",
  1317. "sync": false
  1318. },
  1319. {
  1320. "__type__": "cc.Node",
  1321. "_name": "label",
  1322. "_objFlags": 0,
  1323. "_parent": {
  1324. "__id__": 1
  1325. },
  1326. "_children": [],
  1327. "_active": true,
  1328. "_components": [
  1329. {
  1330. "__id__": 37
  1331. },
  1332. {
  1333. "__id__": 38
  1334. }
  1335. ],
  1336. "_prefab": {
  1337. "__id__": 39
  1338. },
  1339. "_opacity": 255,
  1340. "_color": {
  1341. "__type__": "cc.Color",
  1342. "r": 255,
  1343. "g": 255,
  1344. "b": 255,
  1345. "a": 255
  1346. },
  1347. "_contentSize": {
  1348. "__type__": "cc.Size",
  1349. "width": 202.2,
  1350. "height": 50.4
  1351. },
  1352. "_anchorPoint": {
  1353. "__type__": "cc.Vec2",
  1354. "x": 0.5,
  1355. "y": 0.5
  1356. },
  1357. "_trs": {
  1358. "__type__": "TypedArray",
  1359. "ctor": "Float64Array",
  1360. "array": [
  1361. 0,
  1362. -458.68,
  1363. 0,
  1364. 0,
  1365. 0,
  1366. 0,
  1367. 1,
  1368. 1,
  1369. 1,
  1370. 1
  1371. ]
  1372. },
  1373. "_eulerAngles": {
  1374. "__type__": "cc.Vec3",
  1375. "x": 0,
  1376. "y": 0,
  1377. "z": 0
  1378. },
  1379. "_skewX": 0,
  1380. "_skewY": 0,
  1381. "_is3DNode": false,
  1382. "_groupIndex": 0,
  1383. "groupIndex": 0,
  1384. "_id": ""
  1385. },
  1386. {
  1387. "__type__": "cc.Label",
  1388. "_name": "",
  1389. "_objFlags": 0,
  1390. "node": {
  1391. "__id__": 36
  1392. },
  1393. "_enabled": true,
  1394. "_materials": [
  1395. {
  1396. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1397. }
  1398. ],
  1399. "_srcBlendFactor": 770,
  1400. "_dstBlendFactor": 771,
  1401. "_string": "click to close",
  1402. "_N$string": "click to close",
  1403. "_fontSize": 36,
  1404. "_lineHeight": 40,
  1405. "_enableWrapText": true,
  1406. "_N$file": {
  1407. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1408. },
  1409. "_isSystemFontUsed": false,
  1410. "_spacingX": 0,
  1411. "_batchAsBitmap": false,
  1412. "_styleFlags": 0,
  1413. "_underlineHeight": 0,
  1414. "_N$horizontalAlign": 1,
  1415. "_N$verticalAlign": 1,
  1416. "_N$fontFamily": "Arial",
  1417. "_N$overflow": 0,
  1418. "_N$cacheMode": 0,
  1419. "_id": ""
  1420. },
  1421. {
  1422. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  1423. "_name": "",
  1424. "_objFlags": 0,
  1425. "node": {
  1426. "__id__": 36
  1427. },
  1428. "_enabled": true,
  1429. "_englishCase": 0,
  1430. "i18n_string": "t39",
  1431. "i18n_params": [],
  1432. "_addColon": false,
  1433. "_id": ""
  1434. },
  1435. {
  1436. "__type__": "cc.PrefabInfo",
  1437. "root": {
  1438. "__id__": 1
  1439. },
  1440. "asset": {
  1441. "__id__": 0
  1442. },
  1443. "fileId": "85ejO498hIwouTu1mCqBgi",
  1444. "sync": false
  1445. },
  1446. {
  1447. "__type__": "cc.Node",
  1448. "_name": "bottom1",
  1449. "_objFlags": 0,
  1450. "_parent": {
  1451. "__id__": 1
  1452. },
  1453. "_children": [],
  1454. "_active": true,
  1455. "_components": [
  1456. {
  1457. "__id__": 41
  1458. }
  1459. ],
  1460. "_prefab": {
  1461. "__id__": 42
  1462. },
  1463. "_opacity": 255,
  1464. "_color": {
  1465. "__type__": "cc.Color",
  1466. "r": 255,
  1467. "g": 255,
  1468. "b": 255,
  1469. "a": 255
  1470. },
  1471. "_contentSize": {
  1472. "__type__": "cc.Size",
  1473. "width": 860,
  1474. "height": 500
  1475. },
  1476. "_anchorPoint": {
  1477. "__type__": "cc.Vec2",
  1478. "x": 0.5,
  1479. "y": 0.5
  1480. },
  1481. "_trs": {
  1482. "__type__": "TypedArray",
  1483. "ctor": "Float64Array",
  1484. "array": [
  1485. 0,
  1486. 10,
  1487. 0,
  1488. 0,
  1489. 0,
  1490. 0,
  1491. 1,
  1492. 1,
  1493. 1,
  1494. 1
  1495. ]
  1496. },
  1497. "_eulerAngles": {
  1498. "__type__": "cc.Vec3",
  1499. "x": 0,
  1500. "y": 0,
  1501. "z": 0
  1502. },
  1503. "_skewX": 0,
  1504. "_skewY": 0,
  1505. "_is3DNode": false,
  1506. "_groupIndex": 0,
  1507. "groupIndex": 0,
  1508. "_id": ""
  1509. },
  1510. {
  1511. "__type__": "cc.Sprite",
  1512. "_name": "",
  1513. "_objFlags": 0,
  1514. "node": {
  1515. "__id__": 40
  1516. },
  1517. "_enabled": true,
  1518. "_materials": [
  1519. {
  1520. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1521. }
  1522. ],
  1523. "_srcBlendFactor": 770,
  1524. "_dstBlendFactor": 771,
  1525. "_spriteFrame": {
  1526. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  1527. },
  1528. "_type": 1,
  1529. "_sizeMode": 0,
  1530. "_fillType": 0,
  1531. "_fillCenter": {
  1532. "__type__": "cc.Vec2",
  1533. "x": 0,
  1534. "y": 0
  1535. },
  1536. "_fillStart": 0,
  1537. "_fillRange": 0,
  1538. "_isTrimmedMode": true,
  1539. "_atlas": null,
  1540. "_id": ""
  1541. },
  1542. {
  1543. "__type__": "cc.PrefabInfo",
  1544. "root": {
  1545. "__id__": 1
  1546. },
  1547. "asset": {
  1548. "__id__": 0
  1549. },
  1550. "fileId": "b5vnG81YpC8Y++mFcqQSed",
  1551. "sync": false
  1552. },
  1553. {
  1554. "__type__": "cc.Node",
  1555. "_name": "dataList",
  1556. "_objFlags": 0,
  1557. "_parent": {
  1558. "__id__": 1
  1559. },
  1560. "_children": [
  1561. {
  1562. "__id__": 44
  1563. }
  1564. ],
  1565. "_active": true,
  1566. "_components": [
  1567. {
  1568. "__id__": 60
  1569. },
  1570. {
  1571. "__id__": 61
  1572. }
  1573. ],
  1574. "_prefab": {
  1575. "__id__": 65
  1576. },
  1577. "_opacity": 255,
  1578. "_color": {
  1579. "__type__": "cc.Color",
  1580. "r": 255,
  1581. "g": 255,
  1582. "b": 255,
  1583. "a": 255
  1584. },
  1585. "_contentSize": {
  1586. "__type__": "cc.Size",
  1587. "width": 860,
  1588. "height": 480
  1589. },
  1590. "_anchorPoint": {
  1591. "__type__": "cc.Vec2",
  1592. "x": 0.5,
  1593. "y": 0.5
  1594. },
  1595. "_trs": {
  1596. "__type__": "TypedArray",
  1597. "ctor": "Float64Array",
  1598. "array": [
  1599. 0,
  1600. 10,
  1601. 0,
  1602. 0,
  1603. 0,
  1604. 0,
  1605. 1,
  1606. 1,
  1607. 1,
  1608. 1
  1609. ]
  1610. },
  1611. "_eulerAngles": {
  1612. "__type__": "cc.Vec3",
  1613. "x": 0,
  1614. "y": 0,
  1615. "z": 0
  1616. },
  1617. "_skewX": 0,
  1618. "_skewY": 0,
  1619. "_is3DNode": false,
  1620. "_groupIndex": 0,
  1621. "groupIndex": 0,
  1622. "_id": ""
  1623. },
  1624. {
  1625. "__type__": "cc.Node",
  1626. "_name": "view",
  1627. "_objFlags": 0,
  1628. "_parent": {
  1629. "__id__": 43
  1630. },
  1631. "_children": [
  1632. {
  1633. "__id__": 45
  1634. }
  1635. ],
  1636. "_active": true,
  1637. "_components": [
  1638. {
  1639. "__id__": 58
  1640. }
  1641. ],
  1642. "_prefab": {
  1643. "__id__": 59
  1644. },
  1645. "_opacity": 255,
  1646. "_color": {
  1647. "__type__": "cc.Color",
  1648. "r": 255,
  1649. "g": 255,
  1650. "b": 255,
  1651. "a": 255
  1652. },
  1653. "_contentSize": {
  1654. "__type__": "cc.Size",
  1655. "width": 860,
  1656. "height": 480
  1657. },
  1658. "_anchorPoint": {
  1659. "__type__": "cc.Vec2",
  1660. "x": 0.5,
  1661. "y": 1
  1662. },
  1663. "_trs": {
  1664. "__type__": "TypedArray",
  1665. "ctor": "Float64Array",
  1666. "array": [
  1667. 0,
  1668. 240,
  1669. 0,
  1670. 0,
  1671. 0,
  1672. 0,
  1673. 1,
  1674. 1,
  1675. 1,
  1676. 1
  1677. ]
  1678. },
  1679. "_eulerAngles": {
  1680. "__type__": "cc.Vec3",
  1681. "x": 0,
  1682. "y": 0,
  1683. "z": 0
  1684. },
  1685. "_skewX": 0,
  1686. "_skewY": 0,
  1687. "_is3DNode": false,
  1688. "_groupIndex": 0,
  1689. "groupIndex": 0,
  1690. "_id": ""
  1691. },
  1692. {
  1693. "__type__": "cc.Node",
  1694. "_name": "content",
  1695. "_objFlags": 0,
  1696. "_parent": {
  1697. "__id__": 44
  1698. },
  1699. "_children": [
  1700. {
  1701. "__id__": 46
  1702. }
  1703. ],
  1704. "_active": true,
  1705. "_components": [
  1706. {
  1707. "__id__": 56
  1708. }
  1709. ],
  1710. "_prefab": {
  1711. "__id__": 57
  1712. },
  1713. "_opacity": 255,
  1714. "_color": {
  1715. "__type__": "cc.Color",
  1716. "r": 255,
  1717. "g": 255,
  1718. "b": 255,
  1719. "a": 255
  1720. },
  1721. "_contentSize": {
  1722. "__type__": "cc.Size",
  1723. "width": 860,
  1724. "height": 480
  1725. },
  1726. "_anchorPoint": {
  1727. "__type__": "cc.Vec2",
  1728. "x": 0.5,
  1729. "y": 1
  1730. },
  1731. "_trs": {
  1732. "__type__": "TypedArray",
  1733. "ctor": "Float64Array",
  1734. "array": [
  1735. 0,
  1736. 0,
  1737. 0,
  1738. 0,
  1739. 0,
  1740. 0,
  1741. 1,
  1742. 1,
  1743. 1,
  1744. 1
  1745. ]
  1746. },
  1747. "_eulerAngles": {
  1748. "__type__": "cc.Vec3",
  1749. "x": 0,
  1750. "y": 0,
  1751. "z": 0
  1752. },
  1753. "_skewX": 0,
  1754. "_skewY": 0,
  1755. "_is3DNode": false,
  1756. "_groupIndex": 0,
  1757. "groupIndex": 0,
  1758. "_id": ""
  1759. },
  1760. {
  1761. "__type__": "cc.Node",
  1762. "_name": "item",
  1763. "_objFlags": 0,
  1764. "_parent": {
  1765. "__id__": 45
  1766. },
  1767. "_children": [
  1768. {
  1769. "__id__": 47
  1770. },
  1771. {
  1772. "__id__": 49
  1773. }
  1774. ],
  1775. "_active": true,
  1776. "_components": [
  1777. {
  1778. "__id__": 52
  1779. },
  1780. {
  1781. "__id__": 53
  1782. },
  1783. {
  1784. "__id__": 54
  1785. }
  1786. ],
  1787. "_prefab": {
  1788. "__id__": 55
  1789. },
  1790. "_opacity": 255,
  1791. "_color": {
  1792. "__type__": "cc.Color",
  1793. "r": 0,
  1794. "g": 0,
  1795. "b": 0,
  1796. "a": 255
  1797. },
  1798. "_contentSize": {
  1799. "__type__": "cc.Size",
  1800. "width": 150,
  1801. "height": 150
  1802. },
  1803. "_anchorPoint": {
  1804. "__type__": "cc.Vec2",
  1805. "x": 0.5,
  1806. "y": 0.5
  1807. },
  1808. "_trs": {
  1809. "__type__": "TypedArray",
  1810. "ctor": "Float64Array",
  1811. "array": [
  1812. -333,
  1813. -94,
  1814. 0,
  1815. 0,
  1816. 0,
  1817. 0,
  1818. 1,
  1819. 1,
  1820. 1,
  1821. 1
  1822. ]
  1823. },
  1824. "_eulerAngles": {
  1825. "__type__": "cc.Vec3",
  1826. "x": 0,
  1827. "y": 0,
  1828. "z": 0
  1829. },
  1830. "_skewX": 0,
  1831. "_skewY": 0,
  1832. "_is3DNode": false,
  1833. "_groupIndex": 0,
  1834. "groupIndex": 0,
  1835. "_id": ""
  1836. },
  1837. {
  1838. "__type__": "cc.Node",
  1839. "_name": "itemParent",
  1840. "_objFlags": 0,
  1841. "_parent": {
  1842. "__id__": 46
  1843. },
  1844. "_children": [],
  1845. "_active": true,
  1846. "_components": [],
  1847. "_prefab": {
  1848. "__id__": 48
  1849. },
  1850. "_opacity": 255,
  1851. "_color": {
  1852. "__type__": "cc.Color",
  1853. "r": 255,
  1854. "g": 255,
  1855. "b": 255,
  1856. "a": 255
  1857. },
  1858. "_contentSize": {
  1859. "__type__": "cc.Size",
  1860. "width": 166,
  1861. "height": 166
  1862. },
  1863. "_anchorPoint": {
  1864. "__type__": "cc.Vec2",
  1865. "x": 0.5,
  1866. "y": 0.5
  1867. },
  1868. "_trs": {
  1869. "__type__": "TypedArray",
  1870. "ctor": "Float64Array",
  1871. "array": [
  1872. 0,
  1873. 0,
  1874. 0,
  1875. 0,
  1876. 0,
  1877. 0,
  1878. 1,
  1879. 0.9,
  1880. 0.9,
  1881. 1
  1882. ]
  1883. },
  1884. "_eulerAngles": {
  1885. "__type__": "cc.Vec3",
  1886. "x": 0,
  1887. "y": 0,
  1888. "z": 0
  1889. },
  1890. "_skewX": 0,
  1891. "_skewY": 0,
  1892. "_is3DNode": false,
  1893. "_groupIndex": 0,
  1894. "groupIndex": 0,
  1895. "_id": ""
  1896. },
  1897. {
  1898. "__type__": "cc.PrefabInfo",
  1899. "root": {
  1900. "__id__": 47
  1901. },
  1902. "asset": {
  1903. "__uuid__": "340ee43b-3eff-4c7f-a186-2efac8f6fa66"
  1904. },
  1905. "fileId": "a49ovdkMBAr7Ggis0nXEGb",
  1906. "sync": false
  1907. },
  1908. {
  1909. "__type__": "cc.Node",
  1910. "_name": "light_effect_2",
  1911. "_objFlags": 0,
  1912. "_parent": {
  1913. "__id__": 46
  1914. },
  1915. "_children": [],
  1916. "_active": true,
  1917. "_components": [
  1918. {
  1919. "__id__": 50
  1920. }
  1921. ],
  1922. "_prefab": {
  1923. "__id__": 51
  1924. },
  1925. "_opacity": 255,
  1926. "_color": {
  1927. "__type__": "cc.Color",
  1928. "r": 255,
  1929. "g": 255,
  1930. "b": 255,
  1931. "a": 255
  1932. },
  1933. "_contentSize": {
  1934. "__type__": "cc.Size",
  1935. "width": 0,
  1936. "height": 0
  1937. },
  1938. "_anchorPoint": {
  1939. "__type__": "cc.Vec2",
  1940. "x": 0.5,
  1941. "y": 0.5
  1942. },
  1943. "_trs": {
  1944. "__type__": "TypedArray",
  1945. "ctor": "Float64Array",
  1946. "array": [
  1947. 0,
  1948. 0,
  1949. 0,
  1950. 0,
  1951. 0,
  1952. 0,
  1953. 1,
  1954. 1,
  1955. 1,
  1956. 1
  1957. ]
  1958. },
  1959. "_eulerAngles": {
  1960. "__type__": "cc.Vec3",
  1961. "x": 0,
  1962. "y": 0,
  1963. "z": 0
  1964. },
  1965. "_skewX": 0,
  1966. "_skewY": 0,
  1967. "_is3DNode": false,
  1968. "_groupIndex": 0,
  1969. "groupIndex": 0,
  1970. "_id": ""
  1971. },
  1972. {
  1973. "__type__": "cc.Sprite",
  1974. "_name": "",
  1975. "_objFlags": 0,
  1976. "node": {
  1977. "__id__": 49
  1978. },
  1979. "_enabled": true,
  1980. "_materials": [
  1981. {
  1982. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1983. }
  1984. ],
  1985. "_srcBlendFactor": 770,
  1986. "_dstBlendFactor": 771,
  1987. "_spriteFrame": {
  1988. "__uuid__": "f4c2af33-c112-4630-851f-3b034a1aca34"
  1989. },
  1990. "_type": 0,
  1991. "_sizeMode": 0,
  1992. "_fillType": 0,
  1993. "_fillCenter": {
  1994. "__type__": "cc.Vec2",
  1995. "x": 0,
  1996. "y": 0
  1997. },
  1998. "_fillStart": 0,
  1999. "_fillRange": 0,
  2000. "_isTrimmedMode": true,
  2001. "_atlas": null,
  2002. "_id": ""
  2003. },
  2004. {
  2005. "__type__": "cc.PrefabInfo",
  2006. "root": {
  2007. "__id__": 1
  2008. },
  2009. "asset": {
  2010. "__id__": 0
  2011. },
  2012. "fileId": "f5DoP80O1OpaP59s6hrwCH",
  2013. "sync": false
  2014. },
  2015. {
  2016. "__type__": "8bb20RZX+RMopL+jM3mntx4",
  2017. "_name": "",
  2018. "_objFlags": 0,
  2019. "node": {
  2020. "__id__": 46
  2021. },
  2022. "_enabled": true,
  2023. "icon": null,
  2024. "title": null,
  2025. "selectedMode": 1,
  2026. "selectedFlag": null,
  2027. "selectedSpriteFrame": null,
  2028. "adaptiveSize": false,
  2029. "_id": ""
  2030. },
  2031. {
  2032. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  2033. "_name": "",
  2034. "_objFlags": 0,
  2035. "node": {
  2036. "__id__": 46
  2037. },
  2038. "_enabled": true,
  2039. "openContinuous": true,
  2040. "continuousTime": 0.1,
  2041. "multiTouch": false,
  2042. "_id": ""
  2043. },
  2044. {
  2045. "__type__": "61994AafntNFIbmt1zoyLq+",
  2046. "_name": "",
  2047. "_objFlags": 0,
  2048. "node": {
  2049. "__id__": 46
  2050. },
  2051. "_enabled": true,
  2052. "_normalMaterial": null,
  2053. "_grayMaterial": null,
  2054. "duration": 0.1,
  2055. "zoomScale": 1.2,
  2056. "clickEvents": [],
  2057. "_N$interactable": true,
  2058. "_N$enableAutoGrayEffect": false,
  2059. "_N$transition": 0,
  2060. "transition": 0,
  2061. "_N$normalColor": {
  2062. "__type__": "cc.Color",
  2063. "r": 255,
  2064. "g": 255,
  2065. "b": 255,
  2066. "a": 255
  2067. },
  2068. "_N$pressedColor": {
  2069. "__type__": "cc.Color",
  2070. "r": 211,
  2071. "g": 211,
  2072. "b": 211,
  2073. "a": 255
  2074. },
  2075. "pressedColor": {
  2076. "__type__": "cc.Color",
  2077. "r": 211,
  2078. "g": 211,
  2079. "b": 211,
  2080. "a": 255
  2081. },
  2082. "_N$hoverColor": {
  2083. "__type__": "cc.Color",
  2084. "r": 255,
  2085. "g": 255,
  2086. "b": 255,
  2087. "a": 255
  2088. },
  2089. "hoverColor": {
  2090. "__type__": "cc.Color",
  2091. "r": 255,
  2092. "g": 255,
  2093. "b": 255,
  2094. "a": 255
  2095. },
  2096. "_N$disabledColor": {
  2097. "__type__": "cc.Color",
  2098. "r": 124,
  2099. "g": 124,
  2100. "b": 124,
  2101. "a": 255
  2102. },
  2103. "_N$normalSprite": null,
  2104. "_N$pressedSprite": null,
  2105. "pressedSprite": null,
  2106. "_N$hoverSprite": null,
  2107. "hoverSprite": null,
  2108. "_N$disabledSprite": null,
  2109. "_N$target": null,
  2110. "_id": ""
  2111. },
  2112. {
  2113. "__type__": "cc.PrefabInfo",
  2114. "root": {
  2115. "__id__": 1
  2116. },
  2117. "asset": {
  2118. "__id__": 0
  2119. },
  2120. "fileId": "71/zeI1XdJWpIOLKyoAleE",
  2121. "sync": false
  2122. },
  2123. {
  2124. "__type__": "cc.Layout",
  2125. "_name": "",
  2126. "_objFlags": 0,
  2127. "node": {
  2128. "__id__": 45
  2129. },
  2130. "_enabled": true,
  2131. "_layoutSize": {
  2132. "__type__": "cc.Size",
  2133. "width": 860,
  2134. "height": 480
  2135. },
  2136. "_resize": 0,
  2137. "_N$layoutType": 3,
  2138. "_N$cellSize": {
  2139. "__type__": "cc.Size",
  2140. "width": 40,
  2141. "height": 40
  2142. },
  2143. "_N$startAxis": 0,
  2144. "_N$paddingLeft": 22,
  2145. "_N$paddingRight": 0,
  2146. "_N$paddingTop": 19,
  2147. "_N$paddingBottom": 10,
  2148. "_N$spacingX": 17,
  2149. "_N$spacingY": 13,
  2150. "_N$verticalDirection": 1,
  2151. "_N$horizontalDirection": 0,
  2152. "_N$affectedByScale": false,
  2153. "_id": ""
  2154. },
  2155. {
  2156. "__type__": "cc.PrefabInfo",
  2157. "root": {
  2158. "__id__": 1
  2159. },
  2160. "asset": {
  2161. "__id__": 0
  2162. },
  2163. "fileId": "d9yZ+AiC5C9qB6jv3cqhyV",
  2164. "sync": false
  2165. },
  2166. {
  2167. "__type__": "cc.Mask",
  2168. "_name": "",
  2169. "_objFlags": 0,
  2170. "node": {
  2171. "__id__": 44
  2172. },
  2173. "_enabled": true,
  2174. "_materials": [
  2175. {
  2176. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2177. }
  2178. ],
  2179. "_spriteFrame": null,
  2180. "_type": 0,
  2181. "_segments": 64,
  2182. "_N$alphaThreshold": 0,
  2183. "_N$inverted": false,
  2184. "_id": ""
  2185. },
  2186. {
  2187. "__type__": "cc.PrefabInfo",
  2188. "root": {
  2189. "__id__": 1
  2190. },
  2191. "asset": {
  2192. "__id__": 0
  2193. },
  2194. "fileId": "d9AoQOhNhBUpL979eDdaxj",
  2195. "sync": false
  2196. },
  2197. {
  2198. "__type__": "cc.ScrollView",
  2199. "_name": "",
  2200. "_objFlags": 0,
  2201. "node": {
  2202. "__id__": 43
  2203. },
  2204. "_enabled": true,
  2205. "horizontal": false,
  2206. "vertical": true,
  2207. "inertia": true,
  2208. "brake": 0.75,
  2209. "elastic": false,
  2210. "bounceDuration": 0.23,
  2211. "scrollEvents": [],
  2212. "cancelInnerEvents": false,
  2213. "_N$content": {
  2214. "__id__": 45
  2215. },
  2216. "content": {
  2217. "__id__": 45
  2218. },
  2219. "_N$horizontalScrollBar": null,
  2220. "_N$verticalScrollBar": null,
  2221. "_id": ""
  2222. },
  2223. {
  2224. "__type__": "c8b0avBBlRLLLMX0ufI4l6A",
  2225. "_name": "",
  2226. "_objFlags": 0,
  2227. "node": {
  2228. "__id__": 43
  2229. },
  2230. "_enabled": true,
  2231. "templateType": 1,
  2232. "tmpNode": {
  2233. "__id__": 46
  2234. },
  2235. "tmpPrefab": null,
  2236. "_slideMode": 1,
  2237. "pageDistance": 0.3,
  2238. "pageChangeEvent": {
  2239. "__id__": 62
  2240. },
  2241. "_virtual": true,
  2242. "cyclic": false,
  2243. "lackCenter": false,
  2244. "lackSlide": false,
  2245. "_updateRate": 0,
  2246. "frameByFrameRenderNum": 0,
  2247. "renderEvent": {
  2248. "__id__": 63
  2249. },
  2250. "selectedMode": 0,
  2251. "repeatEventSingle": false,
  2252. "selectedEvent": {
  2253. "__id__": 64
  2254. },
  2255. "_id": ""
  2256. },
  2257. {
  2258. "__type__": "cc.ClickEvent",
  2259. "target": null,
  2260. "component": "",
  2261. "_componentId": "",
  2262. "handler": "",
  2263. "customEventData": ""
  2264. },
  2265. {
  2266. "__type__": "cc.ClickEvent",
  2267. "target": {
  2268. "__id__": 1
  2269. },
  2270. "component": "",
  2271. "_componentId": "20b3fUraNpBcKgASm8XuABw",
  2272. "handler": "initRoleItem",
  2273. "customEventData": ""
  2274. },
  2275. {
  2276. "__type__": "cc.ClickEvent",
  2277. "target": null,
  2278. "component": "",
  2279. "_componentId": "ba812zndKFOW5BaNDAFiV86",
  2280. "handler": "onRoleClick",
  2281. "customEventData": ""
  2282. },
  2283. {
  2284. "__type__": "cc.PrefabInfo",
  2285. "root": {
  2286. "__id__": 1
  2287. },
  2288. "asset": {
  2289. "__id__": 0
  2290. },
  2291. "fileId": "bdg3sY5B5FZbJNh8JtDTB6",
  2292. "sync": false
  2293. },
  2294. {
  2295. "__type__": "cc.Node",
  2296. "_name": "label",
  2297. "_objFlags": 0,
  2298. "_parent": {
  2299. "__id__": 1
  2300. },
  2301. "_children": [],
  2302. "_active": true,
  2303. "_components": [
  2304. {
  2305. "__id__": 67
  2306. },
  2307. {
  2308. "__id__": 68
  2309. },
  2310. {
  2311. "__id__": 69
  2312. }
  2313. ],
  2314. "_prefab": {
  2315. "__id__": 70
  2316. },
  2317. "_opacity": 255,
  2318. "_color": {
  2319. "__type__": "cc.Color",
  2320. "r": 255,
  2321. "g": 240,
  2322. "b": 0,
  2323. "a": 255
  2324. },
  2325. "_contentSize": {
  2326. "__type__": "cc.Size",
  2327. "width": 443.01,
  2328. "height": 73
  2329. },
  2330. "_anchorPoint": {
  2331. "__type__": "cc.Vec2",
  2332. "x": 0.5,
  2333. "y": 0.5
  2334. },
  2335. "_trs": {
  2336. "__type__": "TypedArray",
  2337. "ctor": "Float64Array",
  2338. "array": [
  2339. 0,
  2340. 381.639,
  2341. 0,
  2342. 0,
  2343. 0,
  2344. 0,
  2345. 1,
  2346. 1,
  2347. 1,
  2348. 1
  2349. ]
  2350. },
  2351. "_eulerAngles": {
  2352. "__type__": "cc.Vec3",
  2353. "x": 0,
  2354. "y": 0,
  2355. "z": 0
  2356. },
  2357. "_skewX": 0,
  2358. "_skewY": 0,
  2359. "_is3DNode": false,
  2360. "_groupIndex": 0,
  2361. "groupIndex": 0,
  2362. "_id": ""
  2363. },
  2364. {
  2365. "__type__": "cc.Label",
  2366. "_name": "",
  2367. "_objFlags": 0,
  2368. "node": {
  2369. "__id__": 66
  2370. },
  2371. "_enabled": true,
  2372. "_materials": [
  2373. {
  2374. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2375. }
  2376. ],
  2377. "_srcBlendFactor": 770,
  2378. "_dstBlendFactor": 771,
  2379. "_string": "synthesis successful",
  2380. "_N$string": "synthesis successful",
  2381. "_fontSize": 48,
  2382. "_lineHeight": 50,
  2383. "_enableWrapText": true,
  2384. "_N$file": {
  2385. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2386. },
  2387. "_isSystemFontUsed": false,
  2388. "_spacingX": 0,
  2389. "_batchAsBitmap": false,
  2390. "_styleFlags": 0,
  2391. "_underlineHeight": 0,
  2392. "_N$horizontalAlign": 1,
  2393. "_N$verticalAlign": 1,
  2394. "_N$fontFamily": "Arial",
  2395. "_N$overflow": 0,
  2396. "_N$cacheMode": 0,
  2397. "_id": ""
  2398. },
  2399. {
  2400. "__type__": "cc.LabelOutline",
  2401. "_name": "",
  2402. "_objFlags": 0,
  2403. "node": {
  2404. "__id__": 66
  2405. },
  2406. "_enabled": true,
  2407. "_color": {
  2408. "__type__": "cc.Color",
  2409. "r": 38,
  2410. "g": 17,
  2411. "b": 12,
  2412. "a": 255
  2413. },
  2414. "_width": 5,
  2415. "_id": ""
  2416. },
  2417. {
  2418. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  2419. "_name": "",
  2420. "_objFlags": 0,
  2421. "node": {
  2422. "__id__": 66
  2423. },
  2424. "_enabled": true,
  2425. "_englishCase": 0,
  2426. "i18n_string": "t55",
  2427. "i18n_params": [],
  2428. "_addColon": false,
  2429. "_id": ""
  2430. },
  2431. {
  2432. "__type__": "cc.PrefabInfo",
  2433. "root": {
  2434. "__id__": 66
  2435. },
  2436. "asset": {
  2437. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  2438. },
  2439. "fileId": "2dToHFlMlEsqGYpAgyrRQj",
  2440. "sync": false
  2441. },
  2442. {
  2443. "__type__": "cc.Node",
  2444. "_name": "quickShow",
  2445. "_objFlags": 0,
  2446. "_parent": {
  2447. "__id__": 1
  2448. },
  2449. "_children": [],
  2450. "_active": true,
  2451. "_components": [
  2452. {
  2453. "__id__": 72
  2454. },
  2455. {
  2456. "__id__": 73
  2457. },
  2458. {
  2459. "__id__": 75
  2460. }
  2461. ],
  2462. "_prefab": {
  2463. "__id__": 76
  2464. },
  2465. "_opacity": 255,
  2466. "_color": {
  2467. "__type__": "cc.Color",
  2468. "r": 255,
  2469. "g": 255,
  2470. "b": 255,
  2471. "a": 255
  2472. },
  2473. "_contentSize": {
  2474. "__type__": "cc.Size",
  2475. "width": 2400,
  2476. "height": 1080
  2477. },
  2478. "_anchorPoint": {
  2479. "__type__": "cc.Vec2",
  2480. "x": 0.5,
  2481. "y": 0.5
  2482. },
  2483. "_trs": {
  2484. "__type__": "TypedArray",
  2485. "ctor": "Float64Array",
  2486. "array": [
  2487. 0,
  2488. 0,
  2489. 0,
  2490. 0,
  2491. 0,
  2492. 0,
  2493. 1,
  2494. 1,
  2495. 1,
  2496. 1
  2497. ]
  2498. },
  2499. "_eulerAngles": {
  2500. "__type__": "cc.Vec3",
  2501. "x": 0,
  2502. "y": 0,
  2503. "z": 0
  2504. },
  2505. "_skewX": 0,
  2506. "_skewY": 0,
  2507. "_is3DNode": false,
  2508. "_groupIndex": 0,
  2509. "groupIndex": 0,
  2510. "_id": ""
  2511. },
  2512. {
  2513. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  2514. "_name": "",
  2515. "_objFlags": 0,
  2516. "node": {
  2517. "__id__": 71
  2518. },
  2519. "_enabled": true,
  2520. "openContinuous": true,
  2521. "continuousTime": 0.2,
  2522. "multiTouch": false,
  2523. "_id": ""
  2524. },
  2525. {
  2526. "__type__": "61994AafntNFIbmt1zoyLq+",
  2527. "_name": "",
  2528. "_objFlags": 0,
  2529. "node": {
  2530. "__id__": 71
  2531. },
  2532. "_enabled": true,
  2533. "_normalMaterial": null,
  2534. "_grayMaterial": null,
  2535. "duration": 0.1,
  2536. "zoomScale": 1.2,
  2537. "clickEvents": [
  2538. {
  2539. "__id__": 74
  2540. }
  2541. ],
  2542. "_N$interactable": true,
  2543. "_N$enableAutoGrayEffect": false,
  2544. "_N$transition": 0,
  2545. "transition": 0,
  2546. "_N$normalColor": {
  2547. "__type__": "cc.Color",
  2548. "r": 255,
  2549. "g": 255,
  2550. "b": 255,
  2551. "a": 255
  2552. },
  2553. "_N$pressedColor": {
  2554. "__type__": "cc.Color",
  2555. "r": 211,
  2556. "g": 211,
  2557. "b": 211,
  2558. "a": 255
  2559. },
  2560. "pressedColor": {
  2561. "__type__": "cc.Color",
  2562. "r": 211,
  2563. "g": 211,
  2564. "b": 211,
  2565. "a": 255
  2566. },
  2567. "_N$hoverColor": {
  2568. "__type__": "cc.Color",
  2569. "r": 255,
  2570. "g": 255,
  2571. "b": 255,
  2572. "a": 255
  2573. },
  2574. "hoverColor": {
  2575. "__type__": "cc.Color",
  2576. "r": 255,
  2577. "g": 255,
  2578. "b": 255,
  2579. "a": 255
  2580. },
  2581. "_N$disabledColor": {
  2582. "__type__": "cc.Color",
  2583. "r": 124,
  2584. "g": 124,
  2585. "b": 124,
  2586. "a": 255
  2587. },
  2588. "_N$normalSprite": null,
  2589. "_N$pressedSprite": null,
  2590. "pressedSprite": null,
  2591. "_N$hoverSprite": null,
  2592. "hoverSprite": null,
  2593. "_N$disabledSprite": null,
  2594. "_N$target": null,
  2595. "_id": ""
  2596. },
  2597. {
  2598. "__type__": "cc.ClickEvent",
  2599. "target": {
  2600. "__id__": 1
  2601. },
  2602. "component": "",
  2603. "_componentId": "20b3fUraNpBcKgASm8XuABw",
  2604. "handler": "quickShowItem",
  2605. "customEventData": ""
  2606. },
  2607. {
  2608. "__type__": "62f58zwdOVN/rFVGtus3pDj",
  2609. "_name": "",
  2610. "_objFlags": 0,
  2611. "node": {
  2612. "__id__": 71
  2613. },
  2614. "_enabled": true,
  2615. "widthFit": true,
  2616. "heightFit": true,
  2617. "_id": ""
  2618. },
  2619. {
  2620. "__type__": "cc.PrefabInfo",
  2621. "root": {
  2622. "__id__": 1
  2623. },
  2624. "asset": {
  2625. "__id__": 0
  2626. },
  2627. "fileId": "44XEQ4jhNHp7PbzIc6yWBy",
  2628. "sync": false
  2629. },
  2630. {
  2631. "__type__": "20b3fUraNpBcKgASm8XuABw",
  2632. "_name": "",
  2633. "_objFlags": 0,
  2634. "node": {
  2635. "__id__": 1
  2636. },
  2637. "_enabled": true,
  2638. "quickClose": true,
  2639. "cache": false,
  2640. "showType": 500,
  2641. "prevent": true,
  2642. "_id": ""
  2643. },
  2644. {
  2645. "__type__": "cc.PrefabInfo",
  2646. "root": {
  2647. "__id__": 1
  2648. },
  2649. "asset": {
  2650. "__id__": 0
  2651. },
  2652. "fileId": "",
  2653. "sync": false
  2654. }
  2655. ]