topBar.prefab 32 KB

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