Merge pull request #23401 from lupoDharkael/null-curve

Fix crash adding point to a Curve2D from the editor
This commit is contained in:
Rémi Verschelde 2018-11-01 09:50:34 +01:00 committed by GitHub
commit 06ecdc1eba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -63,6 +63,10 @@ bool Path2D::_edit_use_rect() const {
bool Path2D::_edit_is_selected_on_click(const Point2 &p_point, double p_tolerance) const {
if (curve.is_null()) {
return false;
}
for (int i = 0; i < curve->get_point_count(); i++) {
Vector2 s[2];
s[0] = curve->get_point_position(i);