summaryrefslogtreecommitdiffstats
path: root/doc/classes/PhysicsServer3DExtension.xml
Commit message (Collapse)AuthorAgeFilesLines
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Overhaul the top sections of the class reference (Physics classes)VolTer2023-05-201-0/+3
|
* Add `recovery_as_collision` to extension binding of `_body_test_motion`Mikael Hermansson2023-03-101-1/+2
|
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Bind methods related to physics query exclusionsMikael Hermansson2022-12-291-0/+12
|
* Bind methods related to disabling collision between joint bodiesMikael Hermansson2022-12-231-0/+13
|
* Add `area_get_collision_layer` and `area_get_collision_mask`Mansur Isaev2022-09-251-0/+12
|
* PhysicsServer2D and PhysicsServer3D: make body_set_state_sync_callback take ↵Ricardo Buring2022-09-151-1/+1
| | | | | | a Callable Prefer Callable to a C-style callback. This is helpful for GDExtension.
* PhysicsServer2DExtension and PhysicsServer3DExtension: bind all methods (really)Ricardo Buring2022-09-091-0/+317
|
* Bind all methods in PhysicsServer2DExtension, PhysicsServer3DExtensionRicardo Buring2022-09-071-0/+36
|
* Add collision weight to PhysicsBody for penetrations must be avoidedSilc Renew2022-08-181-0/+13
| | | | Co-authored-by: Juan Linietsky <reduzio@gmail.com>
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-246/+246
|
* Create GDExtension clases for PhysicsServer3Dreduz2022-03-151-0/+897
* 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.