gosu_texture_packer 0.1.7 → 0.1.8

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: 554cd404394b1a635a8a07c2bf3f137df8c24b3a
4
- data.tar.gz: 1848bcc35a5beb2fb45b920a7d7dc86a9bd7e78b
3
+ metadata.gz: 3a5896df0f377ad87db11aa5251dd449456bae79
4
+ data.tar.gz: 2858b1f7645b951f550e3e6349c1b1c899cba2f0
5
5
  SHA512:
6
- metadata.gz: 457fc0eb442af931144056a048b40781c32da9ce5bbb4c0ebf613a9f19f8c416a53b88727bee304dad31c2f511895916ae647f2d23a0df0e2a5d6ea9ffed80e8
7
- data.tar.gz: fbcfdca4cbcadc66606d0524a7994d73446f4e48fc1065b23801f25fddbe3ba8f5b5bc6b688b6943d57d83a2c7a4ef794a6405fc3f5809fcc91c290ad2dff150
6
+ metadata.gz: a0424ed0f0e54fdb34466e43b7ab4e1770d7c6414637ce772249aa08ecce8df7851cd2fe73866ab1a649bfe49109de0172e101815326ee3ac4c7c4fa73ff6dd7
7
+ data.tar.gz: 2d9150b8b369d89652600ea4beaa7fe21a9a70a2d7706c5900a7fb08ccd4edd967decbe1d9515c64c50ce01f07bc84b0d5504ff33b6938551216efffbd6631d4
@@ -14,7 +14,7 @@ class GameWindow < Gosu::Window
14
14
  super(WIDTH, HEIGHT, false)
15
15
  self.caption = 'Click space to toggle random redraws'
16
16
  json_path = File.join(ROOT_DIR, 'spec', 'files', 'ground.json')
17
- @tileset = Gosu::TexturePacker.load_json(self, json_path, :precise)
17
+ @tileset = Gosu::TexturePacker.load_json(json_path, :precise)
18
18
  end
19
19
 
20
20
  def needs_cursor?
@@ -11,7 +11,7 @@ class GameWindow < Gosu::Window
11
11
  super(640, 480, false)
12
12
  self.caption = 'Click screen with mouse to draw textures'
13
13
  @tileset = Gosu::TexturePacker.load_json(
14
- self, File.join(ROOT_DIR, 'spec', 'files', '_UI.json'))
14
+ File.join(ROOT_DIR, 'spec', 'files', '_UI.json'))
15
15
  @drawing = {}
16
16
  end
17
17
 
@@ -1,5 +1,5 @@
1
1
  module Gosu
2
2
  module TexturePacker
3
- VERSION = '0.1.7'
3
+ VERSION = '0.1.8'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gosu_texture_packer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tomas Varaneckas