mirror of https://github.com/axmolengine/axmol.git
Removed PhysicsBody::update from PhysicsWorld
This commit is contained in:
parent
f76b941415
commit
4f89828625
|
@ -826,10 +826,6 @@ void PhysicsWorld::update(float delta, bool userCall/* = false*/)
|
||||||
if (userCall)
|
if (userCall)
|
||||||
{
|
{
|
||||||
cpSpaceStep(_cpSpace, delta);
|
cpSpaceStep(_cpSpace, delta);
|
||||||
for (auto& body : _bodies)
|
|
||||||
{
|
|
||||||
body->update(delta);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -840,10 +836,6 @@ void PhysicsWorld::update(float delta, bool userCall/* = false*/)
|
||||||
for (int i = 0; i < _substeps; ++i)
|
for (int i = 0; i < _substeps; ++i)
|
||||||
{
|
{
|
||||||
cpSpaceStep(_cpSpace, dt);
|
cpSpaceStep(_cpSpace, dt);
|
||||||
for (auto& body : _bodies)
|
|
||||||
{
|
|
||||||
body->update(dt);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
_updateRateCount = 0;
|
_updateRateCount = 0;
|
||||||
_updateTime = 0.0f;
|
_updateTime = 0.0f;
|
||||||
|
|
Loading…
Reference in New Issue