fix all the tests

This commit is contained in:
Waylon Walker 2023-06-21 10:29:50 -05:00
parent 7db07c7d35
commit a7e6f2c4e5
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
9 changed files with 128 additions and 137 deletions

View file

@ -1,23 +1,25 @@
from learn_sql_model.console import console
from learn_sql_model.optional import _optional_import_
pygame = _optional_import_("pygame", group="game")
class Light:
def __init__(self, game):
self.game = game
def render(self):
mx, my = pygame.mouse.get_pos()
v = pygame.math.Vector2(mx - self.game.player.hero.x, my - self.game.player.hero.y)
v = pygame.math.Vector2(
mx - self.game.player.hero.x, my - self.game.player.hero.y
)
v.scale_to_length(1000)
for r in range(0, 360):
_v = v.rotate(r)
pygame.draw.line(
self.game.screen,
(255,250,205),
(255, 250, 205),
(self.game.player.hero.x, self.game.player.hero.y),
(self.game.player.hero.x + _v.x, self.game.player.hero.y + _v.y),
50
)
50,
)