1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Complete NavigationMeshInstance rename

This commit is contained in:
lupoDharkael
2020-03-08 17:33:34 +01:00
parent 7579a792be
commit d63bf6dea5
3 changed files with 11 additions and 11 deletions

View File

@@ -84,13 +84,13 @@ void NavigationMeshEditor::_clear_pressed() {
}
}
void NavigationMeshEditor::edit(NavigationRegion *p_nav_mesh_instance) {
void NavigationMeshEditor::edit(NavigationRegion *p_nav_region) {
if (p_nav_mesh_instance == NULL || node == p_nav_mesh_instance) {
if (p_nav_region == NULL || node == p_nav_region) {
return;
}
node = p_nav_mesh_instance;
node = p_nav_region;
}
void NavigationMeshEditor::_bind_methods() {