Browse Source

Merge pull request #29557 from qarmin/fix_2d_line_crash

Fix 2D Line crash
Gilles Roudière 6 years ago
parent
commit
693582f008
1 changed files with 1 additions and 0 deletions
  1. 1 0
      scene/2d/line_2d.cpp

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

@@ -105,6 +105,7 @@ void Line2D::set_point_position(int i, Vector2 pos) {
 }
 
 Vector2 Line2D::get_point_position(int i) const {
+	ERR_FAIL_INDEX_V(i, _points.size(), Vector2())
 	return _points.get(i);
 }