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

Replace AABB has_no_volume with has_volume

Also replace has_no_surface with has_surface
This commit is contained in:
Aaron Franke
2022-08-14 21:48:13 -05:00
parent e7a0a97c0b
commit 817ae95667
8 changed files with 33 additions and 32 deletions

View File

@@ -1563,7 +1563,7 @@ void RendererSceneCull::_update_instance(Instance *p_instance) {
}
}
if (p_instance->aabb.has_no_surface()) {
if (!p_instance->aabb.has_surface()) {
return;
}