aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/PhysicsSystem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/system/PhysicsSystem.cpp')
-rw-r--r--src/crepe/system/PhysicsSystem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/system/PhysicsSystem.cpp b/src/crepe/system/PhysicsSystem.cpp
index cea8062..dd80312 100644
--- a/src/crepe/system/PhysicsSystem.cpp
+++ b/src/crepe/system/PhysicsSystem.cpp
@@ -23,12 +23,12 @@ void PhysicsSystem::update() {
switch (rigidbody.body_type) {
case BodyType::DYNAMIC:
for (Transform & transform : transforms) {
- if (transform.game_object_id == rigidbody.game_object_id) {
+ if (transform.GAME_OBJECT_ID == rigidbody.GAME_OBJECT_ID) {
rigidbody.velocity_x = 0;
rigidbody.velocity_y = 0;
std::vector<std::reference_wrapper<Force>> forces
= mgr.get_components_by_id<Force>(
- rigidbody.game_object_id);
+ rigidbody.GAME_OBJECT_ID);
rigidbody.velocity_y
+= rigidbody.gravity_scale * 1 * rigidbody.mass;