[][src]Struct storm::Text

pub struct Text {
    pub string: String,
    pub pos: Vector3<f32>,
    pub max_width: Option<f32>,
    pub scale: u32,
    pub color: RGBA8,
    pub font: FontToken,
}

Configuration settings for text.

Fields

string: String

Text that's being drawn.

pos: Vector3<f32>

Position of the text. The X and Y coordinates represent the bottom left corner of the text. The Z coordinate represents sprite depth. Units are measured in pixels.

max_width: Option<f32>

Max width of the text before it's pushed to a new line. If this is set to None, it will not wrap text to a new line. Units are measured in pixels. The default is None.

scale: u32

Amount to scale the text by as defined by the font. The default is 24.

color: RGBA8

Color to use for the text. The default is black.

font: FontToken

Font to use for the text. This is the engine font by default.

Methods

impl Text[src]

pub fn new(
    string: String,
    pos: Vector3<f32>,
    max_width: Option<f32>,
    scale: u32,
    color: RGBA8,
    font: FontToken
) -> Text
[src]

pub fn set_string(&mut self, string: &str)[src]

Trait Implementations

impl Clone for Text[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for Text[src]

impl Debug for Text[src]

Auto Trait Implementations

impl Send for Text

impl Unpin for Text

impl Sync for Text

impl RefUnwindSafe for Text

impl UnwindSafe for Text

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]