Skip to content

Commit

Permalink
Merge pull request #79 from pygame/fix-fast
Browse files Browse the repository at this point in the history
unisharklazer: Make flying things a bit slower
  • Loading branch information
illume authored Dec 3, 2023
2 parents de3c98a + bc76101 commit 6969054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stuntcat/scenes/unisharklazer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ def _angry_people(self, time_delta):
def _collide_flying_objects(self):
"""object physics"""
height = self.height
dt_scaled = self.dt_scaled
dt_scaled = self.dt_scaled * 0.25

# move fish and not fish
for fish in reversed(self.fish.sprites()):
Expand Down

0 comments on commit 6969054

Please sign in to comment.