Add a renderer system with temp assets #60

Closed
CoCo_Sol wants to merge 40 commits from renderer into main
Showing only changes of commit d64d0bb258 - Show all commits

View file

@ -249,9 +249,10 @@ impl<T: Number> HexPosition<T> {
///
/// ```no_run
/// use border_wars::map::hex::HexPosition;
/// use bevy::math::Vec2;
///
/// let position = HexPosition(1, 0);
/// assert_eq!(position.to_pixel_coordinates(), (3f32.sqrt(), 0.0));
/// assert_eq!(position.to_pixel_coordinates(), Vec2::new(3f32.sqrt(), 0.0));
/// ```
pub fn to_pixel_coordinates(&self) -> Vec2 {
Vec2::new(