Skip to content

Commit d324e03

Browse files
committed
Remove debug prints in atlas
1 parent b28537f commit d324e03

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

arcade/texture_atlas/atlas_default.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ def resize(self, size: tuple[int, int], force=False) -> None:
667667
force:
668668
Force a resize even if the size is the same
669669
"""
670-
print("Resizing atlas from", self._size, "to", size)
670+
# print("Resizing atlas from", self._size, "to", size)
671671

672672
# Only resize if the size actually changed
673673
if size == self._size and not force:
@@ -746,7 +746,7 @@ def rebuild(self) -> None:
746746
This method also tries to organize the textures more efficiently ordering them by size.
747747
The texture ids will persist so the sprite list doesn't need to be rebuilt.
748748
"""
749-
print("Rebuilding atlas")
749+
# print("Rebuilding atlas")
750750

751751
# Hold a reference to the old textures
752752
textures = self.textures

0 commit comments

Comments
 (0)