taside.prefab 44 KB

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