Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove
Transform::apply_non_uniform_scale
(bevyengine#6133)
This is a holdover from back when `Transform` was backed by a private `Mat4` two years ago. Not particularly useful anymore :) ## Migration Guide `Transform::apply_non_uniform_scale` has been removed. It can be replaced with the following snippet: ```rust transform.scale *= scale_factor; ``` Co-authored-by: devil-ira <[email protected]>
- Loading branch information