Test.fire 33 KB

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