bevy_mod_gizmos 0.3.1

Visual gizmos to aid with development and debugging in Bevy
Documentation
use bevy::prelude::*;

pub struct Line {
    pub(crate) points: Vec<Vec3>,
    pub(crate) color: Color,
}

impl Line {
    pub fn new(points: Vec<Vec3>, color: Color) -> Self {
        Self { points, color }
    }
}