added slider thing, broke rendering somehow though
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
use crate::canvas::canvas_frame::Drawable;
|
||||
use crate::util::vertex::{VertexTypes, ColorVertex3D};
|
||||
use crate::util::vertex::{VertexType, ColorVertex3D};
|
||||
|
||||
///
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct Text {
|
||||
pub verts: VertexTypes,
|
||||
pub verts: VertexType,
|
||||
|
||||
position: (f32, f32),
|
||||
size: (f32, f32),
|
||||
@@ -129,7 +129,7 @@ impl Text {
|
||||
};
|
||||
|
||||
Text {
|
||||
verts: VertexTypes::TextType(verts),
|
||||
verts: VertexType::TextType(verts),
|
||||
position: position,
|
||||
size: size,
|
||||
}
|
||||
@@ -137,7 +137,7 @@ impl Text {
|
||||
}
|
||||
|
||||
impl Drawable for Text {
|
||||
fn get(&self) -> Vec<VertexTypes> {
|
||||
fn get(&self) -> Vec<VertexType> {
|
||||
vec![self.verts.clone()]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user