diff options
author | Viljami Ilola <+@hix.fi> | 2024-03-23 22:55:20 +0200 |
---|---|---|
committer | Viljami Ilola <+@hix.fi> | 2024-03-23 22:55:20 +0200 |
commit | eef859a2acfead581c4960c7a3bff466983b9b2b (patch) | |
tree | d511b9beb46a0ddc61703e5dca96cc5ad6b5cad2 /src/sliceitoff/text/text.py | |
parent | 98d91824cacec97c581ae0a4f1efd9fa3faa18ab (diff) |
effects
Diffstat (limited to 'src/sliceitoff/text/text.py')
-rw-r--r-- | src/sliceitoff/text/text.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sliceitoff/text/text.py b/src/sliceitoff/text/text.py index 9bb7c9a..424bbc2 100644 --- a/src/sliceitoff/text/text.py +++ b/src/sliceitoff/text/text.py @@ -23,8 +23,8 @@ class LetterSprite(pygame.sprite.Sprite): self.rect.w, self.rect.h) self.direction = ( - self.direction[0] * 1, - self.direction[1] * 1 + 0.5) + self.direction[0] * 0.95, + self.direction[1] * 0.95 + 0.3) class TextPage(pygame.sprite.Group): |