dedalus 0.2.9 → 0.2.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 32f5205692e5560aaa3a6c83428136ede6e28a30
4
- data.tar.gz: c30df25a551b3ea79c64a9a4f9d5c65218bf7cfd
3
+ metadata.gz: ff3dc108b650336c0bd4cb2c0e39c18b9d55135d
4
+ data.tar.gz: ae4f6064a350a89baf66eb46c11290b348d0951c
5
5
  SHA512:
6
- metadata.gz: 63566983415d655bbc117edeb33128cff044bb60cef0c626d400eb37f8b76bc167588dbd418fd8d6df4df26ee6c4401506bee658125c2dabdf00935cc798a6f0
7
- data.tar.gz: cbb4ebfff7e5bf804c1bfa8bd95895c876db1e8484c1b9b6eb45affe00fbd4da5ef4f2656c2ac2503417d97c215a036fbde72f4fedee401865d57653c7994500
6
+ metadata.gz: 73eda2ecb108ba02c198a9af302914f9a1811d2d1399251ad0080642ad5f7f7669bd217c0adaec17ec242e8be2675eade51ce342257126352a8b768acfa0e3b8
7
+ data.tar.gz: 88e7eb6fef2f272dd7d4049098b73cc4a34f3da2e6309ea6dd260e707d4827d24bd22ca13e6987a57b9560a6aeb5524035c38200081bc6f8c589309e495d94b4
@@ -11,9 +11,9 @@ module Dedalus
11
11
  ox,oy = *offset
12
12
 
13
13
  if overlay_color
14
- asset.draw(x + padding + ox, y + padding + oy, z_order, x_scale, y_scale, overlay_gosu_color)
14
+ asset.draw(x + padding + ox*scale, y + padding + oy*scale, z_order, x_scale, y_scale, overlay_gosu_color)
15
15
  else
16
- asset.draw(x + padding + ox, y + padding + oy, z_order, x_scale, y_scale) #, overlay_color)
16
+ asset.draw(x + padding + ox*scale, y + padding + oy*scale, z_order, x_scale, y_scale) #, overlay_color)
17
17
  end
18
18
  end
19
19
 
@@ -12,7 +12,9 @@ module Dedalus
12
12
  path: "media/images/tiles.png",
13
13
  frame: 3,
14
14
  width: 64,
15
- height: 64
15
+ height: 64,
16
+ invert_x: true,
17
+ scale: 2.5
16
18
  }
17
19
  end
18
20
 
@@ -1,4 +1,4 @@
1
1
  module Dedalus
2
2
  # dedalus version
3
- VERSION = "0.2.9"
3
+ VERSION = "0.2.10"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dedalus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.9
4
+ version: 0.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joseph Weissman