summaryrefslogtreecommitdiffstats
path: root/scene/3d/physics
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-272-0/+120
|\
| * Add CollisionShape3D custom debug coloursJamie Greunbaum2024-11-262-0/+120
| | | | | | | | | | | | | | This allows changing the display colour of a CollisionShape3D node on a per-shape basis. It also adds the ability to display a solid coloured preview of a CollisionShape3D. Closes https://github.com/godotengine/godot-proposals/issues/906
* | Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-123-3/+3
|\|
| * Merge pull request #98951 from AThousandShips/fix_more_super_callThaddeus Crews2024-11-121-1/+1
| |\ | | | | | | | | | Fix a few more super calls in `get_configuration_warnings` methods
| | * Fix a few more super calls in `get_configuration_warnings` methodsA Thousand Ships2024-11-081-1/+1
| | | | | | | | | | | | A few missed last pass and one incorrect from that pass
| * | Core: Integrate `Ref::instantiate` where possibleThaddeus Crews2024-11-102-2/+2
| |/
* | Fix copyright headers referring to GodotSpartan3222024-10-2742-84/+84
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-1142-0/+84
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-252-0/+2
|
* Fix physics platform behaviour regressionlawnjelly2024-09-231-2/+7
| | | | | | Lifetime checks for stored `RIDs` for collision objects assumed they had valid `object_ids`. It turns out that some are not derived from `Object` and thus checking `ObjectDB` returns false for some valid `RIDs`. To account for this we only perform lifetime checks on valid `object_ids`.
* Add units to VehicleWheel3D suspension stiffness and dampingAaron Franke2024-09-171-3/+3
|
* Fix super call in various `get_configuration_warnings` methodsA Thousand Ships2024-09-054-4/+4
|
* Merge pull request #93900 from TestSubject06/10106/raycast_info_on_wheelsRémi Verschelde2024-08-292-0/+14
|\ | | | | | | Expose contact point and contact normal on VehicleWheel3D to scripting.
| * Expose contact point and contact normal on VehicleWheel3DTestSubject062024-08-282-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | Expose `ShapeCast{2D,3D}::get_collision_result`Raul Santos2024-08-152-5/+4
| |
* | Fix dynamic-stack-buffer-overflow crash when executing random functions on ↵Jamie Pate2024-07-181-1/+1
|/ | | | | | | | | random physics objects Fixes #92333 This looks correct, and fixes the ASAN assertion I'm currently getting in my program.
* Rework migration of animate_physical_bones to compatibilitySilc Lizard (Tokage) Renew2024-06-251-6/+6
|
* Add get_concatenated_bone_names() to Skeleton3D for Modifier's hintSilc Lizard (Tokage) Renew2024-06-101-9/+1
|
* Fix null `debug_shape` being updated when `CollisionObject3D`'s transform ↵jsjtxietian2024-05-241-0/+3
| | | | changed
* Merge pull request #91936 from jsjtxietian/body-connectRémi Verschelde2024-05-151-2/+6
|\ | | | | | | Avoid duplicate connect in Joint2D and Joint3D `_update_joint`
| * Avoid duplicate connect in `Joint2D::_update_joint` and Joint3Djsjtxietian2024-05-151-2/+6
| |
* | Use Core/Scene stringnames consistentlykobewi2024-05-137-11/+0
|/
* Add shorthand for using singleton string nameskobewi2024-05-115-62/+64
|
* Fix move_and_slide wall slide acceleration (3D)Ricardo Buring2024-04-191-1/+1
| | | | | | | When travel is high enough, keep the global position resulting from the move_and_collide call, and set the motion to the remainder from the move_and_collide call. This ensures travel is taken into account once, rather than twice.
* Fix RayCast3D's debug draw transform not updatingyds2024-04-171-2/+4
|
* Store ObjectID instead of pointer for KinematicCollision ownerHaoyu Qiu2024-04-156-22/+4
|
* Skeleton3D: Add SkeletonModifier / Deprecate Override / Separate PBSilc Lizard (Tokage) Renew2024-04-052-59/+90
|
* Rename some arguments called "position"kobewi2024-03-271-2/+2
|
* Merge pull request #89468 from MrPersonDev/increase-rigidbody-mass-precisionRémi Verschelde2024-03-141-1/+1
|\ | | | | | | Increase precision of RigidBody `mass` property
| * Increase precision of rigidbody massMrPersonDev2024-03-131-1/+1
| |
* | Move Max Contacts Reported below Contact Monitor in RigidBody inspectorHugo Locurcio2024-03-131-7/+12
|/ | | | | | | | | This also changes the code used to hide the custom center of mass property for consistency with other places in the editor (only this approach worked for Contact Monitor as well). The Center of Mass property hint in RigidBody2D was also modified for better usability.
* Fix physics platform crashlawnjelly2024-02-281-2/+9
| | | | | Physics body previously stored the RID of a collision object and accessed it on the next frame, leading to a crash if the object had been deleted. This PR checks the object still exists via the ObjectID prior to access.
* Change ShapeCast3D and RayCast3D debug to use RenderingServer directlysmix82024-02-274-57/+83
| | | | Changes ShapeCast3D and RayCast3D debug to use RenderingServer directly.
* Split monolithic physics class filessmix82024-02-2744-0/+11785
Splits monolithic physics class files.