You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 19:11:41 +00:00
Line2D::set_point_position Fail if passed index is out of bounds
This commit is contained in:
@@ -116,6 +116,7 @@ Vector<Vector2> Line2D::get_points() const {
|
||||
}
|
||||
|
||||
void Line2D::set_point_position(int i, Vector2 p_pos) {
|
||||
ERR_FAIL_INDEX(i, _points.size());
|
||||
_points.set(i, p_pos);
|
||||
update();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user