You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-31 18:41:20 +00:00
Merge pull request #12413 from Adinimys/master
Fixes infinite loop in NavPolygonInstance warnings
This commit is contained in:
@@ -452,7 +452,7 @@ String NavigationPolygonInstance::get_configuration_warning() const {
|
||||
return String();
|
||||
}
|
||||
|
||||
c = Object::cast_to<Node2D>(get_parent());
|
||||
c = Object::cast_to<Node2D>(c->get_parent());
|
||||
}
|
||||
|
||||
return TTR("NavigationPolygonInstance must be a child or grandchild to a Navigation2D node. It only provides navigation data.");
|
||||
|
||||
Reference in New Issue
Block a user