diff --git a/crates/bevy_transform/src/components/transform.rs b/crates/bevy_transform/src/components/transform.rs index 3f82b615aee141..b154201b77938d 100644 --- a/crates/bevy_transform/src/components/transform.rs +++ b/crates/bevy_transform/src/components/transform.rs @@ -355,13 +355,6 @@ impl Transform { point += self.translation; point } - - /// Changes the `scale` of this [`Transform`], multiplying the current `scale` by - /// `scale_factor`. - #[inline] - pub fn apply_non_uniform_scale(&mut self, scale_factor: Vec3) { - self.scale *= scale_factor; - } } impl Default for Transform {