aboutsummaryrefslogtreecommitdiff
path: root/modules/bullet/shape_bullet.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #17806 from Zylann/fix_heightmap_shape_size_checkRémi Verschelde2018-04-051-11/+43
|\ | | | | Make heightmap shape usable in PhysicsServer
| * Make heightmap shape usable from PhysicsServerMarc Gilleron2018-03-281-11/+43
| | | | | | | | | | | | | | - Fixed bad size check - Fixed bad member initialization - Removed unused cell_size (Bullet expects us to use localScaling) - Accept precomputed min/max height, will be calculated if not provided
* | Fix of a possible memory leak: ConcavePolygonShapeBullet::setup was able to ↵Alexander Alekseev2018-04-021-2/+2
|/ | | | exit without releasing the 'shapeInterface' pointer.
* Improved ray shape (2D and 3D) by addiing the possibility to act as regular ↵Andrea Catania2018-02-191-7/+17
| | | | shape
* Fix typos in code and docs with codespellRémi Verschelde2018-01-181-1/+1
| | | | Using v1.11.0 from https://github.com/lucasdemarchi/codespell
* Removed useless error print on bullet shapesAndreaCatania2018-01-081-1/+1
|
* Fixed Bullet collision shapes scaleAndreaCatania2018-01-081-5/+0
|
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-051-5/+10
| | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* Merge pull request #13257 from AndreaCatania/masterRémi Verschelde2018-01-041-17/+38
|\ | | | | Fixed kinematic movement stuck, Changed how shape scale works.
| * Fixed kinematic movement stuck, Changed how shape scale works, OptimizedAndreaCatania2017-12-231-17/+38
| |
* | Update copyright statements to 2018Rémi Verschelde2018-01-011-2/+2
|/ | | | Happy new year to the wonderful Godot community!
* Style: Apply new clang-format 5.0 style to all filesRémi Verschelde2017-12-071-16/+18
|
* Removed shape marginAndreaCatania2017-11-231-0/+1
|
* Bullet physics engine implementationAndreaCatania2017-11-041-0/+435
This is a bullet wrapper that allows Godot to use Bullet physics and benefit about all features. Also it support all specific Godot physics functionality like multi shape body, areas, RayShape, etc.. It improve the Joints, Trimesh shape, and add support to soft body even if Godot is not yet ready to it.