You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Rename remove() to remove_at() when removing by index
This commit is contained in:
committed by
Aaron Record
parent
5efe80f308
commit
e078f970db
@@ -1688,7 +1688,7 @@ real_t ConvexHullInternal::shrink(real_t p_amount, real_t p_clamp_amount) {
|
||||
|
||||
while (stack.size() > 0) {
|
||||
Vertex *v = stack[stack.size() - 1];
|
||||
stack.remove(stack.size() - 1);
|
||||
stack.remove_at(stack.size() - 1);
|
||||
Edge *e = v->edges;
|
||||
if (e) {
|
||||
do {
|
||||
|
||||
Reference in New Issue
Block a user