GameEndInfo.prefab 38 KB

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