Skip to content

Commit

Permalink
Merge #434
Browse files Browse the repository at this point in the history
434: Fixes asset strings in viztests/layering.py r=astronouth7303 a=pathunstrom



Co-authored-by: Piper Thunstrom <[email protected]>
  • Loading branch information
bors[bot] and pathunstrom authored Apr 18, 2020
2 parents 040cda3 + 3faa640 commit 6e6cafb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions viztests/layering.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


class Mover(ppb.BaseSprite):
image = ppb.Image("viztests/resources/mover.png")
image = ppb.Image("resources/mover.png")
position = ppb.Vector(0, -4)
velocity = ppb.Vector(0, 3)

Expand All @@ -21,12 +21,12 @@ def on_update(self, update: ppb.events.Update, signal):


class TravelOver(ppb.BaseSprite):
image = ppb.Image("viztests/resources/travel_over.png")
image = ppb.Image("resources/travel_over.png")
layer = -1


class TravelUnder(ppb.BaseSprite):
image = ppb.Image("viztests/resources/travel_under.png")
image = ppb.Image("resources/travel_under.png")
layer = 1


Expand Down

0 comments on commit 6e6cafb

Please sign in to comment.