Skip to content

Commit

Permalink
Make avian3d::dynamics::rigid_body::forces public (#630)
Browse files Browse the repository at this point in the history
# Objective

Fixes #626

## Solution

Make avian3d::dynamics::rigid_body::forces public

---

## Changelog

avian3d::dynamics::rigid_body::forces is now public
  • Loading branch information
SetOfAllSets authored Jan 24, 2025
1 parent a1853b7 commit 0156404
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/dynamics/rigid_body/forces.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//! Forces, torques, linear impulses, and angular impulses
//! that can be applied to dynamic rigid bodies.
use crate::prelude::*;
use bevy::prelude::*;
use derive_more::From;
Expand Down
2 changes: 1 addition & 1 deletion src/dynamics/rigid_body/mod.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
//! Common components and bundles for rigid bodies.
pub mod forces;
pub mod mass_properties;

// Components
mod forces;
mod locked_axes;
mod physics_material;
mod world_query;
Expand Down

0 comments on commit 0156404

Please sign in to comment.