Merge pull request #17493 from Rubonnek/bullet-physics-server-leak
Fixed leak in BulletPhysicsServer
This commit is contained in:
commit
ea204628ad
|
@ -89,7 +89,9 @@ BulletPhysicsServer::BulletPhysicsServer() :
|
||||||
active(true),
|
active(true),
|
||||||
active_spaces_count(0) {}
|
active_spaces_count(0) {}
|
||||||
|
|
||||||
BulletPhysicsServer::~BulletPhysicsServer() {}
|
BulletPhysicsServer::~BulletPhysicsServer() {
|
||||||
|
bulletdelete(emptyShape);
|
||||||
|
}
|
||||||
|
|
||||||
RID BulletPhysicsServer::shape_create(ShapeType p_shape) {
|
RID BulletPhysicsServer::shape_create(ShapeType p_shape) {
|
||||||
ShapeBullet *shape = NULL;
|
ShapeBullet *shape = NULL;
|
||||||
|
|
Loading…
Reference in New Issue