Skip to content
Snippets Groups Projects
Commit deb9bc0b authored by Jantz's avatar Jantz
Browse files

Removed debug print

parent e519e1c0
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,6 @@ class Enemy:
for i in range(len(path_lengths)):
if self.path_position < (current_path_length + path_lengths[i]) / full_path_length:
segment_position = (self.path_position * full_path_length - current_path_length) / path_lengths[i]
print(i, segment_position)
return i, segment_position
current_path_length += path_lengths[i]
if current_path_length >= full_path_length:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment