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

Rename cull_AABB to cull_aabb

Part of #8830.
This commit is contained in:
Rémi Verschelde
2017-08-16 17:00:07 +02:00
parent a8207b2dc7
commit 035d74f54a
4 changed files with 9 additions and 9 deletions

View File

@@ -910,7 +910,7 @@ Vector<ObjectID> VisualServerScene::instances_cull_aabb(const Rect3 &p_aabb, RID
int culled = 0;
Instance *cull[1024];
culled = scenario->octree.cull_AABB(p_aabb, cull, 1024);
culled = scenario->octree.cull_aabb(p_aabb, cull, 1024);
for (int i = 0; i < culled; i++) {