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 +4 -4
- data/examples/random_map.rb +1 -1
- data/examples/tile_brush.rb +1 -1
- data/lib/gosu_texture_packer/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3a5896df0f377ad87db11aa5251dd449456bae79
|
|
4
|
+
data.tar.gz: 2858b1f7645b951f550e3e6349c1b1c899cba2f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a0424ed0f0e54fdb34466e43b7ab4e1770d7c6414637ce772249aa08ecce8df7851cd2fe73866ab1a649bfe49109de0172e101815326ee3ac4c7c4fa73ff6dd7
|
|
7
|
+
data.tar.gz: 2d9150b8b369d89652600ea4beaa7fe21a9a70a2d7706c5900a7fb08ccd4edd967decbe1d9515c64c50ce01f07bc84b0d5504ff33b6938551216efffbd6631d4
|
data/examples/random_map.rb
CHANGED
|
@@ -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(
|
|
17
|
+
@tileset = Gosu::TexturePacker.load_json(json_path, :precise)
|
|
18
18
|
end
|
|
19
19
|
|
|
20
20
|
def needs_cursor?
|
data/examples/tile_brush.rb
CHANGED
|
@@ -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
|
-
|
|
14
|
+
File.join(ROOT_DIR, 'spec', 'files', '_UI.json'))
|
|
15
15
|
@drawing = {}
|
|
16
16
|
end
|
|
17
17
|
|