1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +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

@@ -2902,7 +2902,7 @@ Vector<RID> VisualServerRaster::instances_cull_aabb(const AABB& p_aabb, RID p_sc
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++) {