Able to draw colliders

This commit is contained in:
=
2026-03-12 14:35:10 -04:00
parent 6f1c50185a
commit 2414080c64
2 changed files with 3 additions and 1 deletions

View File

@@ -40,7 +40,7 @@ class Square:
def draw(self, screen: pg.Surface):
surface = pg.transform.rotate(self.surface, self.transform.global_degrees)
surface = pg.transform.rotate(self.surface, -self.transform.global_degrees)
screen.blit(surface, self.transform.global_position - pg.Vector2(self.side / 2.0, self.side / 2.0))
def main():