basic player idle animation.

This commit is contained in:
Cameron Smart
2020-04-19 19:14:04 -07:00
parent 6146ee0fa2
commit 154a959e8a
42 changed files with 234 additions and 40 deletions

View File

@@ -154,7 +154,6 @@ class Level:
def rotate_level(self, times_rotated):
m = np.array(self.level)
print(m)
for i in range(0, times_rotated):
m = np.rot90(m)
self.level = m.tolist()