tank_island 1.0.1 → 1.0.2

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: f7f4db78bb4791974cf2b3e63114a046b3660dea
4
- data.tar.gz: 591eba092af8da0f264338e26aa2d5f9c92e7989
3
+ metadata.gz: 72c36f7052f2d6f40435bac7cf0bfa43a50ffeee
4
+ data.tar.gz: 3818dc4a8bab3208dd7cacbe5574b09f3b387fcd
5
5
  SHA512:
6
- metadata.gz: b3608ac5a6785d75ac2701877a136184e32f75221b3ad99c5588cd9e2c36f71d087c4297725da44eb8026742584c1bcd20e6f3e58b9773e2319353993349d406
7
- data.tar.gz: d4a1cb8f99f60b91fd8fe0e0dfa75802af49f24724201f1818ff3278200a487a7b1509552f07971d749a825b48093613dbb53bf7b38a21ca6bd911be7afe41c2
6
+ metadata.gz: 80593f278486c76f5d3cab2062883e4839c6cbef18e98012c7911888bbfd9945fe06a5b8d42db9305b3ac54e908b252df4da3629f4381db4fb5e156258ce05ca
7
+ data.tar.gz: 33e47d138b76a088baf7ee24e323506ee20feaa9de8a3dc2858649d867f64767c61b5078351f532d5a231e2fb5c9a098e58e3a2fd88207f84f7b9020ed6f2f00
data/.gitignore CHANGED
@@ -12,3 +12,4 @@
12
12
  *.o
13
13
  *.a
14
14
  mkmf.log
15
+ *.gem
@@ -9,7 +9,7 @@ class BulletSounds
9
9
 
10
10
  def sound
11
11
  @@sound ||= StereoSample.new(
12
- $window, Utils.media_path('fire.mp3'))
12
+ $window, Utils.media_path('fire.ogg'))
13
13
  end
14
14
  end
15
15
  end
@@ -9,7 +9,7 @@ class ExplosionSounds
9
9
 
10
10
  def sound
11
11
  @@sound ||= StereoSample.new(
12
- $window, Utils.media_path('explosion.mp3'))
12
+ $window, Utils.media_path('explosion.ogg'))
13
13
  end
14
14
  end
15
15
  end
@@ -9,7 +9,7 @@ class PowerupSounds
9
9
 
10
10
  def sound
11
11
  @@sound ||= StereoSample.new(
12
- $window, Utils.media_path('powerup.mp3'))
12
+ $window, Utils.media_path('powerup.ogg'))
13
13
  end
14
14
  end
15
15
  end
@@ -33,7 +33,7 @@ class TankSounds < Component
33
33
 
34
34
  def driving_sound
35
35
  @@driving_sound ||= StereoSample.new(
36
- $window, Utils.media_path('tank_driving.mp3'))
36
+ $window, Utils.media_path('tank_driving.ogg'))
37
37
  end
38
38
 
39
39
  def crash_sound
@@ -21,7 +21,7 @@ class MenuState < GameState
21
21
 
22
22
  def music
23
23
  @@music ||= Gosu::Song.new(
24
- $window, Utils.media_path('menu_music.mp3'))
24
+ $window, Utils.media_path('menu_music.ogg'))
25
25
  end
26
26
 
27
27
  def update
@@ -24,7 +24,7 @@ class PauseState < GameState
24
24
 
25
25
  def music
26
26
  @@music ||= Gosu::Song.new(
27
- $window, Utils.media_path('menu_music.mp3'))
27
+ $window, Utils.media_path('menu_music.ogg'))
28
28
  end
29
29
 
30
30
  def draw
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "tank_island"
7
- spec.version = '1.0.1'
7
+ spec.version = '1.0.2'
8
8
  spec.authors = ["Tomas Varaneckas"]
9
9
  spec.email = ["tomas.varaneckas@gmail.com"]
10
10
  spec.summary = %q{Top down 2D shooter game that involves blowing up tanks}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tank_island
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tomas Varaneckas
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-29 00:00:00.000000000 Z
11
+ date: 2014-10-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -171,21 +171,21 @@ files:
171
171
  - media/decor.json
172
172
  - media/decor.png
173
173
  - media/decor.psd
174
- - media/explosion.mp3
174
+ - media/explosion.ogg
175
175
  - media/explosion.png
176
- - media/fire.mp3
176
+ - media/fire.ogg
177
177
  - media/ground.json
178
178
  - media/ground.png
179
179
  - media/ground_units.json
180
180
  - media/ground_units.png
181
- - media/menu_music.mp3
181
+ - media/menu_music.ogg
182
182
  - media/metal_interaction2.wav
183
183
  - media/names.txt
184
184
  - media/pickups.json
185
185
  - media/pickups.png
186
- - media/powerup.mp3
186
+ - media/powerup.ogg
187
187
  - media/respawn.wav
188
- - media/tank_driving.mp3
188
+ - media/tank_driving.ogg
189
189
  - media/top_secret.ttf
190
190
  - media/trees.png
191
191
  - media/trees_packed.json
Binary file
Binary file
Binary file
Binary file
Binary file