mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 17:35:08 +02:00
fix syntax error typo
This commit is contained in:
parent
612e9649d8
commit
ccf14b2e50
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ void ObjectActionOffset::updateActionWorker(btScalar deltaTimeStep) {
|
|||
if (blend > 1.0f) {
|
||||
blend = 1.0f;
|
||||
}
|
||||
rigidBody->setLinearVelocity(glmToBullet(currentVelocity + blend * (targetVelocity - parallelVelocity));
|
||||
rigidBody->setLinearVelocity(glmToBullet(currentVelocity + blend * (targetVelocity - parallelVelocity)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue