Skip to main content

ICharacterCollision

Trait ICharacterCollision 

Source
pub trait ICharacterCollision: IMonoBehaviour {
    // Provided methods
    fn m_kinds(self) -> CharacterCollision_Kinds { ... }
    fn set_m_kinds(self, value: CharacterCollision_Kinds) { ... }
    fn m_color(self) -> Color { ... }
    fn set_m_color(self, value: Color) { ... }
    fn m_radius(self) -> f32 { ... }
    fn set_m_radius(self, value: f32) { ... }
    fn m_result(self) -> f32 { ... }
    fn set_m_result(self, value: f32) { ... }
}

Provided Methods§

Source

fn m_kinds(self) -> CharacterCollision_Kinds

Source

fn set_m_kinds(self, value: CharacterCollision_Kinds)

Source

fn m_color(self) -> Color

Source

fn set_m_color(self, value: Color)

Source

fn m_radius(self) -> f32

Source

fn set_m_radius(self, value: f32)

Source

fn m_result(self) -> f32

Source

fn set_m_result(self, value: f32)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§