Skip to content

Commit 5cb9173

Browse files
Update godot source file references (#305)
# PR Summary Small PR - adjusts the broken links in the `CONTRIBUTING.md` file. Signed-off-by: Emmanuel Ferdman <[email protected]>
1 parent 307f275 commit 5cb9173

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CONTRIBUTING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ _body_create()
3030
Godot can register multiple `Physics Servers`, and can decide at runtime which one to use.
3131

3232
Godot Rapier Physics implements these under the name like this:
33-
- [RapierPhysicsServer2D](../src/servers/rapier_physics_server_2d.rs) and [RapierPhysicsServer3D](../src/servers/rapier_physics_server_3d.rs)
34-
- [RapierDirectBodyState2D](../src/bodies/rapier_direct_body_state_2d.rs) and [RapierDirectBodyState3D](../src/bodies/rapier_direct_body_state_3d.rs)
35-
- [RapierDirectSpaceState2D](../src/spaces/rapier_direct_space_state_2d.rs) and [RapierDirectSpaceState3D](../src/spaces/rapier_direct_space_state_3d.rs)
33+
- [RapierPhysicsServer2D](src/servers/rapier_physics_server_2d.rs) and [RapierPhysicsServer3D](src/servers/rapier_physics_server_3d.rs)
34+
- [RapierDirectBodyState2D](src/bodies/rapier_direct_body_state_2d.rs) and [RapierDirectBodyState3D](src/bodies/rapier_direct_body_state_3d.rs)
35+
- [RapierDirectSpaceState2D](src/spaces/rapier_direct_space_state_2d.rs) and [RapierDirectSpaceState3D](src/spaces/rapier_direct_space_state_3d.rs)
3636

3737
Code is reused as much as possible, by having each of these classes call into a generic class that does the implementation, and a few configuration flags to select dimensions, precision, etc.
3838

@@ -79,7 +79,7 @@ As such, when saving and loading, first one must recreate the Godot scene and ma
7979
8080
## Rapier Physics Server Fluids
8181
82-
Godot Rapier Physics also exposes new nodes, [Fluid2D](../src/fluids/fluid_2d.rs) and [Fluid3D](../src/fluids/fluid_3d.rs). These nodes can set and get position, velocity and acceleration of particles used for fluid simulation. Internally it uses [salva](https://github.com/dimforge/salva) to create them.
82+
Godot Rapier Physics also exposes new nodes, [Fluid2D](src/fluids/fluid_2d.rs) and [Fluid3D](src/fluids/fluid_3d.rs). These nodes can set and get position, velocity and acceleration of particles used for fluid simulation. Internally it uses [salva](https://github.com/dimforge/salva) to create them.
8383
8484
## How to build
8585

0 commit comments

Comments
 (0)