Alias world_to_viewport for easier migration (#5298)

# Objective

When someone searches in rustdoc for `world_to_screen`, they now will
find `world_to_viewport`. The method was renamed in 0.8, it would be
nice to allow users to find the new name more easily.

---
This commit is contained in:
Nicola Papale 2022-07-12 18:57:19 +00:00
parent f9c1a8a3d5
commit df7736c572

View File

@ -189,6 +189,7 @@ impl Camera {
///
/// To get the coordinates in Normalized Device Coordinates, you should use
/// [`world_to_ndc`](Self::world_to_ndc).
#[doc(alias = "world_to_screen")]
pub fn world_to_viewport(
&self,
camera_transform: &GlobalTransform,