diff options
author | Ricardo Buring <ricardo.buring@gmail.com> | 2023-01-10 23:28:02 +0100 |
---|---|---|
committer | Ricardo Buring <ricardo.buring@gmail.com> | 2023-01-10 23:28:02 +0100 |
commit | 3efa10554824d2e3af797061b04e0653cd463292 (patch) | |
tree | da42b7aec8dc1e401d7efa2ce7c4b4093cc086a5 /servers/physics_server_2d.h | |
parent | 91713ced81792b10fdc9367b7f355738e5d52777 (diff) |
Add get_contact_impulse method to PhysicsDirectBodyState2D
This makes it consistent with 3D.
Diffstat (limited to 'servers/physics_server_2d.h')
-rw-r--r-- | servers/physics_server_2d.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/servers/physics_server_2d.h b/servers/physics_server_2d.h index aac4d9d69e..836ab5bd76 100644 --- a/servers/physics_server_2d.h +++ b/servers/physics_server_2d.h @@ -99,6 +99,7 @@ public: virtual Object *get_contact_collider_object(int p_contact_idx) const; virtual int get_contact_collider_shape(int p_contact_idx) const = 0; virtual Vector2 get_contact_collider_velocity_at_position(int p_contact_idx) const = 0; + virtual Vector2 get_contact_impulse(int p_contact_idx) const = 0; virtual real_t get_step() const = 0; virtual void integrate_forces(); |