[][src]Struct gdnative::AnimationNodeBlendSpace2D

pub struct AnimationNodeBlendSpace2D { /* fields omitted */ }

core class AnimationNodeBlendSpace2D inherits AnimationRootNode (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

AnimationNodeBlendSpace2D inherits methods from:

Methods

impl AnimationNodeBlendSpace2D[src]

Constants

impl AnimationNodeBlendSpace2D[src]

pub fn new() -> AnimationNodeBlendSpace2D[src]

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

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

pub fn _add_blend_point(&mut self, index: i64, node: Option<AnimationRootNode>)[src]

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

pub fn _set_triangles(&mut self, triangles: Int32Array)[src]

pub fn _tree_changed(&mut self)[src]

pub fn _update_triangles(&mut self)[src]

pub fn add_blend_point(
    &mut self,
    node: Option<AnimationRootNode>,
    pos: Vector2D<f32, UnknownUnit>,
    at_index: i64
)
[src]

pub fn add_triangle(&mut self, x: i64, y: i64, z: i64, at_index: i64)[src]

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

pub fn get_blend_mode(&self) -> AnimationNodeBlendSpace2DBlendMode[src]

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

pub fn get_blend_point_node(&self, point: i64) -> Option<AnimationRootNode>[src]

pub fn get_blend_point_position(&self, point: i64) -> Vector2D<f32, UnknownUnit>[src]

pub fn get_max_space(&self) -> Vector2D<f32, UnknownUnit>[src]

pub fn get_min_space(&self) -> Vector2D<f32, UnknownUnit>[src]

pub fn get_snap(&self) -> Vector2D<f32, UnknownUnit>[src]

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

pub fn get_triangle_point(&mut self, triangle: i64, point: i64) -> i64[src]

pub fn get_x_label(&self) -> GodotString[src]

pub fn get_y_label(&self) -> GodotString[src]

pub fn remove_blend_point(&mut self, point: i64)[src]

pub fn remove_triangle(&mut self, triangle: i64)[src]

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

pub fn set_blend_mode(&mut self, mode: i64)[src]

pub fn set_blend_point_node(
    &mut self,
    point: i64,
    node: Option<AnimationRootNode>
)
[src]

pub fn set_blend_point_position(
    &mut self,
    point: i64,
    pos: Vector2D<f32, UnknownUnit>
)
[src]

pub fn set_max_space(&mut self, max_space: Vector2D<f32, UnknownUnit>)[src]

pub fn set_min_space(&mut self, min_space: Vector2D<f32, UnknownUnit>)[src]

pub fn set_snap(&mut self, snap: Vector2D<f32, UnknownUnit>)[src]

pub fn set_x_label(&mut self, text: GodotString)[src]

pub fn set_y_label(&mut self, text: GodotString)[src]

pub fn to_animation_root_node(&self) -> AnimationRootNode[src]

Up-cast.

pub fn to_animation_node(&self) -> AnimationNode[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 = AnimationRootNode>

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

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

pub fn to_animation_node(&self) -> AnimationNode[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.

Trait Implementations

impl Clone for AnimationNodeBlendSpace2D[src]

impl Debug for AnimationNodeBlendSpace2D[src]

impl Deref for AnimationNodeBlendSpace2D[src]

type Target = AnimationRootNode

The resulting type after dereferencing.

impl DerefMut for AnimationNodeBlendSpace2D[src]

impl Drop for AnimationNodeBlendSpace2D[src]

impl FromVariant for AnimationNodeBlendSpace2D[src]

impl GodotObject for AnimationNodeBlendSpace2D[src]

impl Instanciable for AnimationNodeBlendSpace2D[src]

impl ToVariant for AnimationNodeBlendSpace2D[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.