CenterCtrl_Circle.prefab 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247
  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__": 49
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [
  29. {
  30. "__id__": 58
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 59
  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. 1.1,
  66. 1.1,
  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__": 14
  96. },
  97. {
  98. "__id__": 25
  99. },
  100. {
  101. "__id__": 36
  102. }
  103. ],
  104. "_active": true,
  105. "_components": [
  106. {
  107. "__id__": 47
  108. }
  109. ],
  110. "_prefab": {
  111. "__id__": 48
  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": 122,
  124. "height": 122
  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__": 13
  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": 27,
  255. "height": 104
  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. 1.7999999999999998,
  267. 42.5,
  268. 0,
  269. 0,
  270. 0,
  271. 0.7071067811865475,
  272. 0.7071067811865476,
  273. 1,
  274. 1,
  275. 1
  276. ]
  277. },
  278. "_eulerAngles": {
  279. "__type__": "cc.Vec3",
  280. "x": 0,
  281. "y": 0,
  282. "z": 90
  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__": "27643901-aea8-4c0c-8d6f-0ec7f4fa116a"
  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": null,
  321. "_id": ""
  322. },
  323. {
  324. "__type__": "cc.PrefabInfo",
  325. "root": {
  326. "__id__": 1
  327. },
  328. "asset": {
  329. "__id__": 0
  330. },
  331. "fileId": "cd//4sdmZNrJ4fsXKEKE9Y",
  332. "sync": false
  333. },
  334. {
  335. "__type__": "cc.Node",
  336. "_name": "ldong",
  337. "_objFlags": 0,
  338. "_parent": {
  339. "__id__": 3
  340. },
  341. "_children": [
  342. {
  343. "__id__": 8
  344. }
  345. ],
  346. "_active": true,
  347. "_components": [
  348. {
  349. "__id__": 11
  350. }
  351. ],
  352. "_prefab": {
  353. "__id__": 12
  354. },
  355. "_opacity": 255,
  356. "_color": {
  357. "__type__": "cc.Color",
  358. "r": 255,
  359. "g": 255,
  360. "b": 255,
  361. "a": 255
  362. },
  363. "_contentSize": {
  364. "__type__": "cc.Size",
  365. "width": 20,
  366. "height": 20
  367. },
  368. "_anchorPoint": {
  369. "__type__": "cc.Vec2",
  370. "x": 0.5,
  371. "y": 0.5
  372. },
  373. "_trs": {
  374. "__type__": "TypedArray",
  375. "ctor": "Float64Array",
  376. "array": [
  377. 1.8,
  378. 43,
  379. 0,
  380. 0,
  381. 0,
  382. 0.7071067811865475,
  383. 0.7071067811865476,
  384. 1,
  385. 1,
  386. 1
  387. ]
  388. },
  389. "_eulerAngles": {
  390. "__type__": "cc.Vec3",
  391. "x": 0,
  392. "y": 0,
  393. "z": 90
  394. },
  395. "_skewX": 0,
  396. "_skewY": 0,
  397. "_is3DNode": false,
  398. "_groupIndex": 0,
  399. "groupIndex": 0,
  400. "_id": ""
  401. },
  402. {
  403. "__type__": "cc.Node",
  404. "_name": "wpmj_sanjiao",
  405. "_objFlags": 0,
  406. "_parent": {
  407. "__id__": 7
  408. },
  409. "_children": [],
  410. "_active": true,
  411. "_components": [
  412. {
  413. "__id__": 9
  414. }
  415. ],
  416. "_prefab": {
  417. "__id__": 10
  418. },
  419. "_opacity": 255,
  420. "_color": {
  421. "__type__": "cc.Color",
  422. "r": 255,
  423. "g": 255,
  424. "b": 255,
  425. "a": 255
  426. },
  427. "_contentSize": {
  428. "__type__": "cc.Size",
  429. "width": 1664,
  430. "height": 750
  431. },
  432. "_anchorPoint": {
  433. "__type__": "cc.Vec2",
  434. "x": 0.5,
  435. "y": 0.5
  436. },
  437. "_trs": {
  438. "__type__": "TypedArray",
  439. "ctor": "Float64Array",
  440. "array": [
  441. -1,
  442. 0,
  443. 0,
  444. 0,
  445. 0,
  446. 0,
  447. 1,
  448. 1,
  449. 1,
  450. 1
  451. ]
  452. },
  453. "_eulerAngles": {
  454. "__type__": "cc.Vec3",
  455. "x": 0,
  456. "y": 0,
  457. "z": 0
  458. },
  459. "_skewX": 0,
  460. "_skewY": 0,
  461. "_is3DNode": false,
  462. "_groupIndex": 0,
  463. "groupIndex": 0,
  464. "_id": ""
  465. },
  466. {
  467. "__type__": "sp.Skeleton",
  468. "_name": "",
  469. "_objFlags": 0,
  470. "node": {
  471. "__id__": 8
  472. },
  473. "_enabled": true,
  474. "_materials": [
  475. {
  476. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  477. }
  478. ],
  479. "paused": false,
  480. "defaultSkin": "default",
  481. "defaultAnimation": "ani_dong",
  482. "_preCacheMode": 0,
  483. "_cacheMode": 0,
  484. "loop": true,
  485. "premultipliedAlpha": true,
  486. "timeScale": 1,
  487. "_accTime": 0,
  488. "_playCount": 0,
  489. "_frameCache": null,
  490. "_curFrame": null,
  491. "_skeletonCache": null,
  492. "_animationName": "ani_dong",
  493. "_animationQueue": [],
  494. "_headAniInfo": null,
  495. "_playTimes": 0,
  496. "_isAniComplete": true,
  497. "_N$skeletonData": {
  498. "__uuid__": "69ff6d23-172d-4bfa-817e-2eca8fbb930b"
  499. },
  500. "_N$_defaultCacheMode": 0,
  501. "_N$debugSlots": false,
  502. "_N$debugBones": false,
  503. "_N$debugMesh": false,
  504. "_N$useTint": false,
  505. "_N$enableBatch": false,
  506. "_id": ""
  507. },
  508. {
  509. "__type__": "cc.PrefabInfo",
  510. "root": {
  511. "__id__": 1
  512. },
  513. "asset": {
  514. "__id__": 0
  515. },
  516. "fileId": "d2NslwLg1JDaimBHsTaLyq",
  517. "sync": false
  518. },
  519. {
  520. "__type__": "cc.Sprite",
  521. "_name": "",
  522. "_objFlags": 0,
  523. "node": {
  524. "__id__": 7
  525. },
  526. "_enabled": true,
  527. "_materials": [
  528. {
  529. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  530. }
  531. ],
  532. "_srcBlendFactor": 770,
  533. "_dstBlendFactor": 771,
  534. "_spriteFrame": {
  535. "__uuid__": "1ea21c3e-ae74-4ecb-a576-5378b961e6a0"
  536. },
  537. "_type": 0,
  538. "_sizeMode": 1,
  539. "_fillType": 0,
  540. "_fillCenter": {
  541. "__type__": "cc.Vec2",
  542. "x": 0,
  543. "y": 0
  544. },
  545. "_fillStart": 0,
  546. "_fillRange": 0,
  547. "_isTrimmedMode": true,
  548. "_atlas": null,
  549. "_id": ""
  550. },
  551. {
  552. "__type__": "cc.PrefabInfo",
  553. "root": {
  554. "__id__": 1
  555. },
  556. "asset": {
  557. "__id__": 0
  558. },
  559. "fileId": "47vvZsll1GQZyJY5dKKDJs",
  560. "sync": false
  561. },
  562. {
  563. "__type__": "cc.PrefabInfo",
  564. "root": {
  565. "__id__": 1
  566. },
  567. "asset": {
  568. "__id__": 0
  569. },
  570. "fileId": "08XamvDJVKGoOxV5gXRXEw",
  571. "sync": false
  572. },
  573. {
  574. "__type__": "cc.Node",
  575. "_name": "1",
  576. "_objFlags": 0,
  577. "_parent": {
  578. "__id__": 2
  579. },
  580. "_children": [
  581. {
  582. "__id__": 15
  583. },
  584. {
  585. "__id__": 18
  586. }
  587. ],
  588. "_active": true,
  589. "_components": [],
  590. "_prefab": {
  591. "__id__": 24
  592. },
  593. "_opacity": 255,
  594. "_color": {
  595. "__type__": "cc.Color",
  596. "r": 255,
  597. "g": 255,
  598. "b": 255,
  599. "a": 255
  600. },
  601. "_contentSize": {
  602. "__type__": "cc.Size",
  603. "width": 0,
  604. "height": 0
  605. },
  606. "_anchorPoint": {
  607. "__type__": "cc.Vec2",
  608. "x": 0.5,
  609. "y": 0.5
  610. },
  611. "_trs": {
  612. "__type__": "TypedArray",
  613. "ctor": "Float64Array",
  614. "array": [
  615. -2,
  616. -1,
  617. 0,
  618. 0,
  619. 0,
  620. 0.7071067811865475,
  621. 0.7071067811865476,
  622. 1,
  623. 1,
  624. 1
  625. ]
  626. },
  627. "_eulerAngles": {
  628. "__type__": "cc.Vec3",
  629. "x": 0,
  630. "y": 0,
  631. "z": 90
  632. },
  633. "_skewX": 0,
  634. "_skewY": 0,
  635. "_is3DNode": false,
  636. "_groupIndex": 0,
  637. "groupIndex": 0,
  638. "_id": ""
  639. },
  640. {
  641. "__type__": "cc.Node",
  642. "_name": "dong",
  643. "_objFlags": 0,
  644. "_parent": {
  645. "__id__": 14
  646. },
  647. "_children": [],
  648. "_active": true,
  649. "_components": [
  650. {
  651. "__id__": 16
  652. }
  653. ],
  654. "_prefab": {
  655. "__id__": 17
  656. },
  657. "_opacity": 255,
  658. "_color": {
  659. "__type__": "cc.Color",
  660. "r": 255,
  661. "g": 255,
  662. "b": 255,
  663. "a": 255
  664. },
  665. "_contentSize": {
  666. "__type__": "cc.Size",
  667. "width": 104,
  668. "height": 27
  669. },
  670. "_anchorPoint": {
  671. "__type__": "cc.Vec2",
  672. "x": 0.5,
  673. "y": 0.5
  674. },
  675. "_trs": {
  676. "__type__": "TypedArray",
  677. "ctor": "Float64Array",
  678. "array": [
  679. 0.5,
  680. 39.9,
  681. 0,
  682. 0,
  683. 0,
  684. -1,
  685. 6.123233995736766e-17,
  686. 1,
  687. 1,
  688. 1
  689. ]
  690. },
  691. "_eulerAngles": {
  692. "__type__": "cc.Vec3",
  693. "x": 0,
  694. "y": 0,
  695. "z": -180
  696. },
  697. "_skewX": 0,
  698. "_skewY": 0,
  699. "_is3DNode": false,
  700. "_groupIndex": 0,
  701. "groupIndex": 0,
  702. "_id": ""
  703. },
  704. {
  705. "__type__": "cc.Sprite",
  706. "_name": "",
  707. "_objFlags": 0,
  708. "node": {
  709. "__id__": 15
  710. },
  711. "_enabled": true,
  712. "_materials": [
  713. {
  714. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  715. }
  716. ],
  717. "_srcBlendFactor": 770,
  718. "_dstBlendFactor": 771,
  719. "_spriteFrame": {
  720. "__uuid__": "a24b95c9-ec74-4983-bad2-5881273e47c9"
  721. },
  722. "_type": 0,
  723. "_sizeMode": 1,
  724. "_fillType": 0,
  725. "_fillCenter": {
  726. "__type__": "cc.Vec2",
  727. "x": 0,
  728. "y": 0
  729. },
  730. "_fillStart": 0,
  731. "_fillRange": 0,
  732. "_isTrimmedMode": true,
  733. "_atlas": null,
  734. "_id": ""
  735. },
  736. {
  737. "__type__": "cc.PrefabInfo",
  738. "root": {
  739. "__id__": 1
  740. },
  741. "asset": {
  742. "__id__": 0
  743. },
  744. "fileId": "0bS7a3dLpLL7N6rSk+1P62",
  745. "sync": false
  746. },
  747. {
  748. "__type__": "cc.Node",
  749. "_name": "ldong",
  750. "_objFlags": 0,
  751. "_parent": {
  752. "__id__": 14
  753. },
  754. "_children": [
  755. {
  756. "__id__": 19
  757. }
  758. ],
  759. "_active": true,
  760. "_components": [
  761. {
  762. "__id__": 22
  763. }
  764. ],
  765. "_prefab": {
  766. "__id__": 23
  767. },
  768. "_opacity": 255,
  769. "_color": {
  770. "__type__": "cc.Color",
  771. "r": 255,
  772. "g": 255,
  773. "b": 255,
  774. "a": 255
  775. },
  776. "_contentSize": {
  777. "__type__": "cc.Size",
  778. "width": 18,
  779. "height": 19
  780. },
  781. "_anchorPoint": {
  782. "__type__": "cc.Vec2",
  783. "x": 0.5,
  784. "y": 0.5
  785. },
  786. "_trs": {
  787. "__type__": "TypedArray",
  788. "ctor": "Float64Array",
  789. "array": [
  790. 1.5,
  791. 41,
  792. 0,
  793. 0,
  794. 0,
  795. 1,
  796. 6.123233995736766e-17,
  797. 1,
  798. 1,
  799. 1
  800. ]
  801. },
  802. "_eulerAngles": {
  803. "__type__": "cc.Vec3",
  804. "x": 0,
  805. "y": 0,
  806. "z": 180
  807. },
  808. "_skewX": 0,
  809. "_skewY": 0,
  810. "_is3DNode": false,
  811. "_groupIndex": 0,
  812. "groupIndex": 0,
  813. "_id": ""
  814. },
  815. {
  816. "__type__": "cc.Node",
  817. "_name": "wpmj_sanjiao",
  818. "_objFlags": 0,
  819. "_parent": {
  820. "__id__": 18
  821. },
  822. "_children": [],
  823. "_active": true,
  824. "_components": [
  825. {
  826. "__id__": 20
  827. }
  828. ],
  829. "_prefab": {
  830. "__id__": 21
  831. },
  832. "_opacity": 255,
  833. "_color": {
  834. "__type__": "cc.Color",
  835. "r": 255,
  836. "g": 255,
  837. "b": 255,
  838. "a": 255
  839. },
  840. "_contentSize": {
  841. "__type__": "cc.Size",
  842. "width": 1664,
  843. "height": 750
  844. },
  845. "_anchorPoint": {
  846. "__type__": "cc.Vec2",
  847. "x": 0.5,
  848. "y": 0.5
  849. },
  850. "_trs": {
  851. "__type__": "TypedArray",
  852. "ctor": "Float64Array",
  853. "array": [
  854. 1,
  855. 1.5,
  856. 0,
  857. 0,
  858. 0,
  859. 0,
  860. 1,
  861. 1,
  862. 1,
  863. 1
  864. ]
  865. },
  866. "_eulerAngles": {
  867. "__type__": "cc.Vec3",
  868. "x": 0,
  869. "y": 0,
  870. "z": 0
  871. },
  872. "_skewX": 0,
  873. "_skewY": 0,
  874. "_is3DNode": false,
  875. "_groupIndex": 0,
  876. "groupIndex": 0,
  877. "_id": ""
  878. },
  879. {
  880. "__type__": "sp.Skeleton",
  881. "_name": "",
  882. "_objFlags": 0,
  883. "node": {
  884. "__id__": 19
  885. },
  886. "_enabled": true,
  887. "_materials": [
  888. {
  889. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  890. }
  891. ],
  892. "paused": false,
  893. "defaultSkin": "default",
  894. "defaultAnimation": "ani_nan",
  895. "_preCacheMode": 0,
  896. "_cacheMode": 0,
  897. "loop": true,
  898. "premultipliedAlpha": true,
  899. "timeScale": 1,
  900. "_accTime": 0,
  901. "_playCount": 0,
  902. "_frameCache": null,
  903. "_curFrame": null,
  904. "_skeletonCache": null,
  905. "_animationName": "ani_nan",
  906. "_animationQueue": [],
  907. "_headAniInfo": null,
  908. "_playTimes": 0,
  909. "_isAniComplete": true,
  910. "_N$skeletonData": {
  911. "__uuid__": "69ff6d23-172d-4bfa-817e-2eca8fbb930b"
  912. },
  913. "_N$_defaultCacheMode": 0,
  914. "_N$debugSlots": false,
  915. "_N$debugBones": false,
  916. "_N$debugMesh": false,
  917. "_N$useTint": false,
  918. "_N$enableBatch": false,
  919. "_id": ""
  920. },
  921. {
  922. "__type__": "cc.PrefabInfo",
  923. "root": {
  924. "__id__": 1
  925. },
  926. "asset": {
  927. "__id__": 0
  928. },
  929. "fileId": "6d3j3/Z+NH5pExhsefw9ut",
  930. "sync": false
  931. },
  932. {
  933. "__type__": "cc.Sprite",
  934. "_name": "",
  935. "_objFlags": 0,
  936. "node": {
  937. "__id__": 18
  938. },
  939. "_enabled": true,
  940. "_materials": [
  941. {
  942. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  943. }
  944. ],
  945. "_srcBlendFactor": 770,
  946. "_dstBlendFactor": 771,
  947. "_spriteFrame": {
  948. "__uuid__": "e93aeb65-1b0f-485b-9504-9d1b62d1e7eb"
  949. },
  950. "_type": 0,
  951. "_sizeMode": 1,
  952. "_fillType": 0,
  953. "_fillCenter": {
  954. "__type__": "cc.Vec2",
  955. "x": 0,
  956. "y": 0
  957. },
  958. "_fillStart": 0,
  959. "_fillRange": 0,
  960. "_isTrimmedMode": true,
  961. "_atlas": null,
  962. "_id": ""
  963. },
  964. {
  965. "__type__": "cc.PrefabInfo",
  966. "root": {
  967. "__id__": 1
  968. },
  969. "asset": {
  970. "__id__": 0
  971. },
  972. "fileId": "e9wEkLqklNjJObuSr+kfhh",
  973. "sync": false
  974. },
  975. {
  976. "__type__": "cc.PrefabInfo",
  977. "root": {
  978. "__id__": 1
  979. },
  980. "asset": {
  981. "__id__": 0
  982. },
  983. "fileId": "14/UAFZXJDOptCQGXQPNIl",
  984. "sync": false
  985. },
  986. {
  987. "__type__": "cc.Node",
  988. "_name": "2",
  989. "_objFlags": 0,
  990. "_parent": {
  991. "__id__": 2
  992. },
  993. "_children": [
  994. {
  995. "__id__": 26
  996. },
  997. {
  998. "__id__": 29
  999. }
  1000. ],
  1001. "_active": true,
  1002. "_components": [],
  1003. "_prefab": {
  1004. "__id__": 35
  1005. },
  1006. "_opacity": 255,
  1007. "_color": {
  1008. "__type__": "cc.Color",
  1009. "r": 255,
  1010. "g": 255,
  1011. "b": 255,
  1012. "a": 255
  1013. },
  1014. "_contentSize": {
  1015. "__type__": "cc.Size",
  1016. "width": 0,
  1017. "height": 0
  1018. },
  1019. "_anchorPoint": {
  1020. "__type__": "cc.Vec2",
  1021. "x": 0.5,
  1022. "y": 0.5
  1023. },
  1024. "_trs": {
  1025. "__type__": "TypedArray",
  1026. "ctor": "Float64Array",
  1027. "array": [
  1028. -2,
  1029. -1,
  1030. 0,
  1031. 0,
  1032. 0,
  1033. 1,
  1034. 6.123233995736766e-17,
  1035. 1,
  1036. 1,
  1037. 1
  1038. ]
  1039. },
  1040. "_eulerAngles": {
  1041. "__type__": "cc.Vec3",
  1042. "x": 0,
  1043. "y": 0,
  1044. "z": 180
  1045. },
  1046. "_skewX": 0,
  1047. "_skewY": 0,
  1048. "_is3DNode": false,
  1049. "_groupIndex": 0,
  1050. "groupIndex": 0,
  1051. "_id": ""
  1052. },
  1053. {
  1054. "__type__": "cc.Node",
  1055. "_name": "dong",
  1056. "_objFlags": 0,
  1057. "_parent": {
  1058. "__id__": 25
  1059. },
  1060. "_children": [],
  1061. "_active": true,
  1062. "_components": [
  1063. {
  1064. "__id__": 27
  1065. }
  1066. ],
  1067. "_prefab": {
  1068. "__id__": 28
  1069. },
  1070. "_opacity": 255,
  1071. "_color": {
  1072. "__type__": "cc.Color",
  1073. "r": 255,
  1074. "g": 255,
  1075. "b": 255,
  1076. "a": 255
  1077. },
  1078. "_contentSize": {
  1079. "__type__": "cc.Size",
  1080. "width": 27,
  1081. "height": 104
  1082. },
  1083. "_anchorPoint": {
  1084. "__type__": "cc.Vec2",
  1085. "x": 0.5,
  1086. "y": 0.5
  1087. },
  1088. "_trs": {
  1089. "__type__": "TypedArray",
  1090. "ctor": "Float64Array",
  1091. "array": [
  1092. -1.834,
  1093. 41.046,
  1094. 0,
  1095. 0,
  1096. 0,
  1097. -0.7071067811865475,
  1098. 0.7071067811865476,
  1099. 1,
  1100. 1,
  1101. 1
  1102. ]
  1103. },
  1104. "_eulerAngles": {
  1105. "__type__": "cc.Vec3",
  1106. "x": 0,
  1107. "y": 0,
  1108. "z": -90
  1109. },
  1110. "_skewX": 0,
  1111. "_skewY": 0,
  1112. "_is3DNode": false,
  1113. "_groupIndex": 0,
  1114. "groupIndex": 0,
  1115. "_id": ""
  1116. },
  1117. {
  1118. "__type__": "cc.Sprite",
  1119. "_name": "",
  1120. "_objFlags": 0,
  1121. "node": {
  1122. "__id__": 26
  1123. },
  1124. "_enabled": true,
  1125. "_materials": [
  1126. {
  1127. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1128. }
  1129. ],
  1130. "_srcBlendFactor": 770,
  1131. "_dstBlendFactor": 771,
  1132. "_spriteFrame": {
  1133. "__uuid__": "3474ae0a-38f8-4936-871c-1c4f9321e75f"
  1134. },
  1135. "_type": 0,
  1136. "_sizeMode": 1,
  1137. "_fillType": 0,
  1138. "_fillCenter": {
  1139. "__type__": "cc.Vec2",
  1140. "x": 0,
  1141. "y": 0
  1142. },
  1143. "_fillStart": 0,
  1144. "_fillRange": 0,
  1145. "_isTrimmedMode": true,
  1146. "_atlas": null,
  1147. "_id": ""
  1148. },
  1149. {
  1150. "__type__": "cc.PrefabInfo",
  1151. "root": {
  1152. "__id__": 1
  1153. },
  1154. "asset": {
  1155. "__id__": 0
  1156. },
  1157. "fileId": "61JfsQbhBKJrQ2wKp7jucI",
  1158. "sync": false
  1159. },
  1160. {
  1161. "__type__": "cc.Node",
  1162. "_name": "ldong",
  1163. "_objFlags": 0,
  1164. "_parent": {
  1165. "__id__": 25
  1166. },
  1167. "_children": [
  1168. {
  1169. "__id__": 30
  1170. }
  1171. ],
  1172. "_active": true,
  1173. "_components": [
  1174. {
  1175. "__id__": 33
  1176. }
  1177. ],
  1178. "_prefab": {
  1179. "__id__": 34
  1180. },
  1181. "_opacity": 255,
  1182. "_color": {
  1183. "__type__": "cc.Color",
  1184. "r": 255,
  1185. "g": 255,
  1186. "b": 255,
  1187. "a": 255
  1188. },
  1189. "_contentSize": {
  1190. "__type__": "cc.Size",
  1191. "width": 19,
  1192. "height": 19
  1193. },
  1194. "_anchorPoint": {
  1195. "__type__": "cc.Vec2",
  1196. "x": 0.5,
  1197. "y": 0.5
  1198. },
  1199. "_trs": {
  1200. "__type__": "TypedArray",
  1201. "ctor": "Float64Array",
  1202. "array": [
  1203. -2.3,
  1204. 41,
  1205. 0,
  1206. 0,
  1207. 0,
  1208. -0.7071067811865475,
  1209. 0.7071067811865476,
  1210. 1,
  1211. 1,
  1212. 1
  1213. ]
  1214. },
  1215. "_eulerAngles": {
  1216. "__type__": "cc.Vec3",
  1217. "x": 0,
  1218. "y": 0,
  1219. "z": -90
  1220. },
  1221. "_skewX": 0,
  1222. "_skewY": 0,
  1223. "_is3DNode": false,
  1224. "_groupIndex": 0,
  1225. "groupIndex": 0,
  1226. "_id": ""
  1227. },
  1228. {
  1229. "__type__": "cc.Node",
  1230. "_name": "wpmj_sanjiao",
  1231. "_objFlags": 0,
  1232. "_parent": {
  1233. "__id__": 29
  1234. },
  1235. "_children": [],
  1236. "_active": true,
  1237. "_components": [
  1238. {
  1239. "__id__": 31
  1240. }
  1241. ],
  1242. "_prefab": {
  1243. "__id__": 32
  1244. },
  1245. "_opacity": 255,
  1246. "_color": {
  1247. "__type__": "cc.Color",
  1248. "r": 255,
  1249. "g": 255,
  1250. "b": 255,
  1251. "a": 255
  1252. },
  1253. "_contentSize": {
  1254. "__type__": "cc.Size",
  1255. "width": 1664,
  1256. "height": 750
  1257. },
  1258. "_anchorPoint": {
  1259. "__type__": "cc.Vec2",
  1260. "x": 0.5,
  1261. "y": 0.5
  1262. },
  1263. "_trs": {
  1264. "__type__": "TypedArray",
  1265. "ctor": "Float64Array",
  1266. "array": [
  1267. 0.5,
  1268. 0.25,
  1269. 0,
  1270. 0,
  1271. 0,
  1272. 0,
  1273. 1,
  1274. 1,
  1275. 1,
  1276. 1
  1277. ]
  1278. },
  1279. "_eulerAngles": {
  1280. "__type__": "cc.Vec3",
  1281. "x": 0,
  1282. "y": 0,
  1283. "z": 0
  1284. },
  1285. "_skewX": 0,
  1286. "_skewY": 0,
  1287. "_is3DNode": false,
  1288. "_groupIndex": 0,
  1289. "groupIndex": 0,
  1290. "_id": ""
  1291. },
  1292. {
  1293. "__type__": "sp.Skeleton",
  1294. "_name": "",
  1295. "_objFlags": 0,
  1296. "node": {
  1297. "__id__": 30
  1298. },
  1299. "_enabled": true,
  1300. "_materials": [
  1301. {
  1302. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  1303. }
  1304. ],
  1305. "paused": false,
  1306. "defaultSkin": "default",
  1307. "defaultAnimation": "ani_xi",
  1308. "_preCacheMode": 0,
  1309. "_cacheMode": 0,
  1310. "loop": true,
  1311. "premultipliedAlpha": true,
  1312. "timeScale": 1,
  1313. "_accTime": 0,
  1314. "_playCount": 0,
  1315. "_frameCache": null,
  1316. "_curFrame": null,
  1317. "_skeletonCache": null,
  1318. "_animationName": "ani_xi",
  1319. "_animationQueue": [],
  1320. "_headAniInfo": null,
  1321. "_playTimes": 0,
  1322. "_isAniComplete": true,
  1323. "_N$skeletonData": {
  1324. "__uuid__": "69ff6d23-172d-4bfa-817e-2eca8fbb930b"
  1325. },
  1326. "_N$_defaultCacheMode": 0,
  1327. "_N$debugSlots": false,
  1328. "_N$debugBones": false,
  1329. "_N$debugMesh": false,
  1330. "_N$useTint": false,
  1331. "_N$enableBatch": false,
  1332. "_id": ""
  1333. },
  1334. {
  1335. "__type__": "cc.PrefabInfo",
  1336. "root": {
  1337. "__id__": 1
  1338. },
  1339. "asset": {
  1340. "__id__": 0
  1341. },
  1342. "fileId": "5fPYi1mIJIgLQ+KEDt6Hni",
  1343. "sync": false
  1344. },
  1345. {
  1346. "__type__": "cc.Sprite",
  1347. "_name": "",
  1348. "_objFlags": 0,
  1349. "node": {
  1350. "__id__": 29
  1351. },
  1352. "_enabled": true,
  1353. "_materials": [
  1354. {
  1355. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1356. }
  1357. ],
  1358. "_srcBlendFactor": 770,
  1359. "_dstBlendFactor": 771,
  1360. "_spriteFrame": {
  1361. "__uuid__": "d5ac9fed-6631-4b99-a8a6-ffab42ef64cb"
  1362. },
  1363. "_type": 0,
  1364. "_sizeMode": 1,
  1365. "_fillType": 0,
  1366. "_fillCenter": {
  1367. "__type__": "cc.Vec2",
  1368. "x": 0,
  1369. "y": 0
  1370. },
  1371. "_fillStart": 0,
  1372. "_fillRange": 0,
  1373. "_isTrimmedMode": true,
  1374. "_atlas": null,
  1375. "_id": ""
  1376. },
  1377. {
  1378. "__type__": "cc.PrefabInfo",
  1379. "root": {
  1380. "__id__": 1
  1381. },
  1382. "asset": {
  1383. "__id__": 0
  1384. },
  1385. "fileId": "9c8BMo57xFV62IltD1x4s9",
  1386. "sync": false
  1387. },
  1388. {
  1389. "__type__": "cc.PrefabInfo",
  1390. "root": {
  1391. "__id__": 1
  1392. },
  1393. "asset": {
  1394. "__id__": 0
  1395. },
  1396. "fileId": "65AqyV45ZFcpELEGerOcfY",
  1397. "sync": false
  1398. },
  1399. {
  1400. "__type__": "cc.Node",
  1401. "_name": "3",
  1402. "_objFlags": 0,
  1403. "_parent": {
  1404. "__id__": 2
  1405. },
  1406. "_children": [
  1407. {
  1408. "__id__": 37
  1409. },
  1410. {
  1411. "__id__": 40
  1412. }
  1413. ],
  1414. "_active": true,
  1415. "_components": [],
  1416. "_prefab": {
  1417. "__id__": 46
  1418. },
  1419. "_opacity": 255,
  1420. "_color": {
  1421. "__type__": "cc.Color",
  1422. "r": 255,
  1423. "g": 255,
  1424. "b": 255,
  1425. "a": 255
  1426. },
  1427. "_contentSize": {
  1428. "__type__": "cc.Size",
  1429. "width": 0,
  1430. "height": 0
  1431. },
  1432. "_anchorPoint": {
  1433. "__type__": "cc.Vec2",
  1434. "x": 0.5,
  1435. "y": 0.5
  1436. },
  1437. "_trs": {
  1438. "__type__": "TypedArray",
  1439. "ctor": "Float64Array",
  1440. "array": [
  1441. -2,
  1442. -1,
  1443. 0,
  1444. 0,
  1445. 0,
  1446. 0.7071067811865476,
  1447. -0.7071067811865475,
  1448. 1,
  1449. 1,
  1450. 1
  1451. ]
  1452. },
  1453. "_eulerAngles": {
  1454. "__type__": "cc.Vec3",
  1455. "x": 0,
  1456. "y": 0,
  1457. "z": 270
  1458. },
  1459. "_skewX": 0,
  1460. "_skewY": 0,
  1461. "_is3DNode": false,
  1462. "_groupIndex": 0,
  1463. "groupIndex": 0,
  1464. "_id": ""
  1465. },
  1466. {
  1467. "__type__": "cc.Node",
  1468. "_name": "dong",
  1469. "_objFlags": 0,
  1470. "_parent": {
  1471. "__id__": 36
  1472. },
  1473. "_children": [],
  1474. "_active": true,
  1475. "_components": [
  1476. {
  1477. "__id__": 38
  1478. }
  1479. ],
  1480. "_prefab": {
  1481. "__id__": 39
  1482. },
  1483. "_opacity": 255,
  1484. "_color": {
  1485. "__type__": "cc.Color",
  1486. "r": 255,
  1487. "g": 255,
  1488. "b": 255,
  1489. "a": 255
  1490. },
  1491. "_contentSize": {
  1492. "__type__": "cc.Size",
  1493. "width": 104,
  1494. "height": 27
  1495. },
  1496. "_anchorPoint": {
  1497. "__type__": "cc.Vec2",
  1498. "x": 0.5,
  1499. "y": 0.5
  1500. },
  1501. "_trs": {
  1502. "__type__": "TypedArray",
  1503. "ctor": "Float64Array",
  1504. "array": [
  1505. -0.958,
  1506. 43.6,
  1507. 0,
  1508. 0,
  1509. 0,
  1510. 0,
  1511. 1,
  1512. 1,
  1513. 1,
  1514. 1
  1515. ]
  1516. },
  1517. "_eulerAngles": {
  1518. "__type__": "cc.Vec3",
  1519. "x": 0,
  1520. "y": 0,
  1521. "z": 0
  1522. },
  1523. "_skewX": 0,
  1524. "_skewY": 0,
  1525. "_is3DNode": false,
  1526. "_groupIndex": 0,
  1527. "groupIndex": 0,
  1528. "_id": ""
  1529. },
  1530. {
  1531. "__type__": "cc.Sprite",
  1532. "_name": "",
  1533. "_objFlags": 0,
  1534. "node": {
  1535. "__id__": 37
  1536. },
  1537. "_enabled": true,
  1538. "_materials": [
  1539. {
  1540. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1541. }
  1542. ],
  1543. "_srcBlendFactor": 770,
  1544. "_dstBlendFactor": 771,
  1545. "_spriteFrame": {
  1546. "__uuid__": "b4a9da0f-0c82-4de2-893d-1ddd678f2444"
  1547. },
  1548. "_type": 0,
  1549. "_sizeMode": 1,
  1550. "_fillType": 0,
  1551. "_fillCenter": {
  1552. "__type__": "cc.Vec2",
  1553. "x": 0,
  1554. "y": 0
  1555. },
  1556. "_fillStart": 0,
  1557. "_fillRange": 0,
  1558. "_isTrimmedMode": true,
  1559. "_atlas": null,
  1560. "_id": ""
  1561. },
  1562. {
  1563. "__type__": "cc.PrefabInfo",
  1564. "root": {
  1565. "__id__": 1
  1566. },
  1567. "asset": {
  1568. "__id__": 0
  1569. },
  1570. "fileId": "79egkmE9FEYorBR95U8cc5",
  1571. "sync": false
  1572. },
  1573. {
  1574. "__type__": "cc.Node",
  1575. "_name": "ldong",
  1576. "_objFlags": 0,
  1577. "_parent": {
  1578. "__id__": 36
  1579. },
  1580. "_children": [
  1581. {
  1582. "__id__": 41
  1583. }
  1584. ],
  1585. "_active": true,
  1586. "_components": [
  1587. {
  1588. "__id__": 44
  1589. }
  1590. ],
  1591. "_prefab": {
  1592. "__id__": 45
  1593. },
  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": 20,
  1605. "height": 20
  1606. },
  1607. "_anchorPoint": {
  1608. "__type__": "cc.Vec2",
  1609. "x": 0.5,
  1610. "y": 0.5
  1611. },
  1612. "_trs": {
  1613. "__type__": "TypedArray",
  1614. "ctor": "Float64Array",
  1615. "array": [
  1616. -1,
  1617. 44,
  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": ""
  1640. },
  1641. {
  1642. "__type__": "cc.Node",
  1643. "_name": "wpmj_sanjiao",
  1644. "_objFlags": 0,
  1645. "_parent": {
  1646. "__id__": 40
  1647. },
  1648. "_children": [],
  1649. "_active": true,
  1650. "_components": [
  1651. {
  1652. "__id__": 42
  1653. }
  1654. ],
  1655. "_prefab": {
  1656. "__id__": 43
  1657. },
  1658. "_opacity": 255,
  1659. "_color": {
  1660. "__type__": "cc.Color",
  1661. "r": 255,
  1662. "g": 255,
  1663. "b": 255,
  1664. "a": 255
  1665. },
  1666. "_contentSize": {
  1667. "__type__": "cc.Size",
  1668. "width": 1664,
  1669. "height": 750
  1670. },
  1671. "_anchorPoint": {
  1672. "__type__": "cc.Vec2",
  1673. "x": 0.5,
  1674. "y": 0.5
  1675. },
  1676. "_trs": {
  1677. "__type__": "TypedArray",
  1678. "ctor": "Float64Array",
  1679. "array": [
  1680. 0,
  1681. -1,
  1682. 0,
  1683. 0,
  1684. 0,
  1685. 0,
  1686. 1,
  1687. 1,
  1688. 1,
  1689. 1
  1690. ]
  1691. },
  1692. "_eulerAngles": {
  1693. "__type__": "cc.Vec3",
  1694. "x": 0,
  1695. "y": 0,
  1696. "z": 0
  1697. },
  1698. "_skewX": 0,
  1699. "_skewY": 0,
  1700. "_is3DNode": false,
  1701. "_groupIndex": 0,
  1702. "groupIndex": 0,
  1703. "_id": ""
  1704. },
  1705. {
  1706. "__type__": "sp.Skeleton",
  1707. "_name": "",
  1708. "_objFlags": 0,
  1709. "node": {
  1710. "__id__": 41
  1711. },
  1712. "_enabled": true,
  1713. "_materials": [
  1714. {
  1715. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  1716. }
  1717. ],
  1718. "paused": false,
  1719. "defaultSkin": "default",
  1720. "defaultAnimation": "ani_bei",
  1721. "_preCacheMode": 0,
  1722. "_cacheMode": 0,
  1723. "loop": true,
  1724. "premultipliedAlpha": true,
  1725. "timeScale": 1,
  1726. "_accTime": 0,
  1727. "_playCount": 0,
  1728. "_frameCache": null,
  1729. "_curFrame": null,
  1730. "_skeletonCache": null,
  1731. "_animationName": "ani_bei",
  1732. "_animationQueue": [],
  1733. "_headAniInfo": null,
  1734. "_playTimes": 0,
  1735. "_isAniComplete": true,
  1736. "_N$skeletonData": {
  1737. "__uuid__": "69ff6d23-172d-4bfa-817e-2eca8fbb930b"
  1738. },
  1739. "_N$_defaultCacheMode": 0,
  1740. "_N$debugSlots": false,
  1741. "_N$debugBones": false,
  1742. "_N$debugMesh": false,
  1743. "_N$useTint": false,
  1744. "_N$enableBatch": false,
  1745. "_id": ""
  1746. },
  1747. {
  1748. "__type__": "cc.PrefabInfo",
  1749. "root": {
  1750. "__id__": 1
  1751. },
  1752. "asset": {
  1753. "__id__": 0
  1754. },
  1755. "fileId": "c5e77R889HLZ6dufHJQWN5",
  1756. "sync": false
  1757. },
  1758. {
  1759. "__type__": "cc.Sprite",
  1760. "_name": "",
  1761. "_objFlags": 0,
  1762. "node": {
  1763. "__id__": 40
  1764. },
  1765. "_enabled": true,
  1766. "_materials": [
  1767. {
  1768. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1769. }
  1770. ],
  1771. "_srcBlendFactor": 770,
  1772. "_dstBlendFactor": 771,
  1773. "_spriteFrame": {
  1774. "__uuid__": "b675be07-514d-44fe-b2a5-f3c59af67f86"
  1775. },
  1776. "_type": 0,
  1777. "_sizeMode": 1,
  1778. "_fillType": 0,
  1779. "_fillCenter": {
  1780. "__type__": "cc.Vec2",
  1781. "x": 0,
  1782. "y": 0
  1783. },
  1784. "_fillStart": 0,
  1785. "_fillRange": 0,
  1786. "_isTrimmedMode": true,
  1787. "_atlas": null,
  1788. "_id": ""
  1789. },
  1790. {
  1791. "__type__": "cc.PrefabInfo",
  1792. "root": {
  1793. "__id__": 1
  1794. },
  1795. "asset": {
  1796. "__id__": 0
  1797. },
  1798. "fileId": "acQHtuAl9Iko//2SB4OSfO",
  1799. "sync": false
  1800. },
  1801. {
  1802. "__type__": "cc.PrefabInfo",
  1803. "root": {
  1804. "__id__": 1
  1805. },
  1806. "asset": {
  1807. "__id__": 0
  1808. },
  1809. "fileId": "28prZGi1JNJby2CMhVdG3X",
  1810. "sync": false
  1811. },
  1812. {
  1813. "__type__": "cc.Sprite",
  1814. "_name": "",
  1815. "_objFlags": 0,
  1816. "node": {
  1817. "__id__": 2
  1818. },
  1819. "_enabled": true,
  1820. "_materials": [
  1821. {
  1822. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1823. }
  1824. ],
  1825. "_srcBlendFactor": 770,
  1826. "_dstBlendFactor": 771,
  1827. "_spriteFrame": {
  1828. "__uuid__": "1b6c3677-ceaa-4003-b3da-ff1b73e91e7e"
  1829. },
  1830. "_type": 0,
  1831. "_sizeMode": 1,
  1832. "_fillType": 0,
  1833. "_fillCenter": {
  1834. "__type__": "cc.Vec2",
  1835. "x": 0,
  1836. "y": 0
  1837. },
  1838. "_fillStart": 0,
  1839. "_fillRange": 0,
  1840. "_isTrimmedMode": true,
  1841. "_atlas": null,
  1842. "_id": ""
  1843. },
  1844. {
  1845. "__type__": "cc.PrefabInfo",
  1846. "root": {
  1847. "__id__": 1
  1848. },
  1849. "asset": {
  1850. "__id__": 0
  1851. },
  1852. "fileId": "58zIlPrXpA4qQ7jrOV44rV",
  1853. "sync": false
  1854. },
  1855. {
  1856. "__type__": "cc.Node",
  1857. "_name": "ClockBG",
  1858. "_objFlags": 0,
  1859. "_parent": {
  1860. "__id__": 1
  1861. },
  1862. "_children": [
  1863. {
  1864. "__id__": 50
  1865. },
  1866. {
  1867. "__id__": 53
  1868. }
  1869. ],
  1870. "_active": true,
  1871. "_components": [
  1872. {
  1873. "__id__": 56
  1874. }
  1875. ],
  1876. "_prefab": {
  1877. "__id__": 57
  1878. },
  1879. "_opacity": 255,
  1880. "_color": {
  1881. "__type__": "cc.Color",
  1882. "r": 255,
  1883. "g": 255,
  1884. "b": 255,
  1885. "a": 255
  1886. },
  1887. "_contentSize": {
  1888. "__type__": "cc.Size",
  1889. "width": 75,
  1890. "height": 75
  1891. },
  1892. "_anchorPoint": {
  1893. "__type__": "cc.Vec2",
  1894. "x": 0.5,
  1895. "y": 0.5
  1896. },
  1897. "_trs": {
  1898. "__type__": "TypedArray",
  1899. "ctor": "Float64Array",
  1900. "array": [
  1901. -2.6,
  1902. 0,
  1903. 0,
  1904. 0,
  1905. 0,
  1906. 0,
  1907. 1,
  1908. 1,
  1909. 1,
  1910. 1
  1911. ]
  1912. },
  1913. "_eulerAngles": {
  1914. "__type__": "cc.Vec3",
  1915. "x": 0,
  1916. "y": 0,
  1917. "z": 0
  1918. },
  1919. "_skewX": 0,
  1920. "_skewY": 0,
  1921. "_is3DNode": false,
  1922. "_groupIndex": 0,
  1923. "groupIndex": 0,
  1924. "_id": ""
  1925. },
  1926. {
  1927. "__type__": "cc.Node",
  1928. "_name": "clockNum0",
  1929. "_objFlags": 0,
  1930. "_parent": {
  1931. "__id__": 49
  1932. },
  1933. "_children": [],
  1934. "_active": true,
  1935. "_components": [
  1936. {
  1937. "__id__": 51
  1938. }
  1939. ],
  1940. "_prefab": {
  1941. "__id__": 52
  1942. },
  1943. "_opacity": 255,
  1944. "_color": {
  1945. "__type__": "cc.Color",
  1946. "r": 255,
  1947. "g": 255,
  1948. "b": 255,
  1949. "a": 255
  1950. },
  1951. "_contentSize": {
  1952. "__type__": "cc.Size",
  1953. "width": 27,
  1954. "height": 33
  1955. },
  1956. "_anchorPoint": {
  1957. "__type__": "cc.Vec2",
  1958. "x": 1,
  1959. "y": 0.5
  1960. },
  1961. "_trs": {
  1962. "__type__": "TypedArray",
  1963. "ctor": "Float64Array",
  1964. "array": [
  1965. 0.7,
  1966. 3.5,
  1967. 0,
  1968. 0,
  1969. 0,
  1970. 0,
  1971. 1,
  1972. 0.7,
  1973. 0.7,
  1974. 1
  1975. ]
  1976. },
  1977. "_eulerAngles": {
  1978. "__type__": "cc.Vec3",
  1979. "x": 0,
  1980. "y": 0,
  1981. "z": 0
  1982. },
  1983. "_skewX": 0,
  1984. "_skewY": 0,
  1985. "_is3DNode": false,
  1986. "_groupIndex": 0,
  1987. "groupIndex": 0,
  1988. "_id": ""
  1989. },
  1990. {
  1991. "__type__": "cc.Label",
  1992. "_name": "",
  1993. "_objFlags": 0,
  1994. "node": {
  1995. "__id__": 50
  1996. },
  1997. "_enabled": true,
  1998. "_materials": [
  1999. {
  2000. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2001. }
  2002. ],
  2003. "_srcBlendFactor": 770,
  2004. "_dstBlendFactor": 771,
  2005. "_string": "0",
  2006. "_N$string": "0",
  2007. "_fontSize": 32,
  2008. "_lineHeight": 33,
  2009. "_enableWrapText": true,
  2010. "_N$file": {
  2011. "__uuid__": "58c2ee47-b515-4fb7-bf97-1e7577becd91"
  2012. },
  2013. "_isSystemFontUsed": false,
  2014. "_spacingX": 0,
  2015. "_batchAsBitmap": false,
  2016. "_styleFlags": 0,
  2017. "_underlineHeight": 0,
  2018. "_N$horizontalAlign": 0,
  2019. "_N$verticalAlign": 0,
  2020. "_N$fontFamily": "Arial",
  2021. "_N$overflow": 0,
  2022. "_N$cacheMode": 0,
  2023. "_id": ""
  2024. },
  2025. {
  2026. "__type__": "cc.PrefabInfo",
  2027. "root": {
  2028. "__id__": 1
  2029. },
  2030. "asset": {
  2031. "__id__": 0
  2032. },
  2033. "fileId": "14KYJKxbRFBo6CRnIG2izQ",
  2034. "sync": false
  2035. },
  2036. {
  2037. "__type__": "cc.Node",
  2038. "_name": "clockNum1",
  2039. "_objFlags": 0,
  2040. "_parent": {
  2041. "__id__": 49
  2042. },
  2043. "_children": [],
  2044. "_active": true,
  2045. "_components": [
  2046. {
  2047. "__id__": 54
  2048. }
  2049. ],
  2050. "_prefab": {
  2051. "__id__": 55
  2052. },
  2053. "_opacity": 255,
  2054. "_color": {
  2055. "__type__": "cc.Color",
  2056. "r": 255,
  2057. "g": 255,
  2058. "b": 255,
  2059. "a": 255
  2060. },
  2061. "_contentSize": {
  2062. "__type__": "cc.Size",
  2063. "width": 27,
  2064. "height": 33
  2065. },
  2066. "_anchorPoint": {
  2067. "__type__": "cc.Vec2",
  2068. "x": 1,
  2069. "y": 0.5
  2070. },
  2071. "_trs": {
  2072. "__type__": "TypedArray",
  2073. "ctor": "Float64Array",
  2074. "array": [
  2075. 24,
  2076. 3.5,
  2077. 0,
  2078. 0,
  2079. 0,
  2080. 0,
  2081. 1,
  2082. 0.7,
  2083. 0.7,
  2084. 1
  2085. ]
  2086. },
  2087. "_eulerAngles": {
  2088. "__type__": "cc.Vec3",
  2089. "x": 0,
  2090. "y": 0,
  2091. "z": 0
  2092. },
  2093. "_skewX": 0,
  2094. "_skewY": 0,
  2095. "_is3DNode": false,
  2096. "_groupIndex": 0,
  2097. "groupIndex": 0,
  2098. "_id": ""
  2099. },
  2100. {
  2101. "__type__": "cc.Label",
  2102. "_name": "",
  2103. "_objFlags": 0,
  2104. "node": {
  2105. "__id__": 53
  2106. },
  2107. "_enabled": true,
  2108. "_materials": [
  2109. {
  2110. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2111. }
  2112. ],
  2113. "_srcBlendFactor": 770,
  2114. "_dstBlendFactor": 771,
  2115. "_string": "0",
  2116. "_N$string": "0",
  2117. "_fontSize": 32,
  2118. "_lineHeight": 33,
  2119. "_enableWrapText": true,
  2120. "_N$file": {
  2121. "__uuid__": "58c2ee47-b515-4fb7-bf97-1e7577becd91"
  2122. },
  2123. "_isSystemFontUsed": false,
  2124. "_spacingX": 0,
  2125. "_batchAsBitmap": false,
  2126. "_styleFlags": 0,
  2127. "_underlineHeight": 0,
  2128. "_N$horizontalAlign": 0,
  2129. "_N$verticalAlign": 0,
  2130. "_N$fontFamily": "Arial",
  2131. "_N$overflow": 0,
  2132. "_N$cacheMode": 0,
  2133. "_id": ""
  2134. },
  2135. {
  2136. "__type__": "cc.PrefabInfo",
  2137. "root": {
  2138. "__id__": 1
  2139. },
  2140. "asset": {
  2141. "__id__": 0
  2142. },
  2143. "fileId": "fc5PDHyS1JNKJxbE+27KAf",
  2144. "sync": false
  2145. },
  2146. {
  2147. "__type__": "cc.Sprite",
  2148. "_name": "",
  2149. "_objFlags": 0,
  2150. "node": {
  2151. "__id__": 49
  2152. },
  2153. "_enabled": true,
  2154. "_materials": [
  2155. {
  2156. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2157. }
  2158. ],
  2159. "_srcBlendFactor": 770,
  2160. "_dstBlendFactor": 771,
  2161. "_spriteFrame": null,
  2162. "_type": 0,
  2163. "_sizeMode": 1,
  2164. "_fillType": 0,
  2165. "_fillCenter": {
  2166. "__type__": "cc.Vec2",
  2167. "x": 0,
  2168. "y": 0
  2169. },
  2170. "_fillStart": 0,
  2171. "_fillRange": 0,
  2172. "_isTrimmedMode": true,
  2173. "_atlas": null,
  2174. "_id": ""
  2175. },
  2176. {
  2177. "__type__": "cc.PrefabInfo",
  2178. "root": {
  2179. "__id__": 1
  2180. },
  2181. "asset": {
  2182. "__id__": 0
  2183. },
  2184. "fileId": "7bOgSxwbZOypqJp6ynFfON",
  2185. "sync": false
  2186. },
  2187. {
  2188. "__type__": "fb93d6kFhRFtIFz92CtGV+Y",
  2189. "_name": "",
  2190. "_objFlags": 0,
  2191. "node": {
  2192. "__id__": 1
  2193. },
  2194. "_enabled": true,
  2195. "m_NodeArray": [
  2196. {
  2197. "__id__": 7
  2198. },
  2199. {
  2200. "__id__": 18
  2201. },
  2202. {
  2203. "__id__": 29
  2204. },
  2205. {
  2206. "__id__": 40
  2207. }
  2208. ],
  2209. "m_Clock": [
  2210. {
  2211. "__id__": 51
  2212. },
  2213. {
  2214. "__id__": 54
  2215. }
  2216. ],
  2217. "m_Rotation": [
  2218. {
  2219. "__id__": 3
  2220. },
  2221. {
  2222. "__id__": 14
  2223. },
  2224. {
  2225. "__id__": 25
  2226. },
  2227. {
  2228. "__id__": 36
  2229. }
  2230. ],
  2231. "m_Back": {
  2232. "__id__": 2
  2233. },
  2234. "_id": ""
  2235. },
  2236. {
  2237. "__type__": "cc.PrefabInfo",
  2238. "root": {
  2239. "__id__": 1
  2240. },
  2241. "asset": {
  2242. "__id__": 0
  2243. },
  2244. "fileId": "",
  2245. "sync": false
  2246. }
  2247. ]