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

bullet: Sync with upstream 3.25

Remove upstreamed patch.
This commit is contained in:
Rémi Verschelde
2023-05-22 15:10:36 +02:00
parent 1538b870f1
commit b958e8a236
12 changed files with 125 additions and 97 deletions

View File

@@ -678,7 +678,9 @@ HullError HullLibrary::CreateConvexHull(const HullDesc &desc, // describes the
if (vcount < 8) vcount = 8;
btAlignedObjectArray<btVector3> vertexSource;
vertexSource.resize(static_cast<int>(vcount));
btVector3 zero;
zero.setZero();
vertexSource.resize(static_cast<int>(vcount), zero);
btVector3 scale;