Remove the unnecessary sync() and the restrictions it imposes on 3D Physics.

This commit is contained in:
Marcel Admiraal
2020-09-18 10:07:00 +01:00
parent 6f4384f206
commit 41209efa7f
9 changed files with 4 additions and 19 deletions

View File

@@ -1553,9 +1553,6 @@ void BulletPhysicsServer3D::step(float p_deltaTime) {
}
}
void BulletPhysicsServer3D::sync() {
}
void BulletPhysicsServer3D::flush_queries() {
if (!active) {
return;

View File

@@ -397,7 +397,6 @@ public:
virtual void init() override;
virtual void step(float p_deltaTime) override;
virtual void sync() override;
virtual void flush_queries() override;
virtual void finish() override;