summaryrefslogtreecommitdiff
path: root/PressurePlate.py
diff options
context:
space:
mode:
authorJoel Kronqvist <joel.kronqvist@iki.fi>2025-11-03 00:43:42 +0200
committerJoel Kronqvist <joel.kronqvist@iki.fi>2025-11-03 00:43:42 +0200
commitef6abc27cec35e32acef66c5077ffcc6bedde983 (patch)
tree62a867394c9b5af5eeff4873e12f776f2ef6b41c /PressurePlate.py
parent1475dd4020ec24df8b29f5d90d89843b64f93f95 (diff)
downloadSnakePuzzle-ef6abc27cec35e32acef66c5077ffcc6bedde983.tar.gz
SnakePuzzle-ef6abc27cec35e32acef66c5077ffcc6bedde983.zip
feat: move on keydown alternative, som tutorial levels
Diffstat (limited to 'PressurePlate.py')
-rw-r--r--PressurePlate.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/PressurePlate.py b/PressurePlate.py
index fcebe4b..acc0d42 100644
--- a/PressurePlate.py
+++ b/PressurePlate.py
@@ -5,12 +5,10 @@ class PressurePlate:
def __init__(self, pos):
self.pos = pos
self._trails = []
- print(f"at pos {self.pos.toString()} trails: {self._trails}")
self._isActive = False
def addTrail(self, trail):
- print(f"plate at {self.pos.toString()} got trail: {trail}")
self._trails.append(trail)