From 29438ee39579194333c3f211b3df07c7d378a957 Mon Sep 17 00:00:00 2001 From: Nathan Lovato Date: Thu, 27 Jan 2022 08:53:15 -0600 Subject: [PATCH] chore: remove incorrect lines in turtle --- game_demos/DrawingTurtle.gd | 2 -- 1 file changed, 2 deletions(-) diff --git a/game_demos/DrawingTurtle.gd b/game_demos/DrawingTurtle.gd index 8e68df43..3ab25c7c 100644 --- a/game_demos/DrawingTurtle.gd +++ b/game_demos/DrawingTurtle.gd @@ -210,8 +210,6 @@ class Polygon: new_points.push_back(point) line_2d.points = new_points _turtle_sprite.position = point + position - if point.is_equal_approx(_current_destination): - emit_signal("segment_end_reached") # Returns the local bounds of the polygon. That is to say, it only takes the # point into account in local space, but not the polygon's `position`.