summaryrefslogtreecommitdiffstats
path: root/servers/physics_server_3d.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
| | | | | | | | | | | | | | | | | | | | | | 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>
* Merge pull request #93311 from dsnopek/gdextension-required-virtualsRémi Verschelde2024-09-271-3/+3
|\ | | | | | | GDExtension: Mark virtual function as `is_required` in `extension_api.json`
| * GDExtension: Mark virtual function as `is_required` in `extension_api.json`David Snopek2024-09-111-3/+3
| | | | | | | | Co-authored-by: Jovan Gerodetti <jovan.gerodetti@titannano.de>
* | Move Godot Physics 3D into a module; add dummy 3D physics serverRicardo Buring2024-09-211-1/+3
|/ | | | | | | | | | | | If the module is enabled (default), 3D physics works as it did before. If the module is disabled and no other 3D physics server is registered (via a module or GDExtension), then we fall back to a dummy implementation which effectively disables 3D physics functionality (and a warning is printed). The dummy 3D physics server can also be selected explicitly, in which case no warning is printed.
* Bind `PhysicsServer*D::body_set_state_sync_callback`Mikael Hermansson2024-07-231-0/+2
|
* Bind physics server methods related to shape marginMikael Hermansson2024-05-191-0/+2
|
* Bind constants related to 6DOF jointsRicardo Buring2024-03-241-0/+10
| | | | | This makes physics server GDExtensions able to use the enums without workarounds.
* Disable all 3D nodes, physics, and resources when compiling without 3DAaron Franke2024-03-111-0/+4
|
* Bind physics server methods related to `SoftBody3D`Mikael Hermansson2024-01-261-0/+52
|
* Fix PhysicsShapeQueryParameters3D.motion type wrongly set to Vector2Robert Borghese2024-01-021-1/+1
|
* Fix missing clear for some `set_exclude*` query parameter methodsA Thousand Ships2023-09-211-0/+2
|
* Fix bindings of `PhysicsServer3DRenderingServerHandler`Mikael Hermansson2023-09-201-6/+10
|
* Add ability to get barycentric coordinates from rayPrecisionRender2023-08-021-0/+1
|
* Change the "Physics Engine" project settings to prompt a restartMikael Hermansson2023-06-041-0/+1
|
* Resolved issues with script PhysicsDirectBodyState3d contactsTim Gift2023-04-121-0/+1
| | | | Resolved a problem with PhysicsDirectBodyState3D sometimes returning incorrect contact positions and added a new get_contact_local_velocity_at_position method to compliment the existing one for the collider.
* Modify "physics/3d/solver/contact_max_allowed_penetration" precision to ↵Malcolm Nixon2023-04-051-3/+3
| | | | | | | | three significant digits, so values down to "0.001" can be specified. Updated additional 2D and 3D physics parameters based on team recommendations Co-Authored-By: Ricardo Buring <rburing@users.noreply.github.com>
* Fix collide_shape return typeRicardo Buring2023-03-231-4/+4
| | | | | Fix PhysicsDirectSpaceState3D::_collide_shape return type. Also PhysicsDirectSpaceState2D::_collide_shape.
* Fix return type for collide_shape to use PackedVector3ArrayAnthony Cossins2023-02-121-3/+3
|
* Create default World physics spaces on demand onlysmix82023-01-311-0/+16
| | | | Changes that the default physics spaces of World resources are only created on first use.
* Replace Area gravity point distance scale with unit distanceAaron Franke2023-01-291-1/+1
|
* Remove deprecated AREA_PARAM_GRAVITY_POINT_ATTENUATIONAaron Franke2023-01-291-1/+0
|
* Merge pull request #68429 from KoBeWi/PropertySettingsRémi Verschelde2023-01-061-1/+1
|\ | | | | Add PropertyInfo overload for GLOBAL_DEF
| * Add PropertyInfo overload for GLOBAL_DEFkobewi2022-12-111-1/+1
| |
* | One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* | Bind methods related to disabling collision between joint bodiesMikael Hermansson2022-12-231-0/+3
|/
* Update remaining physics exclude parameters to use TypedArrayRicardo Buring2022-11-231-20/+20
| | | | Also update the documentation to refer to the get_rid() method.
* Change exclude property in `PhysicsRayQueryParameters3D` to TypedArrayRaul Santos2022-10-311-5/+5
| | | | Change type of exclude property from `Vector<RID>` to `TypedArray<RID>` which is consistent with the 2D version.
* Bind PhysicsDirectBodyState3D::get_inverse_inertia_tensorMikael Hermansson2022-10-051-0/+2
|
* Add `area_get_collision_layer` and `area_get_collision_mask`Mansur Isaev2022-09-251-0/+3
|
* Expose registration of physics servers to GDExtensionRicardo Buring2022-09-071-8/+31
| | | | This exposes PhysicsServer2DManager and PhysicsServer3DManager.
* Restore RigidBody2/3D, SoftBody names in physicsfabriceci2022-08-261-2/+2
|
* Replace Array return types with TypedArray 2kobewi2022-08-231-16/+17
|
* Add collision weight to PhysicsBody for penetrations must be avoidedSilc Renew2022-08-181-0/+3
| | | | Co-authored-by: Juan Linietsky <reduzio@gmail.com>
* Add static methods to create RayQueryParameterskobewi2022-06-101-0/+12
|
* Use range iterators for RBSet in most casesAaron Record2022-05-191-6/+6
|
* Add dedicated macros for property name extractionHaoyu Qiu2022-05-191-1/+1
| | | | | | | * Replace case-by-case extraction with PNAME & GNAME * Fix group handling when group hint begins with property name * Exclude properties that are PROPERTY_USAGE_NO_EDITOR * Extract missing ADD_ARRAY*, ADD_SUBGROUP* macros
* Add motion parameter to toggle whether recovery is reported as a collisionRicardo Buring2022-05-181-0/+4
| | | | This makes the intent explicit in each use case.
* Replace most uses of Map by HashMapreduz2022-05-161-3/+3
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>`Hugo Locurcio2022-05-031-2/+2
| | | | | | These typedefs don't save much typing compared to the full `Ref<Resource>` and `Ref<RefCounted>`, yet they sometimes introduce confusion among new contributors.
* Create GDExtension clases for PhysicsServer3Dreduz2022-03-151-0/+16
| | | | | | | * Allows creating a GDExtension based 3D Physics Server (for Bullet, PhysX, etc. support) * Some changes on native struct binding for PhysicsServer This allows a 3D Physics server created entirely from GDExtension. Once it works, the idea is to port the 2D one to it.
* Validate PhysicsDirectSpaceState{2,3}D::_intersect_point inputHaoyu Qiu2022-02-141-0/+2
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Improve RigidDynamicBody force and torque APIPouleyKetchoupp2021-12-101-7/+29
| | | | | | | | | | | | | Makes the API for forces and impulses more flexible, easier to understand and harmonized between 2D and 3D. Rigid bodies now have 3 sets of methods for forces and impulses: -apply_impulse() for impulses (one-shot and time independent) -apply_force() for forces (time dependent) applied for the current step -add_constant_force() for forces that keeps being applied each step Also updated the documentation to clarify the different methods and parameters in rigid body nodes, body direct state and physics servers.
* Add physics solver settings to project settingsPouleyKetchoupp2021-12-071-2/+0
| | | | | | | | | | | | Helps with discovery and setup of physics solver settings, in a specific project settings section for both 2D and 3D. Other changes for cleanup: -Removed unused space parameters in 3D SPACE_PARAM_BODY_ANGULAR_VELOCITY_DAMP_RATIO SPACE_PARAM_CONSTRAINT_DEFAULT_BIAS -Added custom solver bias for Shape3D (same as Shape2D) -Improved documentation for solver settings
* Update space parameters in 2D and 3DPouleyKetchoupp2021-12-031-3/+3
| | | | | | | | | | | Clarified space parameters for contacts and added missing ones. List of changes: -Add contact bias to space parameters -Add solver iterations to space parameters, instead of a specific physics server function -Renamed BODY_MAX_ALLOWED_PENETRATION to CONTACT_MAX_ALLOWED_PENETRATION to make it consistent with other contact parameters
* Merge pull request #54810 from nekomatata/area-separate-override-modesCamille Mohr-Daurat2021-11-111-3/+3
|\ | | | | Separate space override modes for gravity/damping in Area
| * Separate space override modes for gravity/damping in AreaPouleyKetchoupp2021-11-091-3/+3
| | | | | | | | Also make inspector clearer for gravity point properties.
* | Add raycast options to hit when starting inside / hit back facesPouleyKetchoupp2021-11-101-0/+8
|/ | | | | Makes the results consistent for all shape types with options to set the desired behavior.
* Merge pull request #54134 from nekomatata/body-center-of-mass-localCamille Mohr-Daurat2021-11-081-0/+2
|\ | | | | Expose local center of mass in physics servers