Browse Source

Line2D::set_point_position Fail if passed index is out of bounds

(cherry picked from commit df49fdd189185c034ccb573a9aed0bd1c55c08d8)
kleonc 4 years ago
parent
commit
bd7c24371d
1 changed files with 1 additions and 0 deletions
  1. 1 0
      scene/2d/line_2d.cpp

+ 1 - 0
scene/2d/line_2d.cpp

@@ -123,6 +123,7 @@ PoolVector<Vector2> Line2D::get_points() const {
 }
 }
 
 
 void Line2D::set_point_position(int i, Vector2 p_pos) {
 void Line2D::set_point_position(int i, Vector2 p_pos) {
+	ERR_FAIL_INDEX(i, _points.size());
 	_points.set(i, p_pos);
 	_points.set(i, p_pos);
 	update();
 	update();
 }
 }