[][src]Struct gdnative::BitmapFont

pub struct BitmapFont { /* fields omitted */ }

core class BitmapFont inherits Font (reference counted).

Official documentation

See the documentation of this class in the Godot engine's official documentation.

Memory management

The lifetime of this object is automatically managed through reference counting.

Class hierarchy

BitmapFont inherits methods from:

Methods

impl BitmapFont[src]

pub fn new() -> BitmapFont[src]

pub fn new_ref(&self) -> BitmapFont[src]

Creates a new reference to the same reference-counted object.

pub fn _get_chars(&self) -> Int32Array[src]

pub fn _get_kernings(&self) -> Int32Array[src]

pub fn _get_textures(&self) -> VariantArray[src]

pub fn _set_chars(&mut self, arg0: Int32Array)[src]

pub fn _set_kernings(&mut self, arg0: Int32Array)[src]

pub fn _set_textures(&mut self, arg0: VariantArray)[src]

pub fn add_char(
    &mut self,
    character: i64,
    texture: i64,
    rect: Rect<f32, UnknownUnit>,
    align: Vector2D<f32, UnknownUnit>,
    advance: f64
)
[src]

pub fn add_kerning_pair(&mut self, char_a: i64, char_b: i64, kerning: i64)[src]

pub fn add_texture(&mut self, texture: Option<Texture>)[src]

pub fn clear(&mut self)[src]

pub fn create_from_fnt(&mut self, path: GodotString) -> Result<(), GodotError>[src]

pub fn get_char_size(&self, char: i64, next: i64) -> Vector2D<f32, UnknownUnit>[src]

pub fn get_fallback(&self) -> Option<BitmapFont>[src]

pub fn get_kerning_pair(&self, char_a: i64, char_b: i64) -> i64[src]

pub fn get_texture(&self, idx: i64) -> Option<Texture>[src]

pub fn get_texture_count(&self) -> i64[src]

pub fn set_ascent(&mut self, px: f64)[src]

pub fn set_distance_field_hint(&mut self, enable: bool)[src]

pub fn set_fallback(&mut self, fallback: Option<BitmapFont>)[src]

pub fn set_height(&mut self, px: f64)[src]

pub fn to_font(&self) -> Font[src]

Up-cast.

pub fn to_resource(&self) -> Resource[src]

Up-cast.

pub fn to_reference(&self) -> Reference[src]

Up-cast.

pub fn to_object(&self) -> Object[src]

Up-cast.

pub fn cast<T>(&self) -> Option<T> where
    T: GodotObject
[src]

Generic dynamic cast.

Methods from Deref<Target = Font>

pub fn new_ref(&self) -> Font[src]

Creates a new reference to the same reference-counted object.

pub fn draw(
    &self,
    canvas_item: Rid,
    position: Vector2D<f32, UnknownUnit>,
    string: GodotString,
    modulate: Color,
    clip_w: i64,
    outline_modulate: Color
)
[src]

pub fn draw_char(
    &self,
    canvas_item: Rid,
    position: Vector2D<f32, UnknownUnit>,
    char: i64,
    next: i64,
    modulate: Color,
    outline: bool
) -> f64
[src]

pub fn get_ascent(&self) -> f64[src]

pub fn get_descent(&self) -> f64[src]

pub fn get_height(&self) -> f64[src]

pub fn get_string_size(&self, string: GodotString) -> Vector2D<f32, UnknownUnit>[src]

pub fn get_wordwrap_string_size(
    &self,
    string: GodotString,
    width: f64
) -> Vector2D<f32, UnknownUnit>
[src]

pub fn has_outline(&self) -> bool[src]

pub fn is_distance_field_hint(&self) -> bool[src]

pub fn update_changes(&mut self)[src]

pub fn to_resource(&self) -> Resource[src]

Up-cast.

pub fn to_reference(&self) -> Reference[src]

Up-cast.

pub fn to_object(&self) -> Object[src]

Up-cast.

pub fn cast<T>(&self) -> Option<T> where
    T: GodotObject
[src]

Generic dynamic cast.

Trait Implementations

impl Clone for BitmapFont[src]

impl Debug for BitmapFont[src]

impl Deref for BitmapFont[src]

type Target = Font

The resulting type after dereferencing.

impl DerefMut for BitmapFont[src]

impl Drop for BitmapFont[src]

impl FromVariant for BitmapFont[src]

impl GodotObject for BitmapFont[src]

impl Instanciable for BitmapFont[src]

impl ToVariant for BitmapFont[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> Export for T where
    T: GodotObject + ToVariant
[src]

type Hint = ()

A type-specific hint type that is valid for the type being exported.

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.