diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-07-08 23:51:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-08 23:51:53 +0200 |
commit | d23fc16b2d91fec1b6c9d97c4429bdbd09d4eb00 (patch) | |
tree | 7b83394ae29c9e2d195892aece1a26f451376e21 /servers/physics/physics_server_sw.h | |
parent | e577c5b0705168177943fcdf9a0b66c1f8f864f3 (diff) | |
parent | 2fd204c35e6883d36d4c15adbe6725ffffd73c6f (diff) |
Merge pull request #9564 from Noshyaar/pr-threshold
Refactor 'treshold' to 'threshold'
Diffstat (limited to 'servers/physics/physics_server_sw.h')
-rw-r--r-- | servers/physics/physics_server_sw.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/servers/physics/physics_server_sw.h b/servers/physics/physics_server_sw.h index 559e9aeb51..a0a1bcf963 100644 --- a/servers/physics/physics_server_sw.h +++ b/servers/physics/physics_server_sw.h @@ -200,8 +200,8 @@ public: virtual void body_remove_collision_exception(RID p_body, RID p_body_b); virtual void body_get_collision_exceptions(RID p_body, List<RID> *p_exceptions); - virtual void body_set_contacts_reported_depth_treshold(RID p_body, real_t p_treshold); - virtual real_t body_get_contacts_reported_depth_treshold(RID p_body) const; + virtual void body_set_contacts_reported_depth_threshold(RID p_body, real_t p_threshold); + virtual real_t body_get_contacts_reported_depth_threshold(RID p_body) const; virtual void body_set_omit_force_integration(RID p_body, bool p_omit); virtual bool body_is_omitting_force_integration(RID p_body) const; |