diff options
author | Paolo Perkovic <paolo.perkovic@gmail.com> | 2018-02-01 09:57:10 +0100 |
---|---|---|
committer | Paolo Perkovic <paolo.perkovic@gmail.com> | 2018-02-01 16:47:20 +0100 |
commit | 08d4bfacafa8abe435d51a6afecb276030a23280 (patch) | |
tree | e0d37560439f599958a99dd191b2802039591956 /modules/bullet/rigid_body_bullet.h | |
parent | 2459eebc1d0d679efb546aa5a95ddd493290a7aa (diff) | |
download | redot-engine-08d4bfacafa8abe435d51a6afecb276030a23280.tar.gz |
Fix inconsistencies and typos in argument names
Diffstat (limited to 'modules/bullet/rigid_body_bullet.h')
-rw-r--r-- | modules/bullet/rigid_body_bullet.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/bullet/rigid_body_bullet.h b/modules/bullet/rigid_body_bullet.h index aff6056ad9..c4a9676bdd 100644 --- a/modules/bullet/rigid_body_bullet.h +++ b/modules/bullet/rigid_body_bullet.h @@ -262,12 +262,12 @@ public: Variant get_state(PhysicsServer::BodyState p_state) const; void apply_impulse(const Vector3 &p_pos, const Vector3 &p_impulse); - void apply_central_impulse(const Vector3 &p_force); + void apply_central_impulse(const Vector3 &p_impulse); void apply_torque_impulse(const Vector3 &p_impulse); void apply_force(const Vector3 &p_force, const Vector3 &p_pos); void apply_central_force(const Vector3 &p_force); - void apply_torque(const Vector3 &p_force); + void apply_torque(const Vector3 &p_torque); void set_applied_force(const Vector3 &p_force); Vector3 get_applied_force() const; |