crazyAwardView.prefab 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986
  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": "crazyAwardView",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. },
  26. {
  27. "__id__": 12
  28. },
  29. {
  30. "__id__": 22
  31. },
  32. {
  33. "__id__": 32
  34. },
  35. {
  36. "__id__": 37
  37. },
  38. {
  39. "__id__": 40
  40. },
  41. {
  42. "__id__": 43
  43. },
  44. {
  45. "__id__": 46
  46. }
  47. ],
  48. "_active": true,
  49. "_components": [
  50. {
  51. "__id__": 52
  52. },
  53. {
  54. "__id__": 53
  55. }
  56. ],
  57. "_prefab": {
  58. "__id__": 54
  59. },
  60. "_opacity": 255,
  61. "_color": {
  62. "__type__": "cc.Color",
  63. "r": 255,
  64. "g": 255,
  65. "b": 255,
  66. "a": 255
  67. },
  68. "_contentSize": {
  69. "__type__": "cc.Size",
  70. "width": 1280,
  71. "height": 720
  72. },
  73. "_anchorPoint": {
  74. "__type__": "cc.Vec2",
  75. "x": 0.5,
  76. "y": 0.5
  77. },
  78. "_trs": {
  79. "__type__": "TypedArray",
  80. "ctor": "Float64Array",
  81. "array": [
  82. 640,
  83. 360,
  84. 0,
  85. 0,
  86. 0,
  87. 0,
  88. 1,
  89. 1,
  90. 1,
  91. 1
  92. ]
  93. },
  94. "_eulerAngles": {
  95. "__type__": "cc.Vec3",
  96. "x": 0,
  97. "y": 0,
  98. "z": 0
  99. },
  100. "_skewX": 0,
  101. "_skewY": 0,
  102. "_is3DNode": false,
  103. "_groupIndex": 0,
  104. "groupIndex": 0,
  105. "_id": ""
  106. },
  107. {
  108. "__type__": "cc.Node",
  109. "_name": "bg",
  110. "_objFlags": 0,
  111. "_parent": {
  112. "__id__": 1
  113. },
  114. "_children": [],
  115. "_active": true,
  116. "_components": [
  117. {
  118. "__id__": 3
  119. },
  120. {
  121. "__id__": 4
  122. }
  123. ],
  124. "_prefab": {
  125. "__id__": 5
  126. },
  127. "_opacity": 255,
  128. "_color": {
  129. "__type__": "cc.Color",
  130. "r": 255,
  131. "g": 255,
  132. "b": 255,
  133. "a": 255
  134. },
  135. "_contentSize": {
  136. "__type__": "cc.Size",
  137. "width": 1281,
  138. "height": 720
  139. },
  140. "_anchorPoint": {
  141. "__type__": "cc.Vec2",
  142. "x": 0.5,
  143. "y": 0.5
  144. },
  145. "_trs": {
  146. "__type__": "TypedArray",
  147. "ctor": "Float64Array",
  148. "array": [
  149. 0,
  150. 0,
  151. 0,
  152. 0,
  153. 0,
  154. 0,
  155. 1,
  156. 1,
  157. 1,
  158. 1
  159. ]
  160. },
  161. "_eulerAngles": {
  162. "__type__": "cc.Vec3",
  163. "x": 0,
  164. "y": 0,
  165. "z": 0
  166. },
  167. "_skewX": 0,
  168. "_skewY": 0,
  169. "_is3DNode": false,
  170. "_groupIndex": 0,
  171. "groupIndex": 0,
  172. "_id": ""
  173. },
  174. {
  175. "__type__": "cc.Sprite",
  176. "_name": "",
  177. "_objFlags": 0,
  178. "node": {
  179. "__id__": 2
  180. },
  181. "_enabled": true,
  182. "_materials": [
  183. {
  184. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  185. }
  186. ],
  187. "_srcBlendFactor": 770,
  188. "_dstBlendFactor": 771,
  189. "_spriteFrame": {
  190. "__uuid__": "51590f91-aa13-4791-9f2f-85bdb3a05413"
  191. },
  192. "_type": 0,
  193. "_sizeMode": 1,
  194. "_fillType": 0,
  195. "_fillCenter": {
  196. "__type__": "cc.Vec2",
  197. "x": 0,
  198. "y": 0
  199. },
  200. "_fillStart": 0,
  201. "_fillRange": 0,
  202. "_isTrimmedMode": true,
  203. "_atlas": null,
  204. "_id": ""
  205. },
  206. {
  207. "__type__": "cc.Widget",
  208. "_name": "",
  209. "_objFlags": 0,
  210. "node": {
  211. "__id__": 2
  212. },
  213. "_enabled": true,
  214. "alignMode": 1,
  215. "_target": null,
  216. "_alignFlags": 45,
  217. "_left": -0.5,
  218. "_right": -0.5,
  219. "_top": 0,
  220. "_bottom": 0,
  221. "_verticalCenter": 0,
  222. "_horizontalCenter": 0,
  223. "_isAbsLeft": true,
  224. "_isAbsRight": true,
  225. "_isAbsTop": true,
  226. "_isAbsBottom": true,
  227. "_isAbsHorizontalCenter": true,
  228. "_isAbsVerticalCenter": true,
  229. "_originalWidth": 1281,
  230. "_originalHeight": 720,
  231. "_id": ""
  232. },
  233. {
  234. "__type__": "cc.PrefabInfo",
  235. "root": {
  236. "__id__": 1
  237. },
  238. "asset": {
  239. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  240. },
  241. "fileId": "21CL9KvHVPVJGafJ9szRdb",
  242. "sync": false
  243. },
  244. {
  245. "__type__": "cc.Node",
  246. "_name": "fxtsjs_biaoti",
  247. "_objFlags": 0,
  248. "_parent": {
  249. "__id__": 1
  250. },
  251. "_children": [
  252. {
  253. "__id__": 7
  254. }
  255. ],
  256. "_active": true,
  257. "_components": [
  258. {
  259. "__id__": 10
  260. }
  261. ],
  262. "_prefab": {
  263. "__id__": 11
  264. },
  265. "_opacity": 255,
  266. "_color": {
  267. "__type__": "cc.Color",
  268. "r": 255,
  269. "g": 255,
  270. "b": 255,
  271. "a": 255
  272. },
  273. "_contentSize": {
  274. "__type__": "cc.Size",
  275. "width": 703,
  276. "height": 115
  277. },
  278. "_anchorPoint": {
  279. "__type__": "cc.Vec2",
  280. "x": 0.5,
  281. "y": 0.5
  282. },
  283. "_trs": {
  284. "__type__": "TypedArray",
  285. "ctor": "Float64Array",
  286. "array": [
  287. 0,
  288. 279.17,
  289. 0,
  290. 0,
  291. 0,
  292. 0,
  293. 1,
  294. 1,
  295. 1,
  296. 1
  297. ]
  298. },
  299. "_eulerAngles": {
  300. "__type__": "cc.Vec3",
  301. "x": 0,
  302. "y": 0,
  303. "z": 0
  304. },
  305. "_skewX": 0,
  306. "_skewY": 0,
  307. "_is3DNode": false,
  308. "_groupIndex": 0,
  309. "groupIndex": 0,
  310. "_id": ""
  311. },
  312. {
  313. "__type__": "cc.Node",
  314. "_name": "point",
  315. "_objFlags": 0,
  316. "_parent": {
  317. "__id__": 6
  318. },
  319. "_children": [],
  320. "_active": true,
  321. "_components": [
  322. {
  323. "__id__": 8
  324. }
  325. ],
  326. "_prefab": {
  327. "__id__": 9
  328. },
  329. "_opacity": 255,
  330. "_color": {
  331. "__type__": "cc.Color",
  332. "r": 255,
  333. "g": 255,
  334. "b": 255,
  335. "a": 255
  336. },
  337. "_contentSize": {
  338. "__type__": "cc.Size",
  339. "width": 110,
  340. "height": 105
  341. },
  342. "_anchorPoint": {
  343. "__type__": "cc.Vec2",
  344. "x": 0.5,
  345. "y": 0.5
  346. },
  347. "_trs": {
  348. "__type__": "TypedArray",
  349. "ctor": "Float64Array",
  350. "array": [
  351. -263.615,
  352. 4.423,
  353. 0,
  354. 0,
  355. 0,
  356. 0,
  357. 1,
  358. 1,
  359. 1,
  360. 1
  361. ]
  362. },
  363. "_eulerAngles": {
  364. "__type__": "cc.Vec3",
  365. "x": 0,
  366. "y": 0,
  367. "z": 0
  368. },
  369. "_skewX": 0,
  370. "_skewY": 0,
  371. "_is3DNode": false,
  372. "_groupIndex": 0,
  373. "groupIndex": 0,
  374. "_id": ""
  375. },
  376. {
  377. "__type__": "cc.Sprite",
  378. "_name": "",
  379. "_objFlags": 0,
  380. "node": {
  381. "__id__": 7
  382. },
  383. "_enabled": true,
  384. "_materials": [
  385. {
  386. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  387. }
  388. ],
  389. "_srcBlendFactor": 770,
  390. "_dstBlendFactor": 771,
  391. "_spriteFrame": {
  392. "__uuid__": "9cb9aa72-1622-4fa2-ae27-eb56c9a39b39"
  393. },
  394. "_type": 0,
  395. "_sizeMode": 1,
  396. "_fillType": 0,
  397. "_fillCenter": {
  398. "__type__": "cc.Vec2",
  399. "x": 0,
  400. "y": 0
  401. },
  402. "_fillStart": 0,
  403. "_fillRange": 0,
  404. "_isTrimmedMode": true,
  405. "_atlas": null,
  406. "_id": ""
  407. },
  408. {
  409. "__type__": "cc.PrefabInfo",
  410. "root": {
  411. "__id__": 1
  412. },
  413. "asset": {
  414. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  415. },
  416. "fileId": "a4R/45VYdP0YldUB2PjP+r",
  417. "sync": false
  418. },
  419. {
  420. "__type__": "cc.Sprite",
  421. "_name": "",
  422. "_objFlags": 0,
  423. "node": {
  424. "__id__": 6
  425. },
  426. "_enabled": true,
  427. "_materials": [
  428. {
  429. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  430. }
  431. ],
  432. "_srcBlendFactor": 770,
  433. "_dstBlendFactor": 771,
  434. "_spriteFrame": {
  435. "__uuid__": "9cacf302-d32d-40bb-9ea9-10c0ee9641df"
  436. },
  437. "_type": 0,
  438. "_sizeMode": 1,
  439. "_fillType": 0,
  440. "_fillCenter": {
  441. "__type__": "cc.Vec2",
  442. "x": 0,
  443. "y": 0
  444. },
  445. "_fillStart": 0,
  446. "_fillRange": 0,
  447. "_isTrimmedMode": true,
  448. "_atlas": null,
  449. "_id": ""
  450. },
  451. {
  452. "__type__": "cc.PrefabInfo",
  453. "root": {
  454. "__id__": 1
  455. },
  456. "asset": {
  457. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  458. },
  459. "fileId": "0cfWS838FEX7TP0OFmsoEw",
  460. "sync": false
  461. },
  462. {
  463. "__type__": "cc.Node",
  464. "_name": "heroContent",
  465. "_objFlags": 0,
  466. "_parent": {
  467. "__id__": 1
  468. },
  469. "_children": [
  470. {
  471. "__id__": 13
  472. },
  473. {
  474. "__id__": 15
  475. },
  476. {
  477. "__id__": 17
  478. },
  479. {
  480. "__id__": 19
  481. }
  482. ],
  483. "_active": true,
  484. "_components": [],
  485. "_prefab": {
  486. "__id__": 21
  487. },
  488. "_opacity": 255,
  489. "_color": {
  490. "__type__": "cc.Color",
  491. "r": 255,
  492. "g": 255,
  493. "b": 255,
  494. "a": 255
  495. },
  496. "_contentSize": {
  497. "__type__": "cc.Size",
  498. "width": 0,
  499. "height": 0
  500. },
  501. "_anchorPoint": {
  502. "__type__": "cc.Vec2",
  503. "x": 0.5,
  504. "y": 0.5
  505. },
  506. "_trs": {
  507. "__type__": "TypedArray",
  508. "ctor": "Float64Array",
  509. "array": [
  510. -332.452,
  511. -62.377,
  512. 0,
  513. 0,
  514. 0,
  515. 0,
  516. 1,
  517. 1,
  518. 1,
  519. 1
  520. ]
  521. },
  522. "_eulerAngles": {
  523. "__type__": "cc.Vec3",
  524. "x": 0,
  525. "y": 0,
  526. "z": 0
  527. },
  528. "_skewX": 0,
  529. "_skewY": 0,
  530. "_is3DNode": false,
  531. "_groupIndex": 0,
  532. "groupIndex": 0,
  533. "_id": ""
  534. },
  535. {
  536. "__type__": "cc.Node",
  537. "_name": "heroSlot1",
  538. "_objFlags": 0,
  539. "_parent": {
  540. "__id__": 12
  541. },
  542. "_children": [],
  543. "_active": true,
  544. "_components": [],
  545. "_prefab": {
  546. "__id__": 14
  547. },
  548. "_opacity": 255,
  549. "_color": {
  550. "__type__": "cc.Color",
  551. "r": 255,
  552. "g": 255,
  553. "b": 255,
  554. "a": 255
  555. },
  556. "_contentSize": {
  557. "__type__": "cc.Size",
  558. "width": 0,
  559. "height": 0
  560. },
  561. "_anchorPoint": {
  562. "__type__": "cc.Vec2",
  563. "x": 0.5,
  564. "y": 0.5
  565. },
  566. "_trs": {
  567. "__type__": "TypedArray",
  568. "ctor": "Float64Array",
  569. "array": [
  570. 0,
  571. 39.99999999999997,
  572. 0,
  573. 0,
  574. 0,
  575. 0,
  576. 1,
  577. 1,
  578. 1,
  579. 1
  580. ]
  581. },
  582. "_eulerAngles": {
  583. "__type__": "cc.Vec3",
  584. "x": 0,
  585. "y": 0,
  586. "z": 0
  587. },
  588. "_skewX": 0,
  589. "_skewY": 0,
  590. "_is3DNode": false,
  591. "_groupIndex": 0,
  592. "groupIndex": 0,
  593. "_id": ""
  594. },
  595. {
  596. "__type__": "cc.PrefabInfo",
  597. "root": {
  598. "__id__": 1
  599. },
  600. "asset": {
  601. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  602. },
  603. "fileId": "5bb4kyuehDCYJH7MZ1SXLF",
  604. "sync": false
  605. },
  606. {
  607. "__type__": "cc.Node",
  608. "_name": "heroSlot2",
  609. "_objFlags": 0,
  610. "_parent": {
  611. "__id__": 12
  612. },
  613. "_children": [],
  614. "_active": true,
  615. "_components": [],
  616. "_prefab": {
  617. "__id__": 16
  618. },
  619. "_opacity": 255,
  620. "_color": {
  621. "__type__": "cc.Color",
  622. "r": 255,
  623. "g": 255,
  624. "b": 255,
  625. "a": 255
  626. },
  627. "_contentSize": {
  628. "__type__": "cc.Size",
  629. "width": 0,
  630. "height": 0
  631. },
  632. "_anchorPoint": {
  633. "__type__": "cc.Vec2",
  634. "x": 0.5,
  635. "y": 0.5
  636. },
  637. "_trs": {
  638. "__type__": "TypedArray",
  639. "ctor": "Float64Array",
  640. "array": [
  641. -40,
  642. 0,
  643. 0,
  644. 0,
  645. 0,
  646. 0,
  647. 1,
  648. 1,
  649. 1,
  650. 1
  651. ]
  652. },
  653. "_eulerAngles": {
  654. "__type__": "cc.Vec3",
  655. "x": 0,
  656. "y": 0,
  657. "z": 0
  658. },
  659. "_skewX": 0,
  660. "_skewY": 0,
  661. "_is3DNode": false,
  662. "_groupIndex": 0,
  663. "groupIndex": 0,
  664. "_id": ""
  665. },
  666. {
  667. "__type__": "cc.PrefabInfo",
  668. "root": {
  669. "__id__": 1
  670. },
  671. "asset": {
  672. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  673. },
  674. "fileId": "cdYVu7Tl1PraOsip/GXi93",
  675. "sync": false
  676. },
  677. {
  678. "__type__": "cc.Node",
  679. "_name": "heroSlot3",
  680. "_objFlags": 0,
  681. "_parent": {
  682. "__id__": 12
  683. },
  684. "_children": [],
  685. "_active": true,
  686. "_components": [],
  687. "_prefab": {
  688. "__id__": 18
  689. },
  690. "_opacity": 255,
  691. "_color": {
  692. "__type__": "cc.Color",
  693. "r": 255,
  694. "g": 255,
  695. "b": 255,
  696. "a": 255
  697. },
  698. "_contentSize": {
  699. "__type__": "cc.Size",
  700. "width": 0,
  701. "height": 0
  702. },
  703. "_anchorPoint": {
  704. "__type__": "cc.Vec2",
  705. "x": 0.5,
  706. "y": 0.5
  707. },
  708. "_trs": {
  709. "__type__": "TypedArray",
  710. "ctor": "Float64Array",
  711. "array": [
  712. 40,
  713. 0,
  714. 0,
  715. 0,
  716. 0,
  717. 0,
  718. 1,
  719. 1,
  720. 1,
  721. 1
  722. ]
  723. },
  724. "_eulerAngles": {
  725. "__type__": "cc.Vec3",
  726. "x": 0,
  727. "y": 0,
  728. "z": 0
  729. },
  730. "_skewX": 0,
  731. "_skewY": 0,
  732. "_is3DNode": false,
  733. "_groupIndex": 0,
  734. "groupIndex": 0,
  735. "_id": ""
  736. },
  737. {
  738. "__type__": "cc.PrefabInfo",
  739. "root": {
  740. "__id__": 1
  741. },
  742. "asset": {
  743. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  744. },
  745. "fileId": "07hWr1Tc9CXZrDIPo2GI2o",
  746. "sync": false
  747. },
  748. {
  749. "__type__": "cc.Node",
  750. "_name": "heroSlot4",
  751. "_objFlags": 0,
  752. "_parent": {
  753. "__id__": 12
  754. },
  755. "_children": [],
  756. "_active": true,
  757. "_components": [],
  758. "_prefab": {
  759. "__id__": 20
  760. },
  761. "_opacity": 255,
  762. "_color": {
  763. "__type__": "cc.Color",
  764. "r": 255,
  765. "g": 255,
  766. "b": 255,
  767. "a": 255
  768. },
  769. "_contentSize": {
  770. "__type__": "cc.Size",
  771. "width": 0,
  772. "height": 0
  773. },
  774. "_anchorPoint": {
  775. "__type__": "cc.Vec2",
  776. "x": 0.5,
  777. "y": 0.5
  778. },
  779. "_trs": {
  780. "__type__": "TypedArray",
  781. "ctor": "Float64Array",
  782. "array": [
  783. 0,
  784. -40,
  785. 0,
  786. 0,
  787. 0,
  788. 0,
  789. 1,
  790. 1,
  791. 1,
  792. 1
  793. ]
  794. },
  795. "_eulerAngles": {
  796. "__type__": "cc.Vec3",
  797. "x": 0,
  798. "y": 0,
  799. "z": 0
  800. },
  801. "_skewX": 0,
  802. "_skewY": 0,
  803. "_is3DNode": false,
  804. "_groupIndex": 0,
  805. "groupIndex": 0,
  806. "_id": ""
  807. },
  808. {
  809. "__type__": "cc.PrefabInfo",
  810. "root": {
  811. "__id__": 1
  812. },
  813. "asset": {
  814. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  815. },
  816. "fileId": "951lze6UZO0LGeIpjZ2+T/",
  817. "sync": false
  818. },
  819. {
  820. "__type__": "cc.PrefabInfo",
  821. "root": {
  822. "__id__": 1
  823. },
  824. "asset": {
  825. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  826. },
  827. "fileId": "b8b3PT24FA3YhqaJR1755q",
  828. "sync": false
  829. },
  830. {
  831. "__type__": "cc.Node",
  832. "_name": "zombieContent",
  833. "_objFlags": 0,
  834. "_parent": {
  835. "__id__": 1
  836. },
  837. "_children": [
  838. {
  839. "__id__": 23
  840. },
  841. {
  842. "__id__": 25
  843. },
  844. {
  845. "__id__": 27
  846. },
  847. {
  848. "__id__": 29
  849. }
  850. ],
  851. "_active": true,
  852. "_components": [],
  853. "_prefab": {
  854. "__id__": 31
  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": 0,
  867. "height": 0
  868. },
  869. "_anchorPoint": {
  870. "__type__": "cc.Vec2",
  871. "x": 0.5,
  872. "y": 0.5
  873. },
  874. "_trs": {
  875. "__type__": "TypedArray",
  876. "ctor": "Float64Array",
  877. "array": [
  878. 121.543,
  879. -78.651,
  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.Node",
  905. "_name": "zombieSlot1",
  906. "_objFlags": 0,
  907. "_parent": {
  908. "__id__": 22
  909. },
  910. "_children": [],
  911. "_active": true,
  912. "_components": [],
  913. "_prefab": {
  914. "__id__": 24
  915. },
  916. "_opacity": 255,
  917. "_color": {
  918. "__type__": "cc.Color",
  919. "r": 255,
  920. "g": 255,
  921. "b": 255,
  922. "a": 255
  923. },
  924. "_contentSize": {
  925. "__type__": "cc.Size",
  926. "width": 0,
  927. "height": 0
  928. },
  929. "_anchorPoint": {
  930. "__type__": "cc.Vec2",
  931. "x": 0.5,
  932. "y": 0.5
  933. },
  934. "_trs": {
  935. "__type__": "TypedArray",
  936. "ctor": "Float64Array",
  937. "array": [
  938. 0,
  939. 0,
  940. 0,
  941. 0,
  942. 0,
  943. 0,
  944. 1,
  945. 1,
  946. 1,
  947. 1
  948. ]
  949. },
  950. "_eulerAngles": {
  951. "__type__": "cc.Vec3",
  952. "x": 0,
  953. "y": 0,
  954. "z": 0
  955. },
  956. "_skewX": 0,
  957. "_skewY": 0,
  958. "_is3DNode": false,
  959. "_groupIndex": 0,
  960. "groupIndex": 0,
  961. "_id": ""
  962. },
  963. {
  964. "__type__": "cc.PrefabInfo",
  965. "root": {
  966. "__id__": 1
  967. },
  968. "asset": {
  969. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  970. },
  971. "fileId": "cfzO683CRGZqUDCB25P80o",
  972. "sync": false
  973. },
  974. {
  975. "__type__": "cc.Node",
  976. "_name": "zombieSlot2",
  977. "_objFlags": 0,
  978. "_parent": {
  979. "__id__": 22
  980. },
  981. "_children": [],
  982. "_active": true,
  983. "_components": [],
  984. "_prefab": {
  985. "__id__": 26
  986. },
  987. "_opacity": 255,
  988. "_color": {
  989. "__type__": "cc.Color",
  990. "r": 255,
  991. "g": 255,
  992. "b": 255,
  993. "a": 255
  994. },
  995. "_contentSize": {
  996. "__type__": "cc.Size",
  997. "width": 0,
  998. "height": 0
  999. },
  1000. "_anchorPoint": {
  1001. "__type__": "cc.Vec2",
  1002. "x": 0.5,
  1003. "y": 0.5
  1004. },
  1005. "_trs": {
  1006. "__type__": "TypedArray",
  1007. "ctor": "Float64Array",
  1008. "array": [
  1009. 40,
  1010. 0,
  1011. 0,
  1012. 0,
  1013. 0,
  1014. 0,
  1015. 1,
  1016. 1,
  1017. 1,
  1018. 1
  1019. ]
  1020. },
  1021. "_eulerAngles": {
  1022. "__type__": "cc.Vec3",
  1023. "x": 0,
  1024. "y": 0,
  1025. "z": 0
  1026. },
  1027. "_skewX": 0,
  1028. "_skewY": 0,
  1029. "_is3DNode": false,
  1030. "_groupIndex": 0,
  1031. "groupIndex": 0,
  1032. "_id": ""
  1033. },
  1034. {
  1035. "__type__": "cc.PrefabInfo",
  1036. "root": {
  1037. "__id__": 1
  1038. },
  1039. "asset": {
  1040. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  1041. },
  1042. "fileId": "5d5AJWgtlEfavkXnPvrxm2",
  1043. "sync": false
  1044. },
  1045. {
  1046. "__type__": "cc.Node",
  1047. "_name": "zombieSlot3",
  1048. "_objFlags": 0,
  1049. "_parent": {
  1050. "__id__": 22
  1051. },
  1052. "_children": [],
  1053. "_active": true,
  1054. "_components": [],
  1055. "_prefab": {
  1056. "__id__": 28
  1057. },
  1058. "_opacity": 255,
  1059. "_color": {
  1060. "__type__": "cc.Color",
  1061. "r": 255,
  1062. "g": 255,
  1063. "b": 255,
  1064. "a": 255
  1065. },
  1066. "_contentSize": {
  1067. "__type__": "cc.Size",
  1068. "width": 0,
  1069. "height": 0
  1070. },
  1071. "_anchorPoint": {
  1072. "__type__": "cc.Vec2",
  1073. "x": 0.5,
  1074. "y": 0.5
  1075. },
  1076. "_trs": {
  1077. "__type__": "TypedArray",
  1078. "ctor": "Float64Array",
  1079. "array": [
  1080. -40,
  1081. 0,
  1082. 0,
  1083. 0,
  1084. 0,
  1085. 0,
  1086. 1,
  1087. 1,
  1088. 1,
  1089. 1
  1090. ]
  1091. },
  1092. "_eulerAngles": {
  1093. "__type__": "cc.Vec3",
  1094. "x": 0,
  1095. "y": 0,
  1096. "z": 0
  1097. },
  1098. "_skewX": 0,
  1099. "_skewY": 0,
  1100. "_is3DNode": false,
  1101. "_groupIndex": 0,
  1102. "groupIndex": 0,
  1103. "_id": ""
  1104. },
  1105. {
  1106. "__type__": "cc.PrefabInfo",
  1107. "root": {
  1108. "__id__": 1
  1109. },
  1110. "asset": {
  1111. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  1112. },
  1113. "fileId": "c8njAqe11OxqfvGuCQjMGZ",
  1114. "sync": false
  1115. },
  1116. {
  1117. "__type__": "cc.Node",
  1118. "_name": "zombieSlot4",
  1119. "_objFlags": 0,
  1120. "_parent": {
  1121. "__id__": 22
  1122. },
  1123. "_children": [],
  1124. "_active": true,
  1125. "_components": [],
  1126. "_prefab": {
  1127. "__id__": 30
  1128. },
  1129. "_opacity": 255,
  1130. "_color": {
  1131. "__type__": "cc.Color",
  1132. "r": 255,
  1133. "g": 255,
  1134. "b": 255,
  1135. "a": 255
  1136. },
  1137. "_contentSize": {
  1138. "__type__": "cc.Size",
  1139. "width": 0,
  1140. "height": 0
  1141. },
  1142. "_anchorPoint": {
  1143. "__type__": "cc.Vec2",
  1144. "x": 0.5,
  1145. "y": 0.5
  1146. },
  1147. "_trs": {
  1148. "__type__": "TypedArray",
  1149. "ctor": "Float64Array",
  1150. "array": [
  1151. 0,
  1152. -40,
  1153. 0,
  1154. 0,
  1155. 0,
  1156. 0,
  1157. 1,
  1158. 1,
  1159. 1,
  1160. 1
  1161. ]
  1162. },
  1163. "_eulerAngles": {
  1164. "__type__": "cc.Vec3",
  1165. "x": 0,
  1166. "y": 0,
  1167. "z": 0
  1168. },
  1169. "_skewX": 0,
  1170. "_skewY": 0,
  1171. "_is3DNode": false,
  1172. "_groupIndex": 0,
  1173. "groupIndex": 0,
  1174. "_id": ""
  1175. },
  1176. {
  1177. "__type__": "cc.PrefabInfo",
  1178. "root": {
  1179. "__id__": 1
  1180. },
  1181. "asset": {
  1182. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  1183. },
  1184. "fileId": "1fa1F0EpFHfqnzffjRpcct",
  1185. "sync": false
  1186. },
  1187. {
  1188. "__type__": "cc.PrefabInfo",
  1189. "root": {
  1190. "__id__": 1
  1191. },
  1192. "asset": {
  1193. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  1194. },
  1195. "fileId": "b73s1s1C1JJLtU/sMUzgOp",
  1196. "sync": false
  1197. },
  1198. {
  1199. "__type__": "cc.Node",
  1200. "_name": "fxtsjs_btn",
  1201. "_objFlags": 0,
  1202. "_parent": {
  1203. "__id__": 1
  1204. },
  1205. "_children": [],
  1206. "_active": true,
  1207. "_components": [
  1208. {
  1209. "__id__": 33
  1210. },
  1211. {
  1212. "__id__": 34
  1213. }
  1214. ],
  1215. "_prefab": {
  1216. "__id__": 36
  1217. },
  1218. "_opacity": 255,
  1219. "_color": {
  1220. "__type__": "cc.Color",
  1221. "r": 255,
  1222. "g": 255,
  1223. "b": 255,
  1224. "a": 255
  1225. },
  1226. "_contentSize": {
  1227. "__type__": "cc.Size",
  1228. "width": 256,
  1229. "height": 101
  1230. },
  1231. "_anchorPoint": {
  1232. "__type__": "cc.Vec2",
  1233. "x": 0.5,
  1234. "y": 0.5
  1235. },
  1236. "_trs": {
  1237. "__type__": "TypedArray",
  1238. "ctor": "Float64Array",
  1239. "array": [
  1240. 0,
  1241. -284.374,
  1242. 0,
  1243. 0,
  1244. 0,
  1245. 0,
  1246. 1,
  1247. 1,
  1248. 1,
  1249. 0
  1250. ]
  1251. },
  1252. "_eulerAngles": {
  1253. "__type__": "cc.Vec3",
  1254. "x": 0,
  1255. "y": 0,
  1256. "z": 0
  1257. },
  1258. "_skewX": 0,
  1259. "_skewY": 0,
  1260. "_is3DNode": false,
  1261. "_groupIndex": 0,
  1262. "groupIndex": 0,
  1263. "_id": ""
  1264. },
  1265. {
  1266. "__type__": "cc.Sprite",
  1267. "_name": "",
  1268. "_objFlags": 0,
  1269. "node": {
  1270. "__id__": 32
  1271. },
  1272. "_enabled": true,
  1273. "_materials": [
  1274. {
  1275. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1276. }
  1277. ],
  1278. "_srcBlendFactor": 770,
  1279. "_dstBlendFactor": 771,
  1280. "_spriteFrame": {
  1281. "__uuid__": "88f9f059-6301-4e06-9977-a3b397169ae7"
  1282. },
  1283. "_type": 0,
  1284. "_sizeMode": 1,
  1285. "_fillType": 0,
  1286. "_fillCenter": {
  1287. "__type__": "cc.Vec2",
  1288. "x": 0,
  1289. "y": 0
  1290. },
  1291. "_fillStart": 0,
  1292. "_fillRange": 0,
  1293. "_isTrimmedMode": true,
  1294. "_atlas": null,
  1295. "_id": ""
  1296. },
  1297. {
  1298. "__type__": "cc.Button",
  1299. "_name": "",
  1300. "_objFlags": 0,
  1301. "node": {
  1302. "__id__": 32
  1303. },
  1304. "_enabled": true,
  1305. "_normalMaterial": null,
  1306. "_grayMaterial": null,
  1307. "duration": 0.1,
  1308. "zoomScale": 1.2,
  1309. "clickEvents": [
  1310. {
  1311. "__id__": 35
  1312. }
  1313. ],
  1314. "_N$interactable": true,
  1315. "_N$enableAutoGrayEffect": false,
  1316. "_N$transition": 3,
  1317. "transition": 3,
  1318. "_N$normalColor": {
  1319. "__type__": "cc.Color",
  1320. "r": 255,
  1321. "g": 255,
  1322. "b": 255,
  1323. "a": 255
  1324. },
  1325. "_N$pressedColor": {
  1326. "__type__": "cc.Color",
  1327. "r": 211,
  1328. "g": 211,
  1329. "b": 211,
  1330. "a": 255
  1331. },
  1332. "pressedColor": {
  1333. "__type__": "cc.Color",
  1334. "r": 211,
  1335. "g": 211,
  1336. "b": 211,
  1337. "a": 255
  1338. },
  1339. "_N$hoverColor": {
  1340. "__type__": "cc.Color",
  1341. "r": 255,
  1342. "g": 255,
  1343. "b": 255,
  1344. "a": 255
  1345. },
  1346. "hoverColor": {
  1347. "__type__": "cc.Color",
  1348. "r": 255,
  1349. "g": 255,
  1350. "b": 255,
  1351. "a": 255
  1352. },
  1353. "_N$disabledColor": {
  1354. "__type__": "cc.Color",
  1355. "r": 124,
  1356. "g": 124,
  1357. "b": 124,
  1358. "a": 255
  1359. },
  1360. "_N$normalSprite": null,
  1361. "_N$pressedSprite": null,
  1362. "pressedSprite": null,
  1363. "_N$hoverSprite": null,
  1364. "hoverSprite": null,
  1365. "_N$disabledSprite": null,
  1366. "_N$target": null,
  1367. "_id": ""
  1368. },
  1369. {
  1370. "__type__": "cc.ClickEvent",
  1371. "target": {
  1372. "__id__": 1
  1373. },
  1374. "component": "",
  1375. "_componentId": "f43cer5fuRCabywsDn5tpnk",
  1376. "handler": "clickCrazy",
  1377. "customEventData": ""
  1378. },
  1379. {
  1380. "__type__": "cc.PrefabInfo",
  1381. "root": {
  1382. "__id__": 1
  1383. },
  1384. "asset": {
  1385. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  1386. },
  1387. "fileId": "8aYyO+ZyVEta+tGZe75Kax",
  1388. "sync": false
  1389. },
  1390. {
  1391. "__type__": "cc.Node",
  1392. "_name": "kdzl",
  1393. "_objFlags": 0,
  1394. "_parent": {
  1395. "__id__": 1
  1396. },
  1397. "_children": [],
  1398. "_active": true,
  1399. "_components": [
  1400. {
  1401. "__id__": 38
  1402. }
  1403. ],
  1404. "_prefab": {
  1405. "__id__": 39
  1406. },
  1407. "_opacity": 255,
  1408. "_color": {
  1409. "__type__": "cc.Color",
  1410. "r": 255,
  1411. "g": 255,
  1412. "b": 255,
  1413. "a": 255
  1414. },
  1415. "_contentSize": {
  1416. "__type__": "cc.Size",
  1417. "width": 165,
  1418. "height": 138
  1419. },
  1420. "_anchorPoint": {
  1421. "__type__": "cc.Vec2",
  1422. "x": 0.5,
  1423. "y": 0.5
  1424. },
  1425. "_trs": {
  1426. "__type__": "TypedArray",
  1427. "ctor": "Float64Array",
  1428. "array": [
  1429. 233.397,
  1430. -277.462,
  1431. 0,
  1432. 0,
  1433. 0,
  1434. 0,
  1435. 1,
  1436. 1,
  1437. 1,
  1438. 1
  1439. ]
  1440. },
  1441. "_eulerAngles": {
  1442. "__type__": "cc.Vec3",
  1443. "x": 0,
  1444. "y": 0,
  1445. "z": 0
  1446. },
  1447. "_skewX": 0,
  1448. "_skewY": 0,
  1449. "_is3DNode": false,
  1450. "_groupIndex": 0,
  1451. "groupIndex": 0,
  1452. "_id": ""
  1453. },
  1454. {
  1455. "__type__": "cc.Sprite",
  1456. "_name": "",
  1457. "_objFlags": 0,
  1458. "node": {
  1459. "__id__": 37
  1460. },
  1461. "_enabled": true,
  1462. "_materials": [
  1463. {
  1464. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1465. }
  1466. ],
  1467. "_srcBlendFactor": 770,
  1468. "_dstBlendFactor": 771,
  1469. "_spriteFrame": {
  1470. "__uuid__": "a084186f-b79f-4925-8408-382a76b9593f"
  1471. },
  1472. "_type": 0,
  1473. "_sizeMode": 1,
  1474. "_fillType": 0,
  1475. "_fillCenter": {
  1476. "__type__": "cc.Vec2",
  1477. "x": 0,
  1478. "y": 0
  1479. },
  1480. "_fillStart": 0,
  1481. "_fillRange": 0,
  1482. "_isTrimmedMode": true,
  1483. "_atlas": null,
  1484. "_id": ""
  1485. },
  1486. {
  1487. "__type__": "cc.PrefabInfo",
  1488. "root": {
  1489. "__id__": 1
  1490. },
  1491. "asset": {
  1492. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  1493. },
  1494. "fileId": "5eUp/WiqlAdY6K2vTxV7UI",
  1495. "sync": false
  1496. },
  1497. {
  1498. "__type__": "cc.Node",
  1499. "_name": "byjs",
  1500. "_objFlags": 0,
  1501. "_parent": {
  1502. "__id__": 1
  1503. },
  1504. "_children": [],
  1505. "_active": true,
  1506. "_components": [
  1507. {
  1508. "__id__": 41
  1509. }
  1510. ],
  1511. "_prefab": {
  1512. "__id__": 42
  1513. },
  1514. "_opacity": 255,
  1515. "_color": {
  1516. "__type__": "cc.Color",
  1517. "r": 255,
  1518. "g": 255,
  1519. "b": 255,
  1520. "a": 255
  1521. },
  1522. "_contentSize": {
  1523. "__type__": "cc.Size",
  1524. "width": 161,
  1525. "height": 37
  1526. },
  1527. "_anchorPoint": {
  1528. "__type__": "cc.Vec2",
  1529. "x": 0.5,
  1530. "y": 0.5
  1531. },
  1532. "_trs": {
  1533. "__type__": "TypedArray",
  1534. "ctor": "Float64Array",
  1535. "array": [
  1536. -314.609,
  1537. -174.005,
  1538. 0,
  1539. 0,
  1540. 0,
  1541. 0,
  1542. 1,
  1543. 1,
  1544. 1,
  1545. 1
  1546. ]
  1547. },
  1548. "_eulerAngles": {
  1549. "__type__": "cc.Vec3",
  1550. "x": 0,
  1551. "y": 0,
  1552. "z": 0
  1553. },
  1554. "_skewX": 0,
  1555. "_skewY": 0,
  1556. "_is3DNode": false,
  1557. "_groupIndex": 0,
  1558. "groupIndex": 0,
  1559. "_id": ""
  1560. },
  1561. {
  1562. "__type__": "cc.Sprite",
  1563. "_name": "",
  1564. "_objFlags": 0,
  1565. "node": {
  1566. "__id__": 40
  1567. },
  1568. "_enabled": true,
  1569. "_materials": [
  1570. {
  1571. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1572. }
  1573. ],
  1574. "_srcBlendFactor": 770,
  1575. "_dstBlendFactor": 771,
  1576. "_spriteFrame": {
  1577. "__uuid__": "4e0e6b70-2dd0-4222-a054-cd30b98b52f2"
  1578. },
  1579. "_type": 0,
  1580. "_sizeMode": 1,
  1581. "_fillType": 0,
  1582. "_fillCenter": {
  1583. "__type__": "cc.Vec2",
  1584. "x": 0,
  1585. "y": 0
  1586. },
  1587. "_fillStart": 0,
  1588. "_fillRange": 0,
  1589. "_isTrimmedMode": true,
  1590. "_atlas": null,
  1591. "_id": ""
  1592. },
  1593. {
  1594. "__type__": "cc.PrefabInfo",
  1595. "root": {
  1596. "__id__": 1
  1597. },
  1598. "asset": {
  1599. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  1600. },
  1601. "fileId": "6eE8mavS5LD6EnGSe1p0N7",
  1602. "sync": false
  1603. },
  1604. {
  1605. "__type__": "cc.Node",
  1606. "_name": "jbjl",
  1607. "_objFlags": 0,
  1608. "_parent": {
  1609. "__id__": 1
  1610. },
  1611. "_children": [],
  1612. "_active": true,
  1613. "_components": [
  1614. {
  1615. "__id__": 44
  1616. }
  1617. ],
  1618. "_prefab": {
  1619. "__id__": 45
  1620. },
  1621. "_opacity": 255,
  1622. "_color": {
  1623. "__type__": "cc.Color",
  1624. "r": 255,
  1625. "g": 255,
  1626. "b": 255,
  1627. "a": 255
  1628. },
  1629. "_contentSize": {
  1630. "__type__": "cc.Size",
  1631. "width": 263,
  1632. "height": 504
  1633. },
  1634. "_anchorPoint": {
  1635. "__type__": "cc.Vec2",
  1636. "x": 0.5,
  1637. "y": 0.5
  1638. },
  1639. "_trs": {
  1640. "__type__": "TypedArray",
  1641. "ctor": "Float64Array",
  1642. "array": [
  1643. 452.206,
  1644. 4.398,
  1645. 0,
  1646. 0,
  1647. 0,
  1648. 0,
  1649. 1,
  1650. 1,
  1651. 1,
  1652. 1
  1653. ]
  1654. },
  1655. "_eulerAngles": {
  1656. "__type__": "cc.Vec3",
  1657. "x": 0,
  1658. "y": 0,
  1659. "z": 0
  1660. },
  1661. "_skewX": 0,
  1662. "_skewY": 0,
  1663. "_is3DNode": false,
  1664. "_groupIndex": 0,
  1665. "groupIndex": 0,
  1666. "_id": ""
  1667. },
  1668. {
  1669. "__type__": "cc.Sprite",
  1670. "_name": "",
  1671. "_objFlags": 0,
  1672. "node": {
  1673. "__id__": 43
  1674. },
  1675. "_enabled": true,
  1676. "_materials": [
  1677. {
  1678. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1679. }
  1680. ],
  1681. "_srcBlendFactor": 770,
  1682. "_dstBlendFactor": 771,
  1683. "_spriteFrame": {
  1684. "__uuid__": "35c99549-4bbb-4432-b6ac-c9f96f38826b"
  1685. },
  1686. "_type": 0,
  1687. "_sizeMode": 1,
  1688. "_fillType": 0,
  1689. "_fillCenter": {
  1690. "__type__": "cc.Vec2",
  1691. "x": 0,
  1692. "y": 0
  1693. },
  1694. "_fillStart": 0,
  1695. "_fillRange": 0,
  1696. "_isTrimmedMode": true,
  1697. "_atlas": null,
  1698. "_id": ""
  1699. },
  1700. {
  1701. "__type__": "cc.PrefabInfo",
  1702. "root": {
  1703. "__id__": 1
  1704. },
  1705. "asset": {
  1706. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  1707. },
  1708. "fileId": "2fhN0b3OhGdKSIDwHzwI4X",
  1709. "sync": false
  1710. },
  1711. {
  1712. "__type__": "cc.Node",
  1713. "_name": "jindutiao2",
  1714. "_objFlags": 0,
  1715. "_parent": {
  1716. "__id__": 1
  1717. },
  1718. "_children": [
  1719. {
  1720. "__id__": 47
  1721. }
  1722. ],
  1723. "_active": true,
  1724. "_components": [
  1725. {
  1726. "__id__": 50
  1727. }
  1728. ],
  1729. "_prefab": {
  1730. "__id__": 51
  1731. },
  1732. "_opacity": 255,
  1733. "_color": {
  1734. "__type__": "cc.Color",
  1735. "r": 255,
  1736. "g": 255,
  1737. "b": 255,
  1738. "a": 255
  1739. },
  1740. "_contentSize": {
  1741. "__type__": "cc.Size",
  1742. "width": 438,
  1743. "height": 26
  1744. },
  1745. "_anchorPoint": {
  1746. "__type__": "cc.Vec2",
  1747. "x": 0.5,
  1748. "y": 0.5
  1749. },
  1750. "_trs": {
  1751. "__type__": "TypedArray",
  1752. "ctor": "Float64Array",
  1753. "array": [
  1754. 21.186,
  1755. -173.698,
  1756. 0,
  1757. 0,
  1758. 0,
  1759. 0,
  1760. 1,
  1761. 1,
  1762. 1,
  1763. 1
  1764. ]
  1765. },
  1766. "_eulerAngles": {
  1767. "__type__": "cc.Vec3",
  1768. "x": 0,
  1769. "y": 0,
  1770. "z": 0
  1771. },
  1772. "_skewX": 0,
  1773. "_skewY": 0,
  1774. "_is3DNode": false,
  1775. "_groupIndex": 0,
  1776. "groupIndex": 0,
  1777. "_id": ""
  1778. },
  1779. {
  1780. "__type__": "cc.Node",
  1781. "_name": "nodeProgress",
  1782. "_objFlags": 0,
  1783. "_parent": {
  1784. "__id__": 46
  1785. },
  1786. "_children": [],
  1787. "_active": true,
  1788. "_components": [
  1789. {
  1790. "__id__": 48
  1791. }
  1792. ],
  1793. "_prefab": {
  1794. "__id__": 49
  1795. },
  1796. "_opacity": 255,
  1797. "_color": {
  1798. "__type__": "cc.Color",
  1799. "r": 255,
  1800. "g": 255,
  1801. "b": 255,
  1802. "a": 255
  1803. },
  1804. "_contentSize": {
  1805. "__type__": "cc.Size",
  1806. "width": 438,
  1807. "height": 26
  1808. },
  1809. "_anchorPoint": {
  1810. "__type__": "cc.Vec2",
  1811. "x": 0.5,
  1812. "y": 0.5
  1813. },
  1814. "_trs": {
  1815. "__type__": "TypedArray",
  1816. "ctor": "Float64Array",
  1817. "array": [
  1818. 0,
  1819. 0,
  1820. 0,
  1821. 0,
  1822. 0,
  1823. 0,
  1824. 1,
  1825. 1,
  1826. 1,
  1827. 1
  1828. ]
  1829. },
  1830. "_eulerAngles": {
  1831. "__type__": "cc.Vec3",
  1832. "x": 0,
  1833. "y": 0,
  1834. "z": 0
  1835. },
  1836. "_skewX": 0,
  1837. "_skewY": 0,
  1838. "_is3DNode": false,
  1839. "_groupIndex": 0,
  1840. "groupIndex": 0,
  1841. "_id": ""
  1842. },
  1843. {
  1844. "__type__": "cc.Sprite",
  1845. "_name": "",
  1846. "_objFlags": 0,
  1847. "node": {
  1848. "__id__": 47
  1849. },
  1850. "_enabled": true,
  1851. "_materials": [
  1852. {
  1853. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1854. }
  1855. ],
  1856. "_srcBlendFactor": 770,
  1857. "_dstBlendFactor": 771,
  1858. "_spriteFrame": {
  1859. "__uuid__": "dbc6f124-9a43-4e72-b2ae-339b2fe02394"
  1860. },
  1861. "_type": 3,
  1862. "_sizeMode": 1,
  1863. "_fillType": 0,
  1864. "_fillCenter": {
  1865. "__type__": "cc.Vec2",
  1866. "x": 0,
  1867. "y": 0
  1868. },
  1869. "_fillStart": 0,
  1870. "_fillRange": 1,
  1871. "_isTrimmedMode": true,
  1872. "_atlas": null,
  1873. "_id": ""
  1874. },
  1875. {
  1876. "__type__": "cc.PrefabInfo",
  1877. "root": {
  1878. "__id__": 1
  1879. },
  1880. "asset": {
  1881. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  1882. },
  1883. "fileId": "4ei/5heMBAqLR3WyvtdYYe",
  1884. "sync": false
  1885. },
  1886. {
  1887. "__type__": "cc.Sprite",
  1888. "_name": "",
  1889. "_objFlags": 0,
  1890. "node": {
  1891. "__id__": 46
  1892. },
  1893. "_enabled": true,
  1894. "_materials": [
  1895. {
  1896. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1897. }
  1898. ],
  1899. "_srcBlendFactor": 770,
  1900. "_dstBlendFactor": 771,
  1901. "_spriteFrame": {
  1902. "__uuid__": "a206fe99-3bad-4691-aac9-d7e6fb54aba5"
  1903. },
  1904. "_type": 0,
  1905. "_sizeMode": 1,
  1906. "_fillType": 0,
  1907. "_fillCenter": {
  1908. "__type__": "cc.Vec2",
  1909. "x": 0,
  1910. "y": 0
  1911. },
  1912. "_fillStart": 0,
  1913. "_fillRange": 0,
  1914. "_isTrimmedMode": true,
  1915. "_atlas": null,
  1916. "_id": ""
  1917. },
  1918. {
  1919. "__type__": "cc.PrefabInfo",
  1920. "root": {
  1921. "__id__": 1
  1922. },
  1923. "asset": {
  1924. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  1925. },
  1926. "fileId": "d8iTR+FMJGM6h9gZbJaPZy",
  1927. "sync": false
  1928. },
  1929. {
  1930. "__type__": "cc.Widget",
  1931. "_name": "",
  1932. "_objFlags": 0,
  1933. "node": {
  1934. "__id__": 1
  1935. },
  1936. "_enabled": true,
  1937. "alignMode": 1,
  1938. "_target": null,
  1939. "_alignFlags": 45,
  1940. "_left": 0,
  1941. "_right": 0,
  1942. "_top": 0,
  1943. "_bottom": 0,
  1944. "_verticalCenter": 0,
  1945. "_horizontalCenter": 0,
  1946. "_isAbsLeft": true,
  1947. "_isAbsRight": true,
  1948. "_isAbsTop": true,
  1949. "_isAbsBottom": true,
  1950. "_isAbsHorizontalCenter": true,
  1951. "_isAbsVerticalCenter": true,
  1952. "_originalWidth": 0,
  1953. "_originalHeight": 0,
  1954. "_id": ""
  1955. },
  1956. {
  1957. "__type__": "f43cer5fuRCabywsDn5tpnk",
  1958. "_name": "",
  1959. "_objFlags": 0,
  1960. "node": {
  1961. "__id__": 1
  1962. },
  1963. "_enabled": true,
  1964. "heroPrefab": {
  1965. "__uuid__": "d715679c-13d7-40c2-8aa7-566c013fe813"
  1966. },
  1967. "zombiePrefab": {
  1968. "__uuid__": "3faaeccf-1962-4e28-8cb5-df77484db5a0"
  1969. },
  1970. "bulletPrefab": {
  1971. "__uuid__": "7821bdfd-79fd-40df-9ed4-ebe893d73341"
  1972. },
  1973. "_id": ""
  1974. },
  1975. {
  1976. "__type__": "cc.PrefabInfo",
  1977. "root": {
  1978. "__id__": 1
  1979. },
  1980. "asset": {
  1981. "__uuid__": "bd7f69b7-dde8-4071-9490-69b77889cd57"
  1982. },
  1983. "fileId": "",
  1984. "sync": false
  1985. }
  1986. ]