1
- //! Synchronizes the engine's [`Position`]s and [`Rotation`]s with Bevy's [ `Transform`] s.
1
+ //! Synchronizes the engine's [`Position`]s and [`Rotation`]s with Bevy's `Transform`s.
2
2
//!
3
3
//! See [`SyncPlugin`].
4
4
5
5
use crate :: { prelude:: * , PhysicsSchedule } ;
6
6
use bevy:: prelude:: * ;
7
7
8
- /// Synchronizes the engine's [`Position`]s and [`Rotation`]s with Bevy's [ `Transform`] s.
8
+ /// Synchronizes the engine's [`Position`]s and [`Rotation`]s with Bevy's `Transform`s.
9
9
///
10
10
/// Currently, the transforms of nested bodies are updated to reflect their global positions.
11
11
/// This means that nested [rigid bodies](RigidBody) can behave independently regardless of the hierarchy.
@@ -27,7 +27,7 @@ type RigidBodyParentComponents = (
27
27
Option < & ' static Rotation > ,
28
28
) ;
29
29
30
- /// Copies [`Position`] and [`Rotation`] values from the physics world to Bevy [ `Transform`] s.
30
+ /// Copies [`Position`] and [`Rotation`] values from the physics world to Bevy `Transform`s.
31
31
#[ cfg( feature = "2d" ) ]
32
32
fn sync_transforms (
33
33
mut bodies : Query < ( & mut Transform , & Position , & Rotation , Option < & Parent > ) > ,
@@ -66,9 +66,9 @@ fn sync_transforms(
66
66
}
67
67
}
68
68
69
- /// Copies [`Position`] and [`Rotation`] values from the physics world to Bevy's [ `Transform`] s.
69
+ /// Copies [`Position`] and [`Rotation`] values from the physics world to Bevy's `Transform`s.
70
70
///
71
- /// Nested rigid bodies move independently of each other, so the [ `Transform`] s of child entities are updated
71
+ /// Nested rigid bodies move independently of each other, so the `Transform`s of child entities are updated
72
72
/// based on their own and their parent's [`Position`] and [`Rotation`].
73
73
#[ cfg( feature = "3d" ) ]
74
74
fn sync_transforms (
0 commit comments