VoiceCtrl.prefab 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358
  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": "VoiceCtrl",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. }
  23. ],
  24. "_active": true,
  25. "_components": [
  26. {
  27. "__id__": 65
  28. }
  29. ],
  30. "_prefab": {
  31. "__id__": 66
  32. },
  33. "_opacity": 255,
  34. "_color": {
  35. "__type__": "cc.Color",
  36. "r": 255,
  37. "g": 255,
  38. "b": 255,
  39. "a": 255
  40. },
  41. "_contentSize": {
  42. "__type__": "cc.Size",
  43. "width": 0,
  44. "height": 0
  45. },
  46. "_anchorPoint": {
  47. "__type__": "cc.Vec2",
  48. "x": 0.5,
  49. "y": 0.5
  50. },
  51. "_trs": {
  52. "__type__": "TypedArray",
  53. "ctor": "Float64Array",
  54. "array": [
  55. 0,
  56. 0,
  57. 0,
  58. 0,
  59. 0,
  60. 0,
  61. 1,
  62. 1,
  63. 1,
  64. 1
  65. ]
  66. },
  67. "_eulerAngles": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_skewX": 0,
  74. "_skewY": 0,
  75. "_is3DNode": false,
  76. "_groupIndex": 0,
  77. "groupIndex": 0,
  78. "_id": ""
  79. },
  80. {
  81. "__type__": "cc.Node",
  82. "_name": "Voice",
  83. "_objFlags": 0,
  84. "_parent": {
  85. "__id__": 1
  86. },
  87. "_children": [
  88. {
  89. "__id__": 3
  90. },
  91. {
  92. "__id__": 7
  93. },
  94. {
  95. "__id__": 13
  96. }
  97. ],
  98. "_active": true,
  99. "_components": [
  100. {
  101. "__id__": 63
  102. }
  103. ],
  104. "_prefab": {
  105. "__id__": 64
  106. },
  107. "_opacity": 255,
  108. "_color": {
  109. "__type__": "cc.Color",
  110. "r": 255,
  111. "g": 255,
  112. "b": 255,
  113. "a": 255
  114. },
  115. "_contentSize": {
  116. "__type__": "cc.Size",
  117. "width": 1664,
  118. "height": 750
  119. },
  120. "_anchorPoint": {
  121. "__type__": "cc.Vec2",
  122. "x": 0.5,
  123. "y": 0.5
  124. },
  125. "_trs": {
  126. "__type__": "TypedArray",
  127. "ctor": "Float64Array",
  128. "array": [
  129. 0,
  130. 0,
  131. 0,
  132. 0,
  133. 0,
  134. 0,
  135. 1,
  136. 1,
  137. 1,
  138. 1
  139. ]
  140. },
  141. "_eulerAngles": {
  142. "__type__": "cc.Vec3",
  143. "x": 0,
  144. "y": 0,
  145. "z": 0
  146. },
  147. "_skewX": 0,
  148. "_skewY": 0,
  149. "_is3DNode": false,
  150. "_groupIndex": 0,
  151. "groupIndex": 0,
  152. "_id": ""
  153. },
  154. {
  155. "__type__": "cc.Node",
  156. "_name": "btVoice",
  157. "_objFlags": 0,
  158. "_parent": {
  159. "__id__": 2
  160. },
  161. "_children": [],
  162. "_active": true,
  163. "_components": [
  164. {
  165. "__id__": 4
  166. },
  167. {
  168. "__id__": 5
  169. }
  170. ],
  171. "_prefab": {
  172. "__id__": 6
  173. },
  174. "_opacity": 255,
  175. "_color": {
  176. "__type__": "cc.Color",
  177. "r": 255,
  178. "g": 255,
  179. "b": 255,
  180. "a": 255
  181. },
  182. "_contentSize": {
  183. "__type__": "cc.Size",
  184. "width": 73,
  185. "height": 72
  186. },
  187. "_anchorPoint": {
  188. "__type__": "cc.Vec2",
  189. "x": 0.5,
  190. "y": 0.5
  191. },
  192. "_trs": {
  193. "__type__": "TypedArray",
  194. "ctor": "Float64Array",
  195. "array": [
  196. 775,
  197. -210,
  198. 0,
  199. 0,
  200. 0,
  201. 0,
  202. 1,
  203. 1,
  204. 1,
  205. 1
  206. ]
  207. },
  208. "_eulerAngles": {
  209. "__type__": "cc.Vec3",
  210. "x": 0,
  211. "y": 0,
  212. "z": 0
  213. },
  214. "_skewX": 0,
  215. "_skewY": 0,
  216. "_is3DNode": false,
  217. "_groupIndex": 0,
  218. "groupIndex": 0,
  219. "_id": ""
  220. },
  221. {
  222. "__type__": "cc.Sprite",
  223. "_name": "",
  224. "_objFlags": 0,
  225. "node": {
  226. "__id__": 3
  227. },
  228. "_enabled": true,
  229. "_materials": [
  230. {
  231. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  232. }
  233. ],
  234. "_srcBlendFactor": 770,
  235. "_dstBlendFactor": 771,
  236. "_spriteFrame": {
  237. "__uuid__": "02249f71-4f61-4652-bac8-278921bee819"
  238. },
  239. "_type": 1,
  240. "_sizeMode": 1,
  241. "_fillType": 0,
  242. "_fillCenter": {
  243. "__type__": "cc.Vec2",
  244. "x": 0,
  245. "y": 0
  246. },
  247. "_fillStart": 0,
  248. "_fillRange": 0,
  249. "_isTrimmedMode": true,
  250. "_atlas": null,
  251. "_id": ""
  252. },
  253. {
  254. "__type__": "cc.Widget",
  255. "_name": "",
  256. "_objFlags": 0,
  257. "node": {
  258. "__id__": 3
  259. },
  260. "_enabled": true,
  261. "alignMode": 1,
  262. "_target": {
  263. "__id__": 2
  264. },
  265. "_alignFlags": 32,
  266. "_left": 0,
  267. "_right": 20.5,
  268. "_top": 0,
  269. "_bottom": 0,
  270. "_verticalCenter": 0,
  271. "_horizontalCenter": 0,
  272. "_isAbsLeft": true,
  273. "_isAbsRight": true,
  274. "_isAbsTop": true,
  275. "_isAbsBottom": true,
  276. "_isAbsHorizontalCenter": true,
  277. "_isAbsVerticalCenter": true,
  278. "_originalWidth": 0,
  279. "_originalHeight": 0,
  280. "_id": ""
  281. },
  282. {
  283. "__type__": "cc.PrefabInfo",
  284. "root": {
  285. "__id__": 1
  286. },
  287. "asset": {
  288. "__id__": 0
  289. },
  290. "fileId": "d6LPzEiPBBPKzPrOnVUnRx",
  291. "sync": false
  292. },
  293. {
  294. "__type__": "cc.Node",
  295. "_name": "Recording",
  296. "_objFlags": 0,
  297. "_parent": {
  298. "__id__": 2
  299. },
  300. "_children": [
  301. {
  302. "__id__": 8
  303. }
  304. ],
  305. "_active": false,
  306. "_components": [
  307. {
  308. "__id__": 11
  309. }
  310. ],
  311. "_prefab": {
  312. "__id__": 12
  313. },
  314. "_opacity": 255,
  315. "_color": {
  316. "__type__": "cc.Color",
  317. "r": 255,
  318. "g": 255,
  319. "b": 255,
  320. "a": 255
  321. },
  322. "_contentSize": {
  323. "__type__": "cc.Size",
  324. "width": 294,
  325. "height": 138
  326. },
  327. "_anchorPoint": {
  328. "__type__": "cc.Vec2",
  329. "x": 0.5,
  330. "y": 0.5
  331. },
  332. "_trs": {
  333. "__type__": "TypedArray",
  334. "ctor": "Float64Array",
  335. "array": [
  336. 0,
  337. 0,
  338. 0,
  339. 0,
  340. 0,
  341. 0,
  342. 1,
  343. 1,
  344. 1,
  345. 1
  346. ]
  347. },
  348. "_eulerAngles": {
  349. "__type__": "cc.Vec3",
  350. "x": 0,
  351. "y": 0,
  352. "z": 0
  353. },
  354. "_skewX": 0,
  355. "_skewY": 0,
  356. "_is3DNode": false,
  357. "_groupIndex": 0,
  358. "groupIndex": 0,
  359. "_id": ""
  360. },
  361. {
  362. "__type__": "cc.Node",
  363. "_name": "Tips",
  364. "_objFlags": 0,
  365. "_parent": {
  366. "__id__": 7
  367. },
  368. "_children": [],
  369. "_active": false,
  370. "_components": [
  371. {
  372. "__id__": 9
  373. }
  374. ],
  375. "_prefab": {
  376. "__id__": 10
  377. },
  378. "_opacity": 255,
  379. "_color": {
  380. "__type__": "cc.Color",
  381. "r": 255,
  382. "g": 255,
  383. "b": 255,
  384. "a": 255
  385. },
  386. "_contentSize": {
  387. "__type__": "cc.Size",
  388. "width": 241,
  389. "height": 40
  390. },
  391. "_anchorPoint": {
  392. "__type__": "cc.Vec2",
  393. "x": 0.5,
  394. "y": 0.5
  395. },
  396. "_trs": {
  397. "__type__": "TypedArray",
  398. "ctor": "Float64Array",
  399. "array": [
  400. 0,
  401. -97,
  402. 0,
  403. 0,
  404. 0,
  405. 0,
  406. 1,
  407. 1,
  408. 1,
  409. 1
  410. ]
  411. },
  412. "_eulerAngles": {
  413. "__type__": "cc.Vec3",
  414. "x": 0,
  415. "y": 0,
  416. "z": 0
  417. },
  418. "_skewX": 0,
  419. "_skewY": 0,
  420. "_is3DNode": false,
  421. "_groupIndex": 0,
  422. "groupIndex": 0,
  423. "_id": ""
  424. },
  425. {
  426. "__type__": "cc.Label",
  427. "_name": "",
  428. "_objFlags": 0,
  429. "node": {
  430. "__id__": 8
  431. },
  432. "_enabled": true,
  433. "_materials": [
  434. {
  435. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  436. }
  437. ],
  438. "_srcBlendFactor": 770,
  439. "_dstBlendFactor": 771,
  440. "_string": "錄製時間太短",
  441. "_N$string": "錄製時間太短",
  442. "_fontSize": 32,
  443. "_lineHeight": 40,
  444. "_enableWrapText": false,
  445. "_N$file": null,
  446. "_isSystemFontUsed": false,
  447. "_spacingX": 0,
  448. "_batchAsBitmap": false,
  449. "_styleFlags": 0,
  450. "_underlineHeight": 0,
  451. "_N$horizontalAlign": 1,
  452. "_N$verticalAlign": 1,
  453. "_N$fontFamily": "Arial",
  454. "_N$overflow": 2,
  455. "_N$cacheMode": 0,
  456. "_id": ""
  457. },
  458. {
  459. "__type__": "cc.PrefabInfo",
  460. "root": {
  461. "__id__": 1
  462. },
  463. "asset": {
  464. "__id__": 0
  465. },
  466. "fileId": "eaBtE8lAhByKllDZ+5PH0p",
  467. "sync": false
  468. },
  469. {
  470. "__type__": "dragonBones.ArmatureDisplay",
  471. "_name": "",
  472. "_objFlags": 0,
  473. "node": {
  474. "__id__": 7
  475. },
  476. "_enabled": true,
  477. "_materials": [
  478. {
  479. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  480. }
  481. ],
  482. "_armatureName": "Armature",
  483. "_animationName": "newAnimation",
  484. "_preCacheMode": 0,
  485. "_cacheMode": 0,
  486. "playTimes": -1,
  487. "premultipliedAlpha": false,
  488. "_armatureKey": "5c7cac8f-a7d9-45c5-b9a6-b9ac005cc8f9#4fb7ea5a-04ac-470d-9a8f-100bcbd038f0",
  489. "_accTime": 0,
  490. "_playCount": 0,
  491. "_frameCache": null,
  492. "_curFrame": null,
  493. "_playing": false,
  494. "_armatureCache": null,
  495. "_N$dragonAsset": {
  496. "__uuid__": "5c7cac8f-a7d9-45c5-b9a6-b9ac005cc8f9"
  497. },
  498. "_N$dragonAtlasAsset": {
  499. "__uuid__": "4fb7ea5a-04ac-470d-9a8f-100bcbd038f0"
  500. },
  501. "_N$_defaultArmatureIndex": 0,
  502. "_N$_animationIndex": 1,
  503. "_N$_defaultCacheMode": 0,
  504. "_N$timeScale": 1,
  505. "_N$debugBones": false,
  506. "_N$enableBatch": false,
  507. "_id": ""
  508. },
  509. {
  510. "__type__": "cc.PrefabInfo",
  511. "root": {
  512. "__id__": 1
  513. },
  514. "asset": {
  515. "__id__": 0
  516. },
  517. "fileId": "7fPfVR5cxMU6vADFJ2dL9a",
  518. "sync": false
  519. },
  520. {
  521. "__type__": "cc.Node",
  522. "_name": "Sign",
  523. "_objFlags": 0,
  524. "_parent": {
  525. "__id__": 2
  526. },
  527. "_children": [
  528. {
  529. "__id__": 14
  530. },
  531. {
  532. "__id__": 17
  533. },
  534. {
  535. "__id__": 20
  536. },
  537. {
  538. "__id__": 23
  539. },
  540. {
  541. "__id__": 26
  542. },
  543. {
  544. "__id__": 29
  545. },
  546. {
  547. "__id__": 32
  548. },
  549. {
  550. "__id__": 35
  551. },
  552. {
  553. "__id__": 38
  554. },
  555. {
  556. "__id__": 41
  557. },
  558. {
  559. "__id__": 44
  560. },
  561. {
  562. "__id__": 47
  563. },
  564. {
  565. "__id__": 50
  566. },
  567. {
  568. "__id__": 53
  569. },
  570. {
  571. "__id__": 56
  572. },
  573. {
  574. "__id__": 59
  575. }
  576. ],
  577. "_active": true,
  578. "_components": [],
  579. "_prefab": {
  580. "__id__": 62
  581. },
  582. "_opacity": 255,
  583. "_color": {
  584. "__type__": "cc.Color",
  585. "r": 255,
  586. "g": 255,
  587. "b": 255,
  588. "a": 255
  589. },
  590. "_contentSize": {
  591. "__type__": "cc.Size",
  592. "width": 0,
  593. "height": 0
  594. },
  595. "_anchorPoint": {
  596. "__type__": "cc.Vec2",
  597. "x": 0.5,
  598. "y": 0.5
  599. },
  600. "_trs": {
  601. "__type__": "TypedArray",
  602. "ctor": "Float64Array",
  603. "array": [
  604. 0,
  605. 0,
  606. 0,
  607. 0,
  608. 0,
  609. 0,
  610. 1,
  611. 1,
  612. 1,
  613. 1
  614. ]
  615. },
  616. "_eulerAngles": {
  617. "__type__": "cc.Vec3",
  618. "x": 0,
  619. "y": 0,
  620. "z": 0
  621. },
  622. "_skewX": 0,
  623. "_skewY": 0,
  624. "_is3DNode": false,
  625. "_groupIndex": 0,
  626. "groupIndex": 0,
  627. "_id": ""
  628. },
  629. {
  630. "__type__": "cc.Node",
  631. "_name": "0",
  632. "_objFlags": 0,
  633. "_parent": {
  634. "__id__": 13
  635. },
  636. "_children": [],
  637. "_active": false,
  638. "_components": [
  639. {
  640. "__id__": 15
  641. }
  642. ],
  643. "_prefab": {
  644. "__id__": 16
  645. },
  646. "_opacity": 255,
  647. "_color": {
  648. "__type__": "cc.Color",
  649. "r": 255,
  650. "g": 255,
  651. "b": 255,
  652. "a": 255
  653. },
  654. "_contentSize": {
  655. "__type__": "cc.Size",
  656. "width": 97,
  657. "height": 37
  658. },
  659. "_anchorPoint": {
  660. "__type__": "cc.Vec2",
  661. "x": 0,
  662. "y": 0
  663. },
  664. "_trs": {
  665. "__type__": "TypedArray",
  666. "ctor": "Float64Array",
  667. "array": [
  668. 0,
  669. 0,
  670. 0,
  671. 0,
  672. 0,
  673. 0,
  674. 1,
  675. 1,
  676. 1,
  677. 1
  678. ]
  679. },
  680. "_eulerAngles": {
  681. "__type__": "cc.Vec3",
  682. "x": 0,
  683. "y": 0,
  684. "z": 0
  685. },
  686. "_skewX": 0,
  687. "_skewY": 0,
  688. "_is3DNode": false,
  689. "_groupIndex": 0,
  690. "groupIndex": 0,
  691. "_id": ""
  692. },
  693. {
  694. "__type__": "cc.Sprite",
  695. "_name": "",
  696. "_objFlags": 0,
  697. "node": {
  698. "__id__": 14
  699. },
  700. "_enabled": true,
  701. "_materials": [
  702. {
  703. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  704. }
  705. ],
  706. "_srcBlendFactor": 770,
  707. "_dstBlendFactor": 771,
  708. "_spriteFrame": {
  709. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  710. },
  711. "_type": 0,
  712. "_sizeMode": 1,
  713. "_fillType": 0,
  714. "_fillCenter": {
  715. "__type__": "cc.Vec2",
  716. "x": 0,
  717. "y": 0
  718. },
  719. "_fillStart": 0,
  720. "_fillRange": 0,
  721. "_isTrimmedMode": true,
  722. "_atlas": null,
  723. "_id": ""
  724. },
  725. {
  726. "__type__": "cc.PrefabInfo",
  727. "root": {
  728. "__id__": 1
  729. },
  730. "asset": {
  731. "__id__": 0
  732. },
  733. "fileId": "c15KfNMhxJiI5adP4iLVio",
  734. "sync": false
  735. },
  736. {
  737. "__type__": "cc.Node",
  738. "_name": "1",
  739. "_objFlags": 0,
  740. "_parent": {
  741. "__id__": 13
  742. },
  743. "_children": [],
  744. "_active": false,
  745. "_components": [
  746. {
  747. "__id__": 18
  748. }
  749. ],
  750. "_prefab": {
  751. "__id__": 19
  752. },
  753. "_opacity": 255,
  754. "_color": {
  755. "__type__": "cc.Color",
  756. "r": 255,
  757. "g": 255,
  758. "b": 255,
  759. "a": 255
  760. },
  761. "_contentSize": {
  762. "__type__": "cc.Size",
  763. "width": 97,
  764. "height": 37
  765. },
  766. "_anchorPoint": {
  767. "__type__": "cc.Vec2",
  768. "x": 0,
  769. "y": 0
  770. },
  771. "_trs": {
  772. "__type__": "TypedArray",
  773. "ctor": "Float64Array",
  774. "array": [
  775. 0,
  776. 0,
  777. 0,
  778. 0,
  779. 0,
  780. 0,
  781. 1,
  782. 1,
  783. 1,
  784. 1
  785. ]
  786. },
  787. "_eulerAngles": {
  788. "__type__": "cc.Vec3",
  789. "x": 0,
  790. "y": 0,
  791. "z": 0
  792. },
  793. "_skewX": 0,
  794. "_skewY": 0,
  795. "_is3DNode": false,
  796. "_groupIndex": 0,
  797. "groupIndex": 0,
  798. "_id": ""
  799. },
  800. {
  801. "__type__": "cc.Sprite",
  802. "_name": "",
  803. "_objFlags": 0,
  804. "node": {
  805. "__id__": 17
  806. },
  807. "_enabled": true,
  808. "_materials": [],
  809. "_srcBlendFactor": 770,
  810. "_dstBlendFactor": 771,
  811. "_spriteFrame": {
  812. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  813. },
  814. "_type": 0,
  815. "_sizeMode": 1,
  816. "_fillType": 0,
  817. "_fillCenter": {
  818. "__type__": "cc.Vec2",
  819. "x": 0,
  820. "y": 0
  821. },
  822. "_fillStart": 0,
  823. "_fillRange": 0,
  824. "_isTrimmedMode": true,
  825. "_atlas": null,
  826. "_id": ""
  827. },
  828. {
  829. "__type__": "cc.PrefabInfo",
  830. "root": {
  831. "__id__": 1
  832. },
  833. "asset": {
  834. "__id__": 0
  835. },
  836. "fileId": "a5t2hudG1LwIRZu14jfaGx",
  837. "sync": false
  838. },
  839. {
  840. "__type__": "cc.Node",
  841. "_name": "2",
  842. "_objFlags": 0,
  843. "_parent": {
  844. "__id__": 13
  845. },
  846. "_children": [],
  847. "_active": false,
  848. "_components": [
  849. {
  850. "__id__": 21
  851. }
  852. ],
  853. "_prefab": {
  854. "__id__": 22
  855. },
  856. "_opacity": 255,
  857. "_color": {
  858. "__type__": "cc.Color",
  859. "r": 255,
  860. "g": 255,
  861. "b": 255,
  862. "a": 255
  863. },
  864. "_contentSize": {
  865. "__type__": "cc.Size",
  866. "width": 97,
  867. "height": 37
  868. },
  869. "_anchorPoint": {
  870. "__type__": "cc.Vec2",
  871. "x": 0,
  872. "y": 0
  873. },
  874. "_trs": {
  875. "__type__": "TypedArray",
  876. "ctor": "Float64Array",
  877. "array": [
  878. 0,
  879. 0,
  880. 0,
  881. 0,
  882. 0,
  883. 0,
  884. 1,
  885. 1,
  886. 1,
  887. 1
  888. ]
  889. },
  890. "_eulerAngles": {
  891. "__type__": "cc.Vec3",
  892. "x": 0,
  893. "y": 0,
  894. "z": 0
  895. },
  896. "_skewX": 0,
  897. "_skewY": 0,
  898. "_is3DNode": false,
  899. "_groupIndex": 0,
  900. "groupIndex": 0,
  901. "_id": ""
  902. },
  903. {
  904. "__type__": "cc.Sprite",
  905. "_name": "",
  906. "_objFlags": 0,
  907. "node": {
  908. "__id__": 20
  909. },
  910. "_enabled": true,
  911. "_materials": [],
  912. "_srcBlendFactor": 770,
  913. "_dstBlendFactor": 771,
  914. "_spriteFrame": {
  915. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  916. },
  917. "_type": 0,
  918. "_sizeMode": 1,
  919. "_fillType": 0,
  920. "_fillCenter": {
  921. "__type__": "cc.Vec2",
  922. "x": 0,
  923. "y": 0
  924. },
  925. "_fillStart": 0,
  926. "_fillRange": 0,
  927. "_isTrimmedMode": true,
  928. "_atlas": null,
  929. "_id": ""
  930. },
  931. {
  932. "__type__": "cc.PrefabInfo",
  933. "root": {
  934. "__id__": 1
  935. },
  936. "asset": {
  937. "__id__": 0
  938. },
  939. "fileId": "83y0jE4SZIxopLWHSLC5yn",
  940. "sync": false
  941. },
  942. {
  943. "__type__": "cc.Node",
  944. "_name": "3",
  945. "_objFlags": 0,
  946. "_parent": {
  947. "__id__": 13
  948. },
  949. "_children": [],
  950. "_active": false,
  951. "_components": [
  952. {
  953. "__id__": 24
  954. }
  955. ],
  956. "_prefab": {
  957. "__id__": 25
  958. },
  959. "_opacity": 255,
  960. "_color": {
  961. "__type__": "cc.Color",
  962. "r": 255,
  963. "g": 255,
  964. "b": 255,
  965. "a": 255
  966. },
  967. "_contentSize": {
  968. "__type__": "cc.Size",
  969. "width": 97,
  970. "height": 37
  971. },
  972. "_anchorPoint": {
  973. "__type__": "cc.Vec2",
  974. "x": 0,
  975. "y": 0
  976. },
  977. "_trs": {
  978. "__type__": "TypedArray",
  979. "ctor": "Float64Array",
  980. "array": [
  981. 0,
  982. 0,
  983. 0,
  984. 0,
  985. 0,
  986. 0,
  987. 1,
  988. 1,
  989. 1,
  990. 1
  991. ]
  992. },
  993. "_eulerAngles": {
  994. "__type__": "cc.Vec3",
  995. "x": 0,
  996. "y": 0,
  997. "z": 0
  998. },
  999. "_skewX": 0,
  1000. "_skewY": 0,
  1001. "_is3DNode": false,
  1002. "_groupIndex": 0,
  1003. "groupIndex": 0,
  1004. "_id": ""
  1005. },
  1006. {
  1007. "__type__": "cc.Sprite",
  1008. "_name": "",
  1009. "_objFlags": 0,
  1010. "node": {
  1011. "__id__": 23
  1012. },
  1013. "_enabled": true,
  1014. "_materials": [],
  1015. "_srcBlendFactor": 770,
  1016. "_dstBlendFactor": 771,
  1017. "_spriteFrame": {
  1018. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  1019. },
  1020. "_type": 0,
  1021. "_sizeMode": 1,
  1022. "_fillType": 0,
  1023. "_fillCenter": {
  1024. "__type__": "cc.Vec2",
  1025. "x": 0,
  1026. "y": 0
  1027. },
  1028. "_fillStart": 0,
  1029. "_fillRange": 0,
  1030. "_isTrimmedMode": true,
  1031. "_atlas": null,
  1032. "_id": ""
  1033. },
  1034. {
  1035. "__type__": "cc.PrefabInfo",
  1036. "root": {
  1037. "__id__": 1
  1038. },
  1039. "asset": {
  1040. "__id__": 0
  1041. },
  1042. "fileId": "8ciNzQ4cNPebxhCz9jD+DY",
  1043. "sync": false
  1044. },
  1045. {
  1046. "__type__": "cc.Node",
  1047. "_name": "4",
  1048. "_objFlags": 0,
  1049. "_parent": {
  1050. "__id__": 13
  1051. },
  1052. "_children": [],
  1053. "_active": false,
  1054. "_components": [
  1055. {
  1056. "__id__": 27
  1057. }
  1058. ],
  1059. "_prefab": {
  1060. "__id__": 28
  1061. },
  1062. "_opacity": 255,
  1063. "_color": {
  1064. "__type__": "cc.Color",
  1065. "r": 255,
  1066. "g": 255,
  1067. "b": 255,
  1068. "a": 255
  1069. },
  1070. "_contentSize": {
  1071. "__type__": "cc.Size",
  1072. "width": 97,
  1073. "height": 37
  1074. },
  1075. "_anchorPoint": {
  1076. "__type__": "cc.Vec2",
  1077. "x": 0,
  1078. "y": 0
  1079. },
  1080. "_trs": {
  1081. "__type__": "TypedArray",
  1082. "ctor": "Float64Array",
  1083. "array": [
  1084. 0,
  1085. 0,
  1086. 0,
  1087. 0,
  1088. 0,
  1089. 0,
  1090. 1,
  1091. 1,
  1092. 1,
  1093. 1
  1094. ]
  1095. },
  1096. "_eulerAngles": {
  1097. "__type__": "cc.Vec3",
  1098. "x": 0,
  1099. "y": 0,
  1100. "z": 0
  1101. },
  1102. "_skewX": 0,
  1103. "_skewY": 0,
  1104. "_is3DNode": false,
  1105. "_groupIndex": 0,
  1106. "groupIndex": 0,
  1107. "_id": ""
  1108. },
  1109. {
  1110. "__type__": "cc.Sprite",
  1111. "_name": "",
  1112. "_objFlags": 0,
  1113. "node": {
  1114. "__id__": 26
  1115. },
  1116. "_enabled": true,
  1117. "_materials": [],
  1118. "_srcBlendFactor": 770,
  1119. "_dstBlendFactor": 771,
  1120. "_spriteFrame": {
  1121. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  1122. },
  1123. "_type": 0,
  1124. "_sizeMode": 1,
  1125. "_fillType": 0,
  1126. "_fillCenter": {
  1127. "__type__": "cc.Vec2",
  1128. "x": 0,
  1129. "y": 0
  1130. },
  1131. "_fillStart": 0,
  1132. "_fillRange": 0,
  1133. "_isTrimmedMode": true,
  1134. "_atlas": null,
  1135. "_id": ""
  1136. },
  1137. {
  1138. "__type__": "cc.PrefabInfo",
  1139. "root": {
  1140. "__id__": 1
  1141. },
  1142. "asset": {
  1143. "__id__": 0
  1144. },
  1145. "fileId": "5dB/O0kcJMY469NBXKtsWI",
  1146. "sync": false
  1147. },
  1148. {
  1149. "__type__": "cc.Node",
  1150. "_name": "5",
  1151. "_objFlags": 0,
  1152. "_parent": {
  1153. "__id__": 13
  1154. },
  1155. "_children": [],
  1156. "_active": false,
  1157. "_components": [
  1158. {
  1159. "__id__": 30
  1160. }
  1161. ],
  1162. "_prefab": {
  1163. "__id__": 31
  1164. },
  1165. "_opacity": 255,
  1166. "_color": {
  1167. "__type__": "cc.Color",
  1168. "r": 255,
  1169. "g": 255,
  1170. "b": 255,
  1171. "a": 255
  1172. },
  1173. "_contentSize": {
  1174. "__type__": "cc.Size",
  1175. "width": 97,
  1176. "height": 37
  1177. },
  1178. "_anchorPoint": {
  1179. "__type__": "cc.Vec2",
  1180. "x": 0,
  1181. "y": 0
  1182. },
  1183. "_trs": {
  1184. "__type__": "TypedArray",
  1185. "ctor": "Float64Array",
  1186. "array": [
  1187. 0,
  1188. 0,
  1189. 0,
  1190. 0,
  1191. 0,
  1192. 0,
  1193. 1,
  1194. 1,
  1195. 1,
  1196. 1
  1197. ]
  1198. },
  1199. "_eulerAngles": {
  1200. "__type__": "cc.Vec3",
  1201. "x": 0,
  1202. "y": 0,
  1203. "z": 0
  1204. },
  1205. "_skewX": 0,
  1206. "_skewY": 0,
  1207. "_is3DNode": false,
  1208. "_groupIndex": 0,
  1209. "groupIndex": 0,
  1210. "_id": ""
  1211. },
  1212. {
  1213. "__type__": "cc.Sprite",
  1214. "_name": "",
  1215. "_objFlags": 0,
  1216. "node": {
  1217. "__id__": 29
  1218. },
  1219. "_enabled": true,
  1220. "_materials": [],
  1221. "_srcBlendFactor": 770,
  1222. "_dstBlendFactor": 771,
  1223. "_spriteFrame": {
  1224. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  1225. },
  1226. "_type": 0,
  1227. "_sizeMode": 1,
  1228. "_fillType": 0,
  1229. "_fillCenter": {
  1230. "__type__": "cc.Vec2",
  1231. "x": 0,
  1232. "y": 0
  1233. },
  1234. "_fillStart": 0,
  1235. "_fillRange": 0,
  1236. "_isTrimmedMode": true,
  1237. "_atlas": null,
  1238. "_id": ""
  1239. },
  1240. {
  1241. "__type__": "cc.PrefabInfo",
  1242. "root": {
  1243. "__id__": 1
  1244. },
  1245. "asset": {
  1246. "__id__": 0
  1247. },
  1248. "fileId": "aeuIFUXSVF6rebwBCRXjmX",
  1249. "sync": false
  1250. },
  1251. {
  1252. "__type__": "cc.Node",
  1253. "_name": "6",
  1254. "_objFlags": 0,
  1255. "_parent": {
  1256. "__id__": 13
  1257. },
  1258. "_children": [],
  1259. "_active": false,
  1260. "_components": [
  1261. {
  1262. "__id__": 33
  1263. }
  1264. ],
  1265. "_prefab": {
  1266. "__id__": 34
  1267. },
  1268. "_opacity": 255,
  1269. "_color": {
  1270. "__type__": "cc.Color",
  1271. "r": 255,
  1272. "g": 255,
  1273. "b": 255,
  1274. "a": 255
  1275. },
  1276. "_contentSize": {
  1277. "__type__": "cc.Size",
  1278. "width": 97,
  1279. "height": 37
  1280. },
  1281. "_anchorPoint": {
  1282. "__type__": "cc.Vec2",
  1283. "x": 0,
  1284. "y": 0
  1285. },
  1286. "_trs": {
  1287. "__type__": "TypedArray",
  1288. "ctor": "Float64Array",
  1289. "array": [
  1290. 0,
  1291. 0,
  1292. 0,
  1293. 0,
  1294. 0,
  1295. 0,
  1296. 1,
  1297. 1,
  1298. 1,
  1299. 1
  1300. ]
  1301. },
  1302. "_eulerAngles": {
  1303. "__type__": "cc.Vec3",
  1304. "x": 0,
  1305. "y": 0,
  1306. "z": 0
  1307. },
  1308. "_skewX": 0,
  1309. "_skewY": 0,
  1310. "_is3DNode": false,
  1311. "_groupIndex": 0,
  1312. "groupIndex": 0,
  1313. "_id": ""
  1314. },
  1315. {
  1316. "__type__": "cc.Sprite",
  1317. "_name": "",
  1318. "_objFlags": 0,
  1319. "node": {
  1320. "__id__": 32
  1321. },
  1322. "_enabled": true,
  1323. "_materials": [],
  1324. "_srcBlendFactor": 770,
  1325. "_dstBlendFactor": 771,
  1326. "_spriteFrame": {
  1327. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  1328. },
  1329. "_type": 0,
  1330. "_sizeMode": 1,
  1331. "_fillType": 0,
  1332. "_fillCenter": {
  1333. "__type__": "cc.Vec2",
  1334. "x": 0,
  1335. "y": 0
  1336. },
  1337. "_fillStart": 0,
  1338. "_fillRange": 0,
  1339. "_isTrimmedMode": true,
  1340. "_atlas": null,
  1341. "_id": ""
  1342. },
  1343. {
  1344. "__type__": "cc.PrefabInfo",
  1345. "root": {
  1346. "__id__": 1
  1347. },
  1348. "asset": {
  1349. "__id__": 0
  1350. },
  1351. "fileId": "52PCraLjNEUbQHPEbInr4t",
  1352. "sync": false
  1353. },
  1354. {
  1355. "__type__": "cc.Node",
  1356. "_name": "7",
  1357. "_objFlags": 0,
  1358. "_parent": {
  1359. "__id__": 13
  1360. },
  1361. "_children": [],
  1362. "_active": false,
  1363. "_components": [
  1364. {
  1365. "__id__": 36
  1366. }
  1367. ],
  1368. "_prefab": {
  1369. "__id__": 37
  1370. },
  1371. "_opacity": 255,
  1372. "_color": {
  1373. "__type__": "cc.Color",
  1374. "r": 255,
  1375. "g": 255,
  1376. "b": 255,
  1377. "a": 255
  1378. },
  1379. "_contentSize": {
  1380. "__type__": "cc.Size",
  1381. "width": 97,
  1382. "height": 37
  1383. },
  1384. "_anchorPoint": {
  1385. "__type__": "cc.Vec2",
  1386. "x": 0,
  1387. "y": 0
  1388. },
  1389. "_trs": {
  1390. "__type__": "TypedArray",
  1391. "ctor": "Float64Array",
  1392. "array": [
  1393. 0,
  1394. 0,
  1395. 0,
  1396. 0,
  1397. 0,
  1398. 0,
  1399. 1,
  1400. 1,
  1401. 1,
  1402. 1
  1403. ]
  1404. },
  1405. "_eulerAngles": {
  1406. "__type__": "cc.Vec3",
  1407. "x": 0,
  1408. "y": 0,
  1409. "z": 0
  1410. },
  1411. "_skewX": 0,
  1412. "_skewY": 0,
  1413. "_is3DNode": false,
  1414. "_groupIndex": 0,
  1415. "groupIndex": 0,
  1416. "_id": ""
  1417. },
  1418. {
  1419. "__type__": "cc.Sprite",
  1420. "_name": "",
  1421. "_objFlags": 0,
  1422. "node": {
  1423. "__id__": 35
  1424. },
  1425. "_enabled": true,
  1426. "_materials": [],
  1427. "_srcBlendFactor": 770,
  1428. "_dstBlendFactor": 771,
  1429. "_spriteFrame": {
  1430. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  1431. },
  1432. "_type": 0,
  1433. "_sizeMode": 1,
  1434. "_fillType": 0,
  1435. "_fillCenter": {
  1436. "__type__": "cc.Vec2",
  1437. "x": 0,
  1438. "y": 0
  1439. },
  1440. "_fillStart": 0,
  1441. "_fillRange": 0,
  1442. "_isTrimmedMode": true,
  1443. "_atlas": null,
  1444. "_id": ""
  1445. },
  1446. {
  1447. "__type__": "cc.PrefabInfo",
  1448. "root": {
  1449. "__id__": 1
  1450. },
  1451. "asset": {
  1452. "__id__": 0
  1453. },
  1454. "fileId": "c8fxThISlKnY9n9fZakBVl",
  1455. "sync": false
  1456. },
  1457. {
  1458. "__type__": "cc.Node",
  1459. "_name": "8",
  1460. "_objFlags": 0,
  1461. "_parent": {
  1462. "__id__": 13
  1463. },
  1464. "_children": [],
  1465. "_active": false,
  1466. "_components": [
  1467. {
  1468. "__id__": 39
  1469. }
  1470. ],
  1471. "_prefab": {
  1472. "__id__": 40
  1473. },
  1474. "_opacity": 255,
  1475. "_color": {
  1476. "__type__": "cc.Color",
  1477. "r": 255,
  1478. "g": 255,
  1479. "b": 255,
  1480. "a": 255
  1481. },
  1482. "_contentSize": {
  1483. "__type__": "cc.Size",
  1484. "width": 97,
  1485. "height": 37
  1486. },
  1487. "_anchorPoint": {
  1488. "__type__": "cc.Vec2",
  1489. "x": 0,
  1490. "y": 0
  1491. },
  1492. "_trs": {
  1493. "__type__": "TypedArray",
  1494. "ctor": "Float64Array",
  1495. "array": [
  1496. 0,
  1497. 0,
  1498. 0,
  1499. 0,
  1500. 0,
  1501. 0,
  1502. 1,
  1503. 1,
  1504. 1,
  1505. 1
  1506. ]
  1507. },
  1508. "_eulerAngles": {
  1509. "__type__": "cc.Vec3",
  1510. "x": 0,
  1511. "y": 0,
  1512. "z": 0
  1513. },
  1514. "_skewX": 0,
  1515. "_skewY": 0,
  1516. "_is3DNode": false,
  1517. "_groupIndex": 0,
  1518. "groupIndex": 0,
  1519. "_id": ""
  1520. },
  1521. {
  1522. "__type__": "cc.Sprite",
  1523. "_name": "",
  1524. "_objFlags": 0,
  1525. "node": {
  1526. "__id__": 38
  1527. },
  1528. "_enabled": true,
  1529. "_materials": [],
  1530. "_srcBlendFactor": 770,
  1531. "_dstBlendFactor": 771,
  1532. "_spriteFrame": {
  1533. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  1534. },
  1535. "_type": 0,
  1536. "_sizeMode": 1,
  1537. "_fillType": 0,
  1538. "_fillCenter": {
  1539. "__type__": "cc.Vec2",
  1540. "x": 0,
  1541. "y": 0
  1542. },
  1543. "_fillStart": 0,
  1544. "_fillRange": 0,
  1545. "_isTrimmedMode": true,
  1546. "_atlas": null,
  1547. "_id": ""
  1548. },
  1549. {
  1550. "__type__": "cc.PrefabInfo",
  1551. "root": {
  1552. "__id__": 1
  1553. },
  1554. "asset": {
  1555. "__id__": 0
  1556. },
  1557. "fileId": "57WLikuVVCKasrpqNU7Ty0",
  1558. "sync": false
  1559. },
  1560. {
  1561. "__type__": "cc.Node",
  1562. "_name": "9",
  1563. "_objFlags": 0,
  1564. "_parent": {
  1565. "__id__": 13
  1566. },
  1567. "_children": [],
  1568. "_active": false,
  1569. "_components": [
  1570. {
  1571. "__id__": 42
  1572. }
  1573. ],
  1574. "_prefab": {
  1575. "__id__": 43
  1576. },
  1577. "_opacity": 255,
  1578. "_color": {
  1579. "__type__": "cc.Color",
  1580. "r": 255,
  1581. "g": 255,
  1582. "b": 255,
  1583. "a": 255
  1584. },
  1585. "_contentSize": {
  1586. "__type__": "cc.Size",
  1587. "width": 97,
  1588. "height": 37
  1589. },
  1590. "_anchorPoint": {
  1591. "__type__": "cc.Vec2",
  1592. "x": 0,
  1593. "y": 0
  1594. },
  1595. "_trs": {
  1596. "__type__": "TypedArray",
  1597. "ctor": "Float64Array",
  1598. "array": [
  1599. 0,
  1600. 0,
  1601. 0,
  1602. 0,
  1603. 0,
  1604. 0,
  1605. 1,
  1606. 1,
  1607. 1,
  1608. 1
  1609. ]
  1610. },
  1611. "_eulerAngles": {
  1612. "__type__": "cc.Vec3",
  1613. "x": 0,
  1614. "y": 0,
  1615. "z": 0
  1616. },
  1617. "_skewX": 0,
  1618. "_skewY": 0,
  1619. "_is3DNode": false,
  1620. "_groupIndex": 0,
  1621. "groupIndex": 0,
  1622. "_id": ""
  1623. },
  1624. {
  1625. "__type__": "cc.Sprite",
  1626. "_name": "",
  1627. "_objFlags": 0,
  1628. "node": {
  1629. "__id__": 41
  1630. },
  1631. "_enabled": true,
  1632. "_materials": [],
  1633. "_srcBlendFactor": 770,
  1634. "_dstBlendFactor": 771,
  1635. "_spriteFrame": {
  1636. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  1637. },
  1638. "_type": 0,
  1639. "_sizeMode": 1,
  1640. "_fillType": 0,
  1641. "_fillCenter": {
  1642. "__type__": "cc.Vec2",
  1643. "x": 0,
  1644. "y": 0
  1645. },
  1646. "_fillStart": 0,
  1647. "_fillRange": 0,
  1648. "_isTrimmedMode": true,
  1649. "_atlas": null,
  1650. "_id": ""
  1651. },
  1652. {
  1653. "__type__": "cc.PrefabInfo",
  1654. "root": {
  1655. "__id__": 1
  1656. },
  1657. "asset": {
  1658. "__id__": 0
  1659. },
  1660. "fileId": "0dzfR6N6BAP785VRsi4gRM",
  1661. "sync": false
  1662. },
  1663. {
  1664. "__type__": "cc.Node",
  1665. "_name": "10",
  1666. "_objFlags": 0,
  1667. "_parent": {
  1668. "__id__": 13
  1669. },
  1670. "_children": [],
  1671. "_active": false,
  1672. "_components": [
  1673. {
  1674. "__id__": 45
  1675. }
  1676. ],
  1677. "_prefab": {
  1678. "__id__": 46
  1679. },
  1680. "_opacity": 255,
  1681. "_color": {
  1682. "__type__": "cc.Color",
  1683. "r": 255,
  1684. "g": 255,
  1685. "b": 255,
  1686. "a": 255
  1687. },
  1688. "_contentSize": {
  1689. "__type__": "cc.Size",
  1690. "width": 97,
  1691. "height": 37
  1692. },
  1693. "_anchorPoint": {
  1694. "__type__": "cc.Vec2",
  1695. "x": 0,
  1696. "y": 0
  1697. },
  1698. "_trs": {
  1699. "__type__": "TypedArray",
  1700. "ctor": "Float64Array",
  1701. "array": [
  1702. 0,
  1703. 0,
  1704. 0,
  1705. 0,
  1706. 0,
  1707. 0,
  1708. 1,
  1709. 1,
  1710. 1,
  1711. 1
  1712. ]
  1713. },
  1714. "_eulerAngles": {
  1715. "__type__": "cc.Vec3",
  1716. "x": 0,
  1717. "y": 0,
  1718. "z": 0
  1719. },
  1720. "_skewX": 0,
  1721. "_skewY": 0,
  1722. "_is3DNode": false,
  1723. "_groupIndex": 0,
  1724. "groupIndex": 0,
  1725. "_id": ""
  1726. },
  1727. {
  1728. "__type__": "cc.Sprite",
  1729. "_name": "",
  1730. "_objFlags": 0,
  1731. "node": {
  1732. "__id__": 44
  1733. },
  1734. "_enabled": true,
  1735. "_materials": [
  1736. {
  1737. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1738. }
  1739. ],
  1740. "_srcBlendFactor": 770,
  1741. "_dstBlendFactor": 771,
  1742. "_spriteFrame": {
  1743. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  1744. },
  1745. "_type": 0,
  1746. "_sizeMode": 1,
  1747. "_fillType": 0,
  1748. "_fillCenter": {
  1749. "__type__": "cc.Vec2",
  1750. "x": 0,
  1751. "y": 0
  1752. },
  1753. "_fillStart": 0,
  1754. "_fillRange": 0,
  1755. "_isTrimmedMode": true,
  1756. "_atlas": null,
  1757. "_id": ""
  1758. },
  1759. {
  1760. "__type__": "cc.PrefabInfo",
  1761. "root": {
  1762. "__id__": 1
  1763. },
  1764. "asset": {
  1765. "__id__": 0
  1766. },
  1767. "fileId": "f5Q4LBWiJOGpn2Pw3triae",
  1768. "sync": false
  1769. },
  1770. {
  1771. "__type__": "cc.Node",
  1772. "_name": "11",
  1773. "_objFlags": 0,
  1774. "_parent": {
  1775. "__id__": 13
  1776. },
  1777. "_children": [],
  1778. "_active": false,
  1779. "_components": [
  1780. {
  1781. "__id__": 48
  1782. }
  1783. ],
  1784. "_prefab": {
  1785. "__id__": 49
  1786. },
  1787. "_opacity": 255,
  1788. "_color": {
  1789. "__type__": "cc.Color",
  1790. "r": 255,
  1791. "g": 255,
  1792. "b": 255,
  1793. "a": 255
  1794. },
  1795. "_contentSize": {
  1796. "__type__": "cc.Size",
  1797. "width": 97,
  1798. "height": 37
  1799. },
  1800. "_anchorPoint": {
  1801. "__type__": "cc.Vec2",
  1802. "x": 0,
  1803. "y": 0
  1804. },
  1805. "_trs": {
  1806. "__type__": "TypedArray",
  1807. "ctor": "Float64Array",
  1808. "array": [
  1809. 0,
  1810. 0,
  1811. 0,
  1812. 0,
  1813. 0,
  1814. 0,
  1815. 1,
  1816. 1,
  1817. 1,
  1818. 1
  1819. ]
  1820. },
  1821. "_eulerAngles": {
  1822. "__type__": "cc.Vec3",
  1823. "x": 0,
  1824. "y": 0,
  1825. "z": 0
  1826. },
  1827. "_skewX": 0,
  1828. "_skewY": 0,
  1829. "_is3DNode": false,
  1830. "_groupIndex": 0,
  1831. "groupIndex": 0,
  1832. "_id": ""
  1833. },
  1834. {
  1835. "__type__": "cc.Sprite",
  1836. "_name": "",
  1837. "_objFlags": 0,
  1838. "node": {
  1839. "__id__": 47
  1840. },
  1841. "_enabled": true,
  1842. "_materials": [
  1843. {
  1844. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1845. }
  1846. ],
  1847. "_srcBlendFactor": 770,
  1848. "_dstBlendFactor": 771,
  1849. "_spriteFrame": {
  1850. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  1851. },
  1852. "_type": 0,
  1853. "_sizeMode": 1,
  1854. "_fillType": 0,
  1855. "_fillCenter": {
  1856. "__type__": "cc.Vec2",
  1857. "x": 0,
  1858. "y": 0
  1859. },
  1860. "_fillStart": 0,
  1861. "_fillRange": 0,
  1862. "_isTrimmedMode": true,
  1863. "_atlas": null,
  1864. "_id": ""
  1865. },
  1866. {
  1867. "__type__": "cc.PrefabInfo",
  1868. "root": {
  1869. "__id__": 1
  1870. },
  1871. "asset": {
  1872. "__id__": 0
  1873. },
  1874. "fileId": "5e9oRkSbFLbqcjivFAKVLu",
  1875. "sync": false
  1876. },
  1877. {
  1878. "__type__": "cc.Node",
  1879. "_name": "12",
  1880. "_objFlags": 0,
  1881. "_parent": {
  1882. "__id__": 13
  1883. },
  1884. "_children": [],
  1885. "_active": false,
  1886. "_components": [
  1887. {
  1888. "__id__": 51
  1889. }
  1890. ],
  1891. "_prefab": {
  1892. "__id__": 52
  1893. },
  1894. "_opacity": 255,
  1895. "_color": {
  1896. "__type__": "cc.Color",
  1897. "r": 255,
  1898. "g": 255,
  1899. "b": 255,
  1900. "a": 255
  1901. },
  1902. "_contentSize": {
  1903. "__type__": "cc.Size",
  1904. "width": 97,
  1905. "height": 37
  1906. },
  1907. "_anchorPoint": {
  1908. "__type__": "cc.Vec2",
  1909. "x": 0,
  1910. "y": 0
  1911. },
  1912. "_trs": {
  1913. "__type__": "TypedArray",
  1914. "ctor": "Float64Array",
  1915. "array": [
  1916. 0,
  1917. 0,
  1918. 0,
  1919. 0,
  1920. 0,
  1921. 0,
  1922. 1,
  1923. 1,
  1924. 1,
  1925. 1
  1926. ]
  1927. },
  1928. "_eulerAngles": {
  1929. "__type__": "cc.Vec3",
  1930. "x": 0,
  1931. "y": 0,
  1932. "z": 0
  1933. },
  1934. "_skewX": 0,
  1935. "_skewY": 0,
  1936. "_is3DNode": false,
  1937. "_groupIndex": 0,
  1938. "groupIndex": 0,
  1939. "_id": ""
  1940. },
  1941. {
  1942. "__type__": "cc.Sprite",
  1943. "_name": "",
  1944. "_objFlags": 0,
  1945. "node": {
  1946. "__id__": 50
  1947. },
  1948. "_enabled": true,
  1949. "_materials": [
  1950. {
  1951. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1952. }
  1953. ],
  1954. "_srcBlendFactor": 770,
  1955. "_dstBlendFactor": 771,
  1956. "_spriteFrame": {
  1957. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  1958. },
  1959. "_type": 0,
  1960. "_sizeMode": 1,
  1961. "_fillType": 0,
  1962. "_fillCenter": {
  1963. "__type__": "cc.Vec2",
  1964. "x": 0,
  1965. "y": 0
  1966. },
  1967. "_fillStart": 0,
  1968. "_fillRange": 0,
  1969. "_isTrimmedMode": true,
  1970. "_atlas": null,
  1971. "_id": ""
  1972. },
  1973. {
  1974. "__type__": "cc.PrefabInfo",
  1975. "root": {
  1976. "__id__": 1
  1977. },
  1978. "asset": {
  1979. "__id__": 0
  1980. },
  1981. "fileId": "99oBYVufpH3YI8+zxx3TV/",
  1982. "sync": false
  1983. },
  1984. {
  1985. "__type__": "cc.Node",
  1986. "_name": "13",
  1987. "_objFlags": 0,
  1988. "_parent": {
  1989. "__id__": 13
  1990. },
  1991. "_children": [],
  1992. "_active": false,
  1993. "_components": [
  1994. {
  1995. "__id__": 54
  1996. }
  1997. ],
  1998. "_prefab": {
  1999. "__id__": 55
  2000. },
  2001. "_opacity": 255,
  2002. "_color": {
  2003. "__type__": "cc.Color",
  2004. "r": 255,
  2005. "g": 255,
  2006. "b": 255,
  2007. "a": 255
  2008. },
  2009. "_contentSize": {
  2010. "__type__": "cc.Size",
  2011. "width": 97,
  2012. "height": 37
  2013. },
  2014. "_anchorPoint": {
  2015. "__type__": "cc.Vec2",
  2016. "x": 0,
  2017. "y": 0
  2018. },
  2019. "_trs": {
  2020. "__type__": "TypedArray",
  2021. "ctor": "Float64Array",
  2022. "array": [
  2023. 0,
  2024. 0,
  2025. 0,
  2026. 0,
  2027. 0,
  2028. 0,
  2029. 1,
  2030. 1,
  2031. 1,
  2032. 1
  2033. ]
  2034. },
  2035. "_eulerAngles": {
  2036. "__type__": "cc.Vec3",
  2037. "x": 0,
  2038. "y": 0,
  2039. "z": 0
  2040. },
  2041. "_skewX": 0,
  2042. "_skewY": 0,
  2043. "_is3DNode": false,
  2044. "_groupIndex": 0,
  2045. "groupIndex": 0,
  2046. "_id": ""
  2047. },
  2048. {
  2049. "__type__": "cc.Sprite",
  2050. "_name": "",
  2051. "_objFlags": 0,
  2052. "node": {
  2053. "__id__": 53
  2054. },
  2055. "_enabled": true,
  2056. "_materials": [
  2057. {
  2058. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2059. }
  2060. ],
  2061. "_srcBlendFactor": 770,
  2062. "_dstBlendFactor": 771,
  2063. "_spriteFrame": {
  2064. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  2065. },
  2066. "_type": 0,
  2067. "_sizeMode": 1,
  2068. "_fillType": 0,
  2069. "_fillCenter": {
  2070. "__type__": "cc.Vec2",
  2071. "x": 0,
  2072. "y": 0
  2073. },
  2074. "_fillStart": 0,
  2075. "_fillRange": 0,
  2076. "_isTrimmedMode": true,
  2077. "_atlas": null,
  2078. "_id": ""
  2079. },
  2080. {
  2081. "__type__": "cc.PrefabInfo",
  2082. "root": {
  2083. "__id__": 1
  2084. },
  2085. "asset": {
  2086. "__id__": 0
  2087. },
  2088. "fileId": "d0SgB8eE1HnJXzmlYHMbS4",
  2089. "sync": false
  2090. },
  2091. {
  2092. "__type__": "cc.Node",
  2093. "_name": "14",
  2094. "_objFlags": 0,
  2095. "_parent": {
  2096. "__id__": 13
  2097. },
  2098. "_children": [],
  2099. "_active": false,
  2100. "_components": [
  2101. {
  2102. "__id__": 57
  2103. }
  2104. ],
  2105. "_prefab": {
  2106. "__id__": 58
  2107. },
  2108. "_opacity": 255,
  2109. "_color": {
  2110. "__type__": "cc.Color",
  2111. "r": 255,
  2112. "g": 255,
  2113. "b": 255,
  2114. "a": 255
  2115. },
  2116. "_contentSize": {
  2117. "__type__": "cc.Size",
  2118. "width": 97,
  2119. "height": 37
  2120. },
  2121. "_anchorPoint": {
  2122. "__type__": "cc.Vec2",
  2123. "x": 0,
  2124. "y": 0
  2125. },
  2126. "_trs": {
  2127. "__type__": "TypedArray",
  2128. "ctor": "Float64Array",
  2129. "array": [
  2130. 0,
  2131. 0,
  2132. 0,
  2133. 0,
  2134. 0,
  2135. 0,
  2136. 1,
  2137. 1,
  2138. 1,
  2139. 1
  2140. ]
  2141. },
  2142. "_eulerAngles": {
  2143. "__type__": "cc.Vec3",
  2144. "x": 0,
  2145. "y": 0,
  2146. "z": 0
  2147. },
  2148. "_skewX": 0,
  2149. "_skewY": 0,
  2150. "_is3DNode": false,
  2151. "_groupIndex": 0,
  2152. "groupIndex": 0,
  2153. "_id": ""
  2154. },
  2155. {
  2156. "__type__": "cc.Sprite",
  2157. "_name": "",
  2158. "_objFlags": 0,
  2159. "node": {
  2160. "__id__": 56
  2161. },
  2162. "_enabled": true,
  2163. "_materials": [
  2164. {
  2165. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2166. }
  2167. ],
  2168. "_srcBlendFactor": 770,
  2169. "_dstBlendFactor": 771,
  2170. "_spriteFrame": {
  2171. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  2172. },
  2173. "_type": 0,
  2174. "_sizeMode": 1,
  2175. "_fillType": 0,
  2176. "_fillCenter": {
  2177. "__type__": "cc.Vec2",
  2178. "x": 0,
  2179. "y": 0
  2180. },
  2181. "_fillStart": 0,
  2182. "_fillRange": 0,
  2183. "_isTrimmedMode": true,
  2184. "_atlas": null,
  2185. "_id": ""
  2186. },
  2187. {
  2188. "__type__": "cc.PrefabInfo",
  2189. "root": {
  2190. "__id__": 1
  2191. },
  2192. "asset": {
  2193. "__id__": 0
  2194. },
  2195. "fileId": "0be8AWbjpErJltcHljR138",
  2196. "sync": false
  2197. },
  2198. {
  2199. "__type__": "cc.Node",
  2200. "_name": "15",
  2201. "_objFlags": 0,
  2202. "_parent": {
  2203. "__id__": 13
  2204. },
  2205. "_children": [],
  2206. "_active": false,
  2207. "_components": [
  2208. {
  2209. "__id__": 60
  2210. }
  2211. ],
  2212. "_prefab": {
  2213. "__id__": 61
  2214. },
  2215. "_opacity": 255,
  2216. "_color": {
  2217. "__type__": "cc.Color",
  2218. "r": 255,
  2219. "g": 255,
  2220. "b": 255,
  2221. "a": 255
  2222. },
  2223. "_contentSize": {
  2224. "__type__": "cc.Size",
  2225. "width": 97,
  2226. "height": 37
  2227. },
  2228. "_anchorPoint": {
  2229. "__type__": "cc.Vec2",
  2230. "x": 0,
  2231. "y": 0
  2232. },
  2233. "_trs": {
  2234. "__type__": "TypedArray",
  2235. "ctor": "Float64Array",
  2236. "array": [
  2237. 0,
  2238. 0,
  2239. 0,
  2240. 0,
  2241. 0,
  2242. 0,
  2243. 1,
  2244. 1,
  2245. 1,
  2246. 1
  2247. ]
  2248. },
  2249. "_eulerAngles": {
  2250. "__type__": "cc.Vec3",
  2251. "x": 0,
  2252. "y": 0,
  2253. "z": 0
  2254. },
  2255. "_skewX": 0,
  2256. "_skewY": 0,
  2257. "_is3DNode": false,
  2258. "_groupIndex": 0,
  2259. "groupIndex": 0,
  2260. "_id": ""
  2261. },
  2262. {
  2263. "__type__": "cc.Sprite",
  2264. "_name": "",
  2265. "_objFlags": 0,
  2266. "node": {
  2267. "__id__": 59
  2268. },
  2269. "_enabled": true,
  2270. "_materials": [
  2271. {
  2272. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2273. }
  2274. ],
  2275. "_srcBlendFactor": 770,
  2276. "_dstBlendFactor": 771,
  2277. "_spriteFrame": {
  2278. "__uuid__": "05b5c7dd-6d67-4e77-b19c-84fc233909da"
  2279. },
  2280. "_type": 0,
  2281. "_sizeMode": 1,
  2282. "_fillType": 0,
  2283. "_fillCenter": {
  2284. "__type__": "cc.Vec2",
  2285. "x": 0,
  2286. "y": 0
  2287. },
  2288. "_fillStart": 0,
  2289. "_fillRange": 0,
  2290. "_isTrimmedMode": true,
  2291. "_atlas": null,
  2292. "_id": ""
  2293. },
  2294. {
  2295. "__type__": "cc.PrefabInfo",
  2296. "root": {
  2297. "__id__": 1
  2298. },
  2299. "asset": {
  2300. "__id__": 0
  2301. },
  2302. "fileId": "9br7gOhTNE1q56sToNN7Hw",
  2303. "sync": false
  2304. },
  2305. {
  2306. "__type__": "cc.PrefabInfo",
  2307. "root": {
  2308. "__id__": 1
  2309. },
  2310. "asset": {
  2311. "__id__": 0
  2312. },
  2313. "fileId": "93Olgs/TpKwKq5xCSDqafH",
  2314. "sync": false
  2315. },
  2316. {
  2317. "__type__": "75214xvQAtDAbWtQz4YaW+4",
  2318. "_name": "",
  2319. "_objFlags": 0,
  2320. "node": {
  2321. "__id__": 2
  2322. },
  2323. "_enabled": true,
  2324. "_id": ""
  2325. },
  2326. {
  2327. "__type__": "cc.PrefabInfo",
  2328. "root": {
  2329. "__id__": 1
  2330. },
  2331. "asset": {
  2332. "__id__": 0
  2333. },
  2334. "fileId": "caNq99G81Ns4dZ47xJeb3o",
  2335. "sync": false
  2336. },
  2337. {
  2338. "__type__": "0c89bqRFt9HpITJ7XDF8s5m",
  2339. "_name": "",
  2340. "_objFlags": 0,
  2341. "node": {
  2342. "__id__": 1
  2343. },
  2344. "_enabled": true,
  2345. "_id": ""
  2346. },
  2347. {
  2348. "__type__": "cc.PrefabInfo",
  2349. "root": {
  2350. "__id__": 1
  2351. },
  2352. "asset": {
  2353. "__id__": 0
  2354. },
  2355. "fileId": "",
  2356. "sync": false
  2357. }
  2358. ]