kolejna poprawa astara
This commit is contained in:
parent
c96e45bd08
commit
a373633571
@ -59,6 +59,7 @@ class Smieciarka(pygame.sprite.Sprite):
|
||||
def astar_move(self, obiekty):
|
||||
sciezka = astar.astar(obiekty, self.pozycja, (random.randrange(15), random.randrange(15)))
|
||||
print(sciezka)
|
||||
if sciezka:
|
||||
for koord in sciezka:
|
||||
if koord[0] == self.x - 1 and koord[1] == self.y:
|
||||
self.w_lewo()
|
||||
@ -68,7 +69,6 @@ class Smieciarka(pygame.sprite.Sprite):
|
||||
self.w_gore()
|
||||
elif koord[0] == self.x and koord[1] - 1 == self.y:
|
||||
self.w_dol()
|
||||
print("skonczylem")
|
||||
|
||||
def w_lewo(self):
|
||||
if self.x > 0:
|
||||
|
Loading…
Reference in New Issue
Block a user