diff options
author | TestSubject06 <zzzaaccckk@yahoo.com> | 2024-07-03 08:53:29 -0700 |
---|---|---|
committer | TestSubject06 <zzzaaccckk@yahoo.com> | 2024-08-28 10:28:56 -0400 |
commit | b56a0370c4f480729d2428ce03a733fd21080207 (patch) | |
tree | 937038a40cd0bcf965ccebfbbae842b0dd664dc6 /scene/3d/physics/vehicle_body_3d.h | |
parent | 6a13fdcae3662975c101213d47a1eb3a7db63cb3 (diff) | |
download | redot-engine-b56a0370c4f480729d2428ce03a733fd21080207.tar.gz |
Expose contact point and contact normal on VehicleWheel3D
Appease doctool by switching the order of the documentation page entries.
Update doc/classes/VehicleWheel3D.xml
Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
Update doc/classes/VehicleWheel3D.xml
Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
Update doc/classes/VehicleWheel3D.xml
Thanks, didn't see the typo in the suggested change. Brain auto corrected it.
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
Diffstat (limited to 'scene/3d/physics/vehicle_body_3d.h')
-rw-r--r-- | scene/3d/physics/vehicle_body_3d.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/3d/physics/vehicle_body_3d.h b/scene/3d/physics/vehicle_body_3d.h index def9984440..24f120ed26 100644 --- a/scene/3d/physics/vehicle_body_3d.h +++ b/scene/3d/physics/vehicle_body_3d.h @@ -130,6 +130,10 @@ public: bool is_in_contact() const; + Vector3 get_contact_point() const; + + Vector3 get_contact_normal() const; + Node3D *get_contact_body() const; void set_roll_influence(real_t p_value); |