diff options
| author | Sébastien Crozet <developer@crozet.re> | 2022-10-30 17:23:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-30 17:23:49 +0100 |
| commit | 6b9762694673d42671d58d9e2178b9c94fc39053 (patch) | |
| tree | 12bd8ca98467a5f1113670c1bc17ed20f2e69c80 /src/pipeline/debug_render_pipeline | |
| parent | 2bf61c3bae542e2f17e7d25f602090bb3c117dbf (diff) | |
| parent | 34b7ae32fd03803048b920c1429e026e06bff948 (diff) | |
| download | rapier-6b9762694673d42671d58d9e2178b9c94fc39053.tar.gz rapier-6b9762694673d42671d58d9e2178b9c94fc39053.tar.bz2 rapier-6b9762694673d42671d58d9e2178b9c94fc39053.zip | |
Merge pull request #410 from dimforge/parry_up
Update to parry 0.11
Diffstat (limited to 'src/pipeline/debug_render_pipeline')
| -rw-r--r-- | src/pipeline/debug_render_pipeline/debug_render_pipeline.rs | 2 | ||||
| -rw-r--r-- | src/pipeline/debug_render_pipeline/debug_render_style.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pipeline/debug_render_pipeline/debug_render_pipeline.rs b/src/pipeline/debug_render_pipeline/debug_render_pipeline.rs index fd93d6c..bb9fd78 100644 --- a/src/pipeline/debug_render_pipeline/debug_render_pipeline.rs +++ b/src/pipeline/debug_render_pipeline/debug_render_pipeline.rs @@ -30,7 +30,7 @@ bitflags::bitflags! { const SOLVER_CONTACTS = 1 << 4; /// If this flag is set, the geometric contacts will be rendered. const CONTACTS = 1 << 5; - /// If this flag is set, the AABBs of colliders will be rendered. + /// If this flag is set, the Aabbs of colliders will be rendered. const COLLIDER_AABBS = 1 << 6; } } diff --git a/src/pipeline/debug_render_pipeline/debug_render_style.rs b/src/pipeline/debug_render_pipeline/debug_render_style.rs index 987d95d..33630aa 100644 --- a/src/pipeline/debug_render_pipeline/debug_render_style.rs +++ b/src/pipeline/debug_render_pipeline/debug_render_style.rs @@ -44,7 +44,7 @@ pub struct DebugRenderStyle { pub contact_normal_color: DebugColor, /// The length of the contact normals. pub contact_normal_length: Real, - /// The color of the colliders AABBs. + /// The color of the colliders Aabbs. pub collider_aabb_color: DebugColor, } |
