Skip to content

Commit

Permalink
Update version number and put in work-around for AppVeyor's bad OpenG…
Browse files Browse the repository at this point in the history
…L support.
  • Loading branch information
Paul Vincent Craven committed May 2, 2016
1 parent 8918c35 commit e4ea049
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions arcade/sprite.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class SpriteList():
98
>>> arcade.set_background_color(arcade.color.WHITE)
>>> arcade.start_render()
>>> meteor_list.draw()
>>> meteor_list.draw(fast=False)
>>> arcade.finish_render()
>>> for meteor in meteor_list:
... meteor.kill()
Expand Down Expand Up @@ -145,7 +145,7 @@ def update_animation(self):
for sprite in self.sprite_list:
sprite.update_animation()

def draw(self):
def draw(self, fast=True):
"""
Call the draw() method on each sprite in the list.
"""
Expand All @@ -163,7 +163,6 @@ def draw(self):
self.vbo_dirty = False
# print("Upload new vbo data")

fast = True
if fast:
draw_rects(self.sprite_list, self.vertex_vbo_id,
self.texture_coord_vbo_id)
Expand Down
2 changes: 1 addition & 1 deletion arcade/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python

BUILD = 33
BUILD = 34
VERSION = "0.0.6"
RELEASE = VERSION + "a" + str(BUILD)
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

BUILD = 33
BUILD = 34
VERSION = "0.0.6"
RELEASE = VERSION + "a" + str(BUILD)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

BUILD = 33
BUILD = 34
VERSION = "0.0.6"
RELEASE = VERSION + "a" + str(BUILD)

Expand Down

0 comments on commit e4ea049

Please sign in to comment.