diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2024-12-12 18:24:26 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2024-12-12 18:24:26 +0100 |
commit | 962c987adff029dc2cbc60b0f1bb9b21b1d416f7 (patch) | |
tree | 2738ca92360631efadd99259200feb6577cdfe9c /src/crepe/system/AISystem.cpp | |
parent | 1e42d6669b462a3d1490788d3b20141d15c881db (diff) | |
parent | 15bb400deafa1ea4fea1ff11e835f103fa82090f (diff) |
Merge branch 'jaro/physics-system-improvement' of github.com:lonkaars/crepe into jaro/particle-system-improvement
Diffstat (limited to 'src/crepe/system/AISystem.cpp')
-rw-r--r-- | src/crepe/system/AISystem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/system/AISystem.cpp b/src/crepe/system/AISystem.cpp index 6578ecb..e9d8fa7 100644 --- a/src/crepe/system/AISystem.cpp +++ b/src/crepe/system/AISystem.cpp @@ -16,7 +16,7 @@ void AISystem::update() { LoopTimerManager & loop_timer = mediator.loop_timer; RefVector<AI> ai_components = mgr.get_components_by_type<AI>(); - duration_t dt = loop_timer.get_scaled_fixed_delta_time(); + float dt = loop_timer.get_scaled_fixed_delta_time(); // Loop through all AI components for (AI & ai : ai_components) { @@ -43,7 +43,7 @@ void AISystem::update() { // Calculate the acceleration (using the above calculated force) vec2 acceleration = force / rigidbody.data.mass; // Finally, update Rigidbody's velocity - rigidbody.data.linear_velocity += acceleration * duration<float>(dt).count(); + rigidbody.data.linear_velocity += acceleration * dt; } } |