* enable collision 2d again on player start otherwise there is no collision in a re-play * remove monitoring line
@@ -323,7 +323,7 @@ the player when starting a new game.
func start(pos):
position = pos
show()
- monitoring = true
+ $CollisionShape2D.disabled = false
Enemy Scene
-----------