Age | Commit message (Collapse) | Author |
|
Fixing by applying the movement in two steps, first the platform
movement, and then the body movement. Plus, add the platform movement
when we are on_wall.
|
|
This is only for GodotPhysics, and adds a 3D counterpart to the 2D
method that was recently added.
|
|
|
|
MODE_DYNAMIC instead of MODE_RIGID
MODE_DYNAMIC_LOCKED instead of MODE_CHARACTER
No more special case for sleeping behavior for MODE_DYNAMIC_LOCKED
(MODE_CHARACTER was forcing the body not to sleep, which is redundant
with can_sleep and wasn't done in Bullet).
|
|
This allows fine-tuning of collision iterations for more
accurate collision physics with a performance cost.
|
|
Removed _direct_state_changed bindings
Affects 2D and 3D nodes
Callbacks now use Callable
Tests were changed accordingly
|
|
|
|
And fix various bogus bindings following previous PRs.
|
|
|
|
Refactor physics force and impulse code to use (force, position) order
|
|
|
|
|
|
A few extra renames for classes which were missed in last week's PRs.
|