Fixed ApplyForce on rigidbody not working

This commit is contained in:
Antoine Pilote
2023-08-09 00:29:48 -04:00
parent 81026fb1af
commit 899e2dee86
8 changed files with 34 additions and 7 deletions

View File

@@ -192,7 +192,7 @@ class RigidBody {
}
AddForce(force) {
Scene.AddForce_(_entityId, force.x, force,y, force.z)
Scene.AddForce_(_entityId, force.x, force.y, force.z)
}
}