CenterCtrl_Circle - 001.prefab 32 KB

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